/* Trevor Decker News — WrestleMania 42 Banner & Landing Page (Light Theme) */

/* ============ BANNER ============ */
.tdn-wm42-banner {
    display: block;
    text-decoration: none;
    color: inherit;
    margin: 0 auto 24px;
    max-width: 1200px;
    padding: 16px 20px 0;
    box-sizing: border-box;
}

.tdn-wm42-banner:hover {
    text-decoration: none;
    color: inherit;
}

.tdn-wm42-banner-inner {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 22px 28px 22px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.tdn-wm42-banner:hover .tdn-wm42-banner-inner {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    border-color: #d5d5d5;
}

.tdn-wm42-banner-accent {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: #c8102e;
}

.tdn-wm42-banner-content {
    flex: 1;
    min-width: 0;
}

.tdn-wm42-banner-eyebrow {
    display: inline-block;
    background: #c8102e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tdn-wm42-banner-headline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 6px;
}

.tdn-wm42-banner-sub {
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

.tdn-wm42-banner-cta {
    flex-shrink: 0;
    background: #c8102e;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 4px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s ease;
}

.tdn-wm42-banner:hover .tdn-wm42-banner-cta {
    background: #a00d24;
}

.tdn-wm42-banner-arrow {
    transition: transform 0.15s ease;
}

.tdn-wm42-banner:hover .tdn-wm42-banner-arrow {
    transform: translateX(3px);
}

/* Banner responsive */
@media (max-width: 640px) {
    .tdn-wm42-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 22px 20px 30px;
        gap: 16px;
    }
    .tdn-wm42-banner-headline {
        font-size: 20px;
    }
    .tdn-wm42-banner-cta {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* ============ LANDING PAGE ============ */
.tdn-wm42-landing {
    background: #ffffff;
    color: #1a1a1a;
    padding: 60px 40px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 20px auto;
    box-sizing: border-box;
}

.tdn-wm42-landing-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #c8102e;
}

.tdn-wm42-landing-eyebrow {
    display: inline-block;
    background: #c8102e;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 3px;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tdn-wm42-landing-headline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 40px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0 0 16px 0;
}

.tdn-wm42-landing-intro {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 36px;
}

.tdn-wm42-landing-intro p {
    margin: 0 0 12px 0;
    color: #555555;
}

.tdn-wm42-landing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: 640px;
    margin: 0 auto 32px;
}

.tdn-wm42-night-card {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 22px 20px;
    text-align: left;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.tdn-wm42-night-card.is-published {
    border-color: #c8102e;
    background: #ffffff;
}

.tdn-wm42-night-label {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 600;
    color: #c8102e;
    margin-bottom: 4px;
}

.tdn-wm42-night-date {
    font-size: 13px;
    color: #777777;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.tdn-wm42-night-main {
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.tdn-wm42-night-link {
    display: inline-block;
    color: #c8102e;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #c8102e;
    padding-bottom: 2px;
}

.tdn-wm42-night-link:hover {
    color: #a00d24;
    border-bottom-color: #a00d24;
}

.tdn-wm42-night-pending {
    display: inline-block;
    color: #888888;
    font-size: 13px;
    font-style: italic;
}

.tdn-wm42-landing-footer {
    color: #999999;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 24px;
}

/* Landing page responsive */
@media (max-width: 640px) {
    .tdn-wm42-landing {
        padding: 44px 24px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .tdn-wm42-landing-headline {
        font-size: 30px;
    }
}

/* ============ LIVE SCORECARD ============ */
.tdn-wm42-live-card {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 22px 24px;
    max-width: 560px;
    margin: 0 auto 16px;
    text-align: left;
}

.tdn-wm42-live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.tdn-wm42-live-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 19px;
    font-weight: 600;
    color: #c8102e;
}

.tdn-wm42-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #c8102e;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 3px;
    letter-spacing: 0.8px;
    flex-shrink: 0;
}

.tdn-wm42-live-dot {
    width: 7px;
    height: 7px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: tdn-wm42-pulse 1.8s ease-in-out infinite;
}

@keyframes tdn-wm42-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.tdn-wm42-live-sub {
    font-size: 12px;
    color: #777;
    margin-bottom: 16px;
}

.tdn-wm42-live-list {
    font-size: 13px;
    color: #1a1a1a;
    line-height: 1.9;
}

.tdn-wm42-live-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.tdn-wm42-live-row:last-child {
    border-bottom: none;
}

.tdn-wm42-live-match {
    color: #555;
    flex: 1;
}

.tdn-wm42-live-match.is-pending {
    color: #aaa;
}

.tdn-wm42-live-winner {
    text-align: right;
    flex-shrink: 0;
    max-width: 55%;
}

.tdn-wm42-live-winner.is-decided {
    font-weight: 600;
    color: #1a1a1a;
}

.tdn-wm42-live-winner.is-pending {
    color: #aaa;
    font-style: italic;
    font-size: 12px;
}

/* Highlight flash when a new winner is revealed */
.tdn-wm42-live-row.just-revealed {
    animation: tdn-wm42-reveal 2.2s ease-out;
}

@keyframes tdn-wm42-reveal {
    0% { background-color: rgba(200, 16, 46, 0.18); }
    100% { background-color: transparent; }
}

.tdn-wm42-live-footer {
    margin-top: 14px;
    font-size: 12px;
    color: #888;
    text-align: center;
}

@media (max-width: 640px) {
    .tdn-wm42-live-card {
        padding: 18px 18px;
    }
    .tdn-wm42-live-match,
    .tdn-wm42-live-winner {
        font-size: 13px;
    }
    .tdn-wm42-live-winner {
        max-width: 50%;
    }
}
