/*
 * Tournament Landing Page Styles v1.0.5
 * Prefix: tl-
 * Inherits: Bootstrap 4, OnePress conventions (Raleway headings, Open Sans body, #03c4eb accent)
 */

/* =============================================
   HERO
   ============================================= */
.tl-hero {
    position: relative;
    background: linear-gradient(135deg, #0d2318 0%, #1a3c2a 50%, #0d2318 100%);
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    padding: 52px 0 44px;
    text-align: center;
    overflow: hidden;
}

/* When a real photo is present */
.tl-hero--has-image {
    padding: 52px 0 44px;
    min-height: 0;
    display: flex;
    align-items: center;
}

.tl-hero--has-image .container {
    width: 100%;
}

/* Dark overlay — stronger gradient at bottom so text stays readable */
.tl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 20, 14, 0.62) 0%,
        rgba(10, 20, 14, 0.75) 60%,
        rgba(10, 20, 14, 0.85) 100%
    );
    z-index: 1;
}

/* Fallback texture for gradient-only hero */
.tl-hero:not(.tl-hero--has-image)::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.02) 0px,
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 60px
    );
    pointer-events: none;
    z-index: 1;
}

.tl-hero .container {
    position: relative;
    z-index: 2;
}

.tl-hero-logo {
    margin-bottom: 14px;
}

.tl-hero-logo img {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: inline-block;
}

@media (max-width: 767px) {
    .tl-hero-logo img {
        max-width: 120px;
    }
}

.tl-hero-eyebrow {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #03c4eb;
    margin-bottom: 10px;
}

.tl-hero h1 {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
}

@media (min-width: 768px) {
    .tl-hero h1 {
        font-size: 2.1rem;
    }
}

@media (min-width: 992px) {
    .tl-hero h1 {
        font-size: 2.5rem;
    }
}

.tl-hero-meta {
    color: rgba(255,255,255,0.75);
    font-size: 0.9375rem;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.tl-hero-meta span + span::before {
    content: ' · ';
    color: rgba(255,255,255,0.4);
}

.tl-badge-open {
    display: inline-block;
    background: #28a745;
    color: #fff;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}

/* Sold out badge — muted gray, visually distinct from green open */
.tl-badge-soldout {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.tl-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* "Express Interest" on dark bg uses white outline */
.tl-btn-interest {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: rgba(255,255,255,0.85);
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    padding: 10px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.tl-btn-interest:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    text-decoration: none;
}

/* =============================================
   SHARED SECTION UTILITIES
   ============================================= */
.tl-section {
    padding: 70px 0;
}

.tl-section-alt {
    background: #f8f9f9;
}

.tl-section-dark {
    background: #1a3c2a;
    color: rgba(255,255,255,0.85);
}

.tl-section-dark h2,
.tl-section-dark h3,
.tl-section-dark h4 {
    color: #ffffff;
}

/* =============================================
   COURSE PHOTO GALLERY
   ============================================= */

/*
 * Layout: one wide shot full-width, then a 2-up pair below it.
 * On mobile all images stack full-width.
 */
.tl-gallery {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #0d2318;
    /* No container — intentionally full-bleed */
}

.tl-gallery-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.tl-gallery-item {
    position: relative;
    overflow: hidden;
    line-height: 0; /* collapse img whitespace */
}

.tl-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Wide shot taller than the pair items */
.tl-gallery-item--wide img {
    max-height: 520px;
}

.tl-gallery-pair .tl-gallery-item img {
    max-height: 360px;
}

/* Subtle zoom on hover */
.tl-gallery-item:hover img {
    transform: scale(1.03);
}

/* Caption overlay */
.tl-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.tl-gallery-item:hover .tl-gallery-caption {
    opacity: 1;
}

.tl-gallery-caption span {
    color: #fff;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .tl-gallery-pair {
        grid-template-columns: 1fr;
    }

    .tl-gallery-item--wide img,
    .tl-gallery-pair .tl-gallery-item img {
        max-height: 260px;
    }

    .tl-gallery-caption {
        opacity: 1; /* always show on touch */
    }
}

/* =============================================
   INTRO / DETAILS
   ============================================= */
.tl-intro-text {
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
    max-width: 820px;
    margin: 0 auto;
}

/* Father & Son callout card */
.tl-callout {
    background: #eaf9fd;
    border-left: 4px solid #03c4eb;
    border-radius: 4px;
    padding: 24px 28px;
    margin-top: 36px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.tl-callout-label {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #03c4eb;
    margin-bottom: 8px;
}

.tl-callout p {
    margin-bottom: 0;
    color: #444;
    font-size: 0.9375rem;
}

/* =============================================
   WHAT'S INCLUDED — CHECKLIST
   ============================================= */
.tl-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.tl-includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9375rem;
    color: #555;
}

.tl-includes-list li:last-child {
    border-bottom: none;
}

.tl-includes-list li .tl-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #03c4eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 2px;
}

/* =============================================
   ITINERARY TIMELINE
   ============================================= */
.tl-itinerary {
    max-width: 860px;
    margin: 0 auto;
}

.tl-itin-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0 28px;
    padding: 22px 0;
    border-bottom: 1px solid #e9e9e9;
    align-items: start;
}

@media (max-width: 576px) {
    .tl-itin-row {
        grid-template-columns: 1fr;
        gap: 6px 0;
    }
}

.tl-itin-row:last-child {
    border-bottom: none;
}

.tl-itin-day {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #03c4eb;
    padding-top: 2px;
}

.tl-itin-date {
    font-size: 0.8125rem;
    color: #999;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    display: block;
    margin-top: 3px;
}

.tl-itin-details h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.tl-itin-details p {
    font-size: 0.875rem;
    color: #777;
    margin-bottom: 0;
    line-height: 1.6;
}

/* =============================================
   COMPETITIONS
   ============================================= */
.tl-competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.tl-comp-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-top: 3px solid #03c4eb;
    border-radius: 4px;
    padding: 24px 20px;
}

.tl-comp-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.tl-comp-card p {
    font-size: 0.875rem;
    color: #777;
    margin-bottom: 0;
}

.tl-rules-note {
    background: #f8f9f9;
    border-radius: 4px;
    padding: 16px 20px;
    font-size: 0.8125rem;
    color: #888;
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto;
}

/* =============================================
   PRICING CARDS
   ============================================= */
.tl-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 780px;
    margin: 0 auto;
}

.tl-pricing-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
}

.tl-pricing-card.tl-pricing-featured {
    border-color: #03c4eb;
    box-shadow: 0 4px 24px rgba(3,196,235,0.15);
}

.tl-pricing-status {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: #fff;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Sold out pill — gray, replaces green on closed events */
.tl-pricing-status--soldout {
    background: #999;
    color: #fff;
}

.tl-pricing-card h3 {
    font-size: 1.1875rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    margin-top: 8px;
}

.tl-pricing-price {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #03c4eb;
    margin-bottom: 4px;
    line-height: 1;
}

.tl-pricing-per {
    font-size: 0.8125rem;
    color: #aaa;
    margin-bottom: 20px;
}

.tl-pricing-desc {
    font-size: 0.875rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 28px;
}

.tl-pricing-card .btn {
    width: 100%;
}

/* =============================================
   AFTER YOU REGISTER
   ============================================= */
.tl-after-register {
    background: #1a3c2a;
    color: rgba(255,255,255,0.8);
    border-radius: 6px;
    padding: 32px 36px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.tl-after-register p {
    font-size: 0.9375rem;
    margin-bottom: 0;
    color: rgba(255,255,255,0.8);
}

/* =============================================
   TITLEIST EXPERIENCE SECTION
   ============================================= */

/* Section wrapper */
.tl-titleist-section {
    border-top: 1px solid #e9e9e9;
}

/* ── Banner ────────────────────────────────── */
.tl-titleist-banner {
    position: relative;
    background: #0d2318;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    padding: 64px 0 56px;
    text-align: center;
    overflow: hidden;
}

.tl-titleist-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8, 16, 11, 0.55) 0%,
        rgba(8, 16, 11, 0.78) 100%
    );
    z-index: 1;
}

.tl-titleist-banner .container {
    position: relative;
    z-index: 2;
}

.tl-titleist-banner-inner {
    max-width: 640px;
    margin: 0 auto;
}

.tl-titleist-wordmark {
    display: block;
    margin: 0 auto 14px;
    opacity: 0.9;
    filter: brightness(0) invert(1); /* force white regardless of logo color */
}

/* Fallback text if logo file missing */
.tl-titleist-wordmark-text {
    display: block;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.tl-titleist-heading {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .tl-titleist-heading {
        font-size: 1.5rem;
    }
}

.tl-titleist-banner-sub {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    margin-bottom: 0;
    letter-spacing: 0.3px;
}

/* ── Cards wrap ────────────────────────────── */
.tl-titleist-cards-wrap {
    background: #f8f9f9;
    padding: 52px 0 60px;
}

.tl-titleist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 767px) {
    .tl-titleist-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ── Cradle Card ───────────────────────────── */
.tl-cradle-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 32px 28px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    height: 100%;
}

.tl-cradle-card-icon {
    color: #03c4eb;
    margin-bottom: 16px;
}

.tl-cradle-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eaf9fd;
    color: #03c4eb;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.tl-cradle-card h3 {
    font-size: 1.1875rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.tl-cradle-card p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 24px;
}

.tl-cradle-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.tl-cradle-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #666;
}

.tl-cradle-detail-item i {
    color: #03c4eb;
    width: 14px;
    flex-shrink: 0;
}

/* ── Titleist Shop Card ────────────────────── */
.tl-titleist-shop-card {
    background: #ffffff;
    border-radius: 6px;
    border-left: 3px solid #03c4eb;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* Shop hero image */
.tl-shop-hero-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tl-shop-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tl-titleist-shop-card:hover .tl-shop-hero-img img {
    transform: scale(1.03);
}

.tl-shop-card-body {
    padding: 28px 26px 26px;
}

/* Sponsor attribution */
.tl-sponsor-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tl-sponsor-label-logo {
    opacity: 0.7;
    flex-shrink: 0;
}

.tl-sponsor-label span {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
}

.tl-titleist-shop-card h3 {
    font-size: 1.1875rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.tl-titleist-shop-card p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* Reuse .tl-includes-list with tighter spacing inside the card */
.tl-shop-list {
    margin-bottom: 22px;
}

.tl-shop-list li {
    font-size: 0.875rem;
}

/* Ball printing feature image */
.tl-shop-balls-img {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.tl-shop-balls-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.tl-shop-balls-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    color: #fff;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 14px 10px;
}

/* Gift note */
.tl-gift-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #eaf9fd;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: #444;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 22px;
}

.tl-gift-note i {
    color: #03c4eb;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Titleist Shop CTA button */
.tl-titleist-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #03c4eb;
    color: #03c4eb;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.tl-titleist-link-btn:hover {
    background: #03c4eb;
    color: #fff;
    text-decoration: none;
}

.tl-titleist-link-btn i {
    font-size: 0.75rem;
}

/* =============================================
   COURSE SHOWCASE
   ============================================= */
.tl-course-showcase {
    padding: 70px 0;
    background: #0d2318;
}

.tl-course-showcase .section-title-area .section-title,
.tl-course-showcase .section-title-area .section-subtitle {
    color: #fff;
}

.tl-course-showcase .section-title-area .section-subtitle {
    color: rgba(255,255,255,0.55);
}

.tl-course-showcase .section-title-area .section-subtitle::after {
    background: rgba(255,255,255,0.3);
}

.tl-course-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 4-course events (e.g. Bandon) — auto-fit handles 3 or 4 gracefully */
.tl-course-showcase-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1199px) {
    .tl-course-showcase-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .tl-course-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto;
    }
}

.tl-course-showcase-item {
    border-radius: 6px;
    overflow: hidden;
    background: #122b1c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tl-course-showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* Final round card gets a gold accent border */
.tl-course-showcase-item--featured {
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15);
}

.tl-course-showcase-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.tl-course-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tl-course-showcase-item:hover .tl-course-showcase-img img {
    transform: scale(1.05);
}

.tl-course-showcase-info {
    padding: 20px 20px 22px;
}

.tl-course-round {
    display: inline-block;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #03c4eb;
    margin-bottom: 8px;
}

.tl-course-round--final {
    color: #d4af37; /* gold for the championship round */
}

.tl-course-showcase-info h3 {
    font-size: 1.1875rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.tl-course-showcase-info p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0;
    line-height: 1.6;
}

/* =============================================
   COURSE INFO
   ============================================= */
.tl-course-primary {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-left: 4px solid #03c4eb;
    border-radius: 4px;
    padding: 28px 28px 24px;
    margin-bottom: 20px;
}

.tl-course-primary h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.tl-course-primary address {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    line-height: 1.8;
}

.tl-course-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.tl-course-secondary-item {
    background: #f8f9f9;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    padding: 18px 20px;
    font-size: 0.875rem;
    color: #555;
    font-weight: 600;
}

.tl-course-secondary-item i {
    color: #03c4eb;
    margin-right: 8px;
}

/* =============================================
   REGISTER ANCHOR TARGET
   ============================================= */
#register {
    scroll-margin-top: 80px;
}

/* =============================================
   RESPONSIVE UTILITIES
   ============================================= */
@media (max-width: 767px) {
    .tl-hero {
        padding: 36px 0 30px;
    }

    .tl-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .tl-section {
        padding: 50px 0;
    }

    .tl-after-register {
        padding: 24px 20px;
    }
}

/* =============================================
   CALLAWAY EXPERIENCE SECTION — PLACEHOLDER
   (cl- prefix distinguishes from tl- Titleist styles)
   Populate content when Callaway assets are confirmed.
   ============================================= */

.cl-callaway-section {
    border-top: 1px solid #e9e9e9;
}

/* Banner — shares same pattern as .tl-titleist-banner */
.cl-callaway-banner {
    position: relative;
    background: #111111; /* neutral dark — not Callaway red */
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    padding: 64px 0 56px;
    text-align: center;
    overflow: hidden;
}

.cl-callaway-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.78) 100%
    );
    z-index: 1;
}

.cl-callaway-banner .container {
    position: relative;
    z-index: 2;
}

.cl-callaway-banner-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cl-callaway-wordmark {
    display: block;
    margin: 0 auto 14px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

.cl-callaway-wordmark-text {
    display: block;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.cl-callaway-heading {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .cl-callaway-heading { font-size: 1.5rem; }
}

.cl-callaway-banner-sub {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Cards wrap — shares same bg as Titleist section */
.cl-callaway-cards-wrap {
    background: #f8f9f9;
    padding: 52px 0 60px;
}

.cl-callaway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 767px) {
    .cl-callaway-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Placeholder cards — same structure as tl-cradle-card / tl-titleist-shop-card */
.cl-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 32px 28px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 3px solid #03c4eb;
}

.cl-card h3 {
    font-size: 1.1875rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 14px;
}

.cl-card p {
    font-size: 0.9375rem;
    color: #888;
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 0;
}

/* Sponsor attribution — matches .tl-sponsor-label */
.cl-sponsor-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.cl-sponsor-label img {
    opacity: 0.7;
    flex-shrink: 0;
}

.cl-sponsor-label span {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
}

/* Card placeholder image slot */
.cl-card-img-placeholder {
    width: 100%;
    height: 180px;
    background: #ebebeb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #bbb;
    font-size: 0.8125rem;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Sold-out callout block — same structure as .tl-after-register */
.cl-soldout-block {
    background: #333333;
    color: rgba(255,255,255,0.8);
    border-radius: 6px;
    padding: 32px 36px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cl-soldout-block p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.75);
}

@media (max-width: 767px) {
    .cl-soldout-block { padding: 24px 20px; }
}

/* =============================================
   SAND VALLEY ADDITIONS
   ============================================= */

/* .tl-status-soldout — alias for .tl-badge-soldout
   Use either class name — same visual output */
.tl-status-soldout {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}

/* Caddie note inside course card info */
.tl-course-caddie-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    margin-top: 6px;
    margin-bottom: 0;
}

/* Itinerary inline note (e.g. "— caddie required") */
.tl-itin-note {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #aaa;
    font-style: italic;
}

/* Caddie subnote in the What's Included checklist */
.tl-includes-subnote-item {
    padding: 2px 0 8px 36px;
    border-bottom: none;
}

.tl-includes-subnote {
    font-size: 0.8125rem;
    color: #aaa;
    font-style: italic;
}

/* =============================================
   SPONSOR PLACEHOLDER — ADMIN NOTICE
   (visible only to logged-in admins or WP_DEBUG)
   ============================================= */
.tl-sponsor-placeholder {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fffbea;
    border: 2px dashed #f0ad00;
    border-radius: 4px;
    padding: 14px 20px;
    margin: 0 auto 0;
    max-width: 100%;
    font-size: 0.875rem;
    font-style: italic;
    color: #7a5c00;
    line-height: 1.6;
}

.tl-sponsor-placeholder span {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.tl-sponsor-placeholder strong {
    font-style: normal;
}

.tl-sponsor-placeholder code {
    background: rgba(0,0,0,0.07);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 0.8125rem;
    font-style: normal;
}

/* =============================================
   EQUIPMENT DEMO — Callaway + Fujikura (ed-)
   Bandon Dunes 2026 co-sponsor section
   ============================================= */

.ed-section {
    background: #f7f8fa;
}

/* Section Header */
.ed-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.ed-eyebrow {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 14px;
}

.ed-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ed-sponsor-logo {
    display: block;
    height: auto;
    flex-shrink: 0;
}

.ed-logo-callaway {
    max-width: 160px;
    width: 160px;
}

.ed-logo-fujikura {
    max-width: 140px;
    width: 140px;
}

.ed-logo-divider {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #ccc;
    line-height: 1;
    flex-shrink: 0;
}

.ed-logo-fallback {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1a1a1a;
}

.ed-heading {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.ed-subheading {
    font-size: 1.0625rem;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Cards Grid */
.ed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 767px) {
    .ed-grid {
        grid-template-columns: 1fr;
    }
}

/* Individual Cards */
.ed-card {
    background: #fff;
    border-radius: 8px;
    padding: 36px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-top: 4px solid #03c4eb;
}

.ed-card-callaway {
    border-top-color: #1a1a1a;
}

.ed-card-fujikura {
    border-top-color: #c8102e;
}

/* Sponsor bar inside each card */
.ed-card-sponsor-bar {
    margin-bottom: 20px;
    min-height: 42px;
    display: flex;
    align-items: center;
}

.ed-card-logo {
    height: 36px;
    width: auto;
    max-width: 140px;
    display: block;
}

.ed-card-logo--fujikura {
    height: 40px;
    max-width: 130px;
}

.ed-card-heading {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.25;
}

.ed-card-intro {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Feature list — Callaway card */
.ed-feature-label {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.ed-feature-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ed-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.5;
}

.ed-feature-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #03c4eb;
    display: flex;
    align-items: center;
}

/* Shaft blocks — Fujikura card */
.ed-shaft-block {
    background: #f7f8fa;
    border-left: 3px solid #c8102e;
    border-radius: 0 6px 6px 0;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.ed-shaft-block:last-of-type {
    margin-bottom: 24px;
}

.ed-shaft-block-heading {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.ed-shaft-block p {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Gift note — shared */
.ed-gift-note {
    background: #eaf9fd;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: #1a5c6e;
    line-height: 1.55;
    border-left: 3px solid #03c4eb;
}

.ed-gift-note strong {
    color: #0d3d4a;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .ed-heading {
        font-size: 1.625rem;
    }
    .ed-card {
        padding: 28px 24px;
    }
}

@media (max-width: 575px) {
    .ed-logo-callaway {
        max-width: 130px;
        width: 130px;
    }
    .ed-logo-fujikura {
        max-width: 110px;
        width: 110px;
    }
    .ed-logo-divider {
        font-size: 1.25rem;
    }
}

/* =============================================
   SAND VALLEY 2026 — Titleist GTS Fitting (sv-)
   ============================================= */

.sv-fitting-section {
    background: #fff;
}

/* Section header */
.sv-fitting-header {
    text-align: center;
    margin-bottom: 0; /* hero image provides the gap below */
}

.sv-eyebrow {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #03c4eb;
    margin-bottom: 12px;
}

.sv-fitting-heading {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sv-fitting-subheading {
    font-size: 1.0625rem;
    color: #555;
    max-width: 680px;
    margin: 0 auto 20px;
    line-height: 1.65;
}

.sv-logo {
    display: inline-block;
    height: auto;
    max-width: 120px;
    opacity: 0.75;
}

/* GTS hero image */
.sv-gts-hero {
    width: 100%;
    margin: 32px 0;
    border-radius: 10px;
    overflow: hidden;
}

.sv-gts-hero-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 2400 / 750;
    object-fit: cover;
}

@media (max-width: 767px) {
    .sv-gts-hero {
        margin: 24px 0;
        border-radius: 6px;
    }
    .sv-gts-hero-img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 480px) {
    .sv-gts-hero-img {
        aspect-ratio: 4 / 3;
    }
}

/* Cards grid */
.sv-fitting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* Single-column variant (used when only one card is shown) */
.sv-fitting-grid--single {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .sv-fitting-grid {
        grid-template-columns: 1fr;
    }
}

/* Individual cards */
.sv-fitting-card {
    background: #f7f8fa;
    border-radius: 8px;
    padding: 36px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 4px solid #03c4eb;
}

.sv-card-eyebrow {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #03c4eb;
    margin-bottom: 10px;
}

.sv-card-heading {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.25;
}

.sv-card-intro {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 22px;
}

.sv-feature-label {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.sv-feature-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.5;
}

.sv-feature-icon {
    flex-shrink: 0;
    margin-top: 3px;
    color: #03c4eb;
    display: flex;
    align-items: center;
}

.sv-gift-note {
    background: #eaf9fd;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: #1a5c6e;
    line-height: 1.55;
    border-left: 3px solid #03c4eb;
}

.sv-gift-note strong {
    color: #0d3d4a;
}

@media (max-width: 991px) {
    .sv-fitting-heading {
        font-size: 1.625rem;
    }
    .sv-fitting-card {
        padding: 28px 24px;
    }
}


/* =============================================
   PLAYER RESOURCES
   ============================================= */
.tl-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.tl-resource-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #1a1a1a;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tl-resource-card:hover {
    border-color: #03c4eb;
    box-shadow: 0 2px 8px rgba(3, 196, 235, 0.15);
    text-decoration: none;
    color: #1a1a1a;
}

.tl-resource-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #c0392b;
    line-height: 1;
}

.tl-resource-label {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .tl-resources-grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   LIVE SCORING EMBED
   ============================================= */
.tl-scoring-section {
    background: #1a1a1a;
    padding: 0;
}

.tl-scoring-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #111111;
    border-bottom: 2px solid #C9973A;
}

.tl-scoring-bar h2 {
    margin: 0;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.tl-scoring-bar h2 i {
    color: #2E7D32;
    margin-right: 8px;
    animation: tl-pulse 2s ease-in-out infinite;
}

@keyframes tl-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.tl-scoring-fullscreen {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    color: #999;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.tl-scoring-fullscreen:hover {
    color: #ffffff;
    text-decoration: none;
}

.tl-scoring-fullscreen i {
    margin-left: 5px;
    font-size: 0.625rem;
}

.tl-scoring-embed {
    width: 100%;
    background: #ffffff;
}

.tl-scoring-iframe {
    display: block;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 900px;
    border: none;
}

@media (max-width: 767px) {
    .tl-scoring-bar {
        padding: 12px 16px;
    }

    .tl-scoring-bar h2 {
        font-size: 0.8125rem;
    }

    .tl-scoring-iframe {
        height: 80vh;
        min-height: 450px;
    }
}

/* =============================================
   NEWS CARD — condensed live-reporting preview
   ============================================= */

.tl-news {
    --tl-news-accent: #03c4eb;
    --tl-news-accent-dark: #0296b0;
    --tl-news-ink: #0e1a24;
    --tl-news-muted: #596573;
    --tl-news-border: rgba(14, 26, 36, 0.08);
    --tl-news-live: #d64545;

    padding: 44px 0 52px;
    background: linear-gradient(180deg, #f9fbfc 0%, #eef3f6 100%);
}

.tl-news .container {
    max-width: 1120px;
}

.tl-news-card {
    display: block;
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 28px 60px -32px rgba(14, 26, 36, 0.28),
        0 0 0 1px var(--tl-news-border);
    text-decoration: none;
    color: inherit;
    transition: transform 280ms ease, box-shadow 280ms ease;
}

.tl-news-card:hover,
.tl-news-card:focus-visible {
    transform: translateY(-3px);
    box-shadow:
        0 40px 80px -28px rgba(14, 26, 36, 0.35),
        0 0 0 1px rgba(3, 196, 235, 0.35);
    text-decoration: none;
    color: inherit;
    outline: none;
}

/* ---- media ---- */

.tl-news-card__media {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: #0e1a24;
}

.tl-news-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.tl-news-card:hover .tl-news-card__media img,
.tl-news-card:focus-visible .tl-news-card__media img {
    transform: scale(1.03);
}

.tl-news-card__media-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(14, 26, 36, 0.28) 0%, rgba(14, 26, 36, 0) 40%, rgba(14, 26, 36, 0) 100%);
}

.tl-news-card__live {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    background: rgba(14, 26, 36, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    border-radius: 999px;
}

.tl-news-card__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tl-news-live);
    box-shadow: 0 0 0 0 rgba(214, 69, 69, 0.6);
    animation: tl-news-card-pulse 1.8s ease-out infinite;
}

@keyframes tl-news-card-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(214, 69, 69, 0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(214, 69, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(214, 69, 69, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .tl-news-card__live-dot { animation: none; }
    .tl-news-card__media img { transition: none; }
    .tl-news-card:hover .tl-news-card__media img,
    .tl-news-card:focus-visible .tl-news-card__media img { transform: none; }
}

.tl-news-card__source {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 13px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--tl-news-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    border-radius: 999px;
}

/* ---- body ---- */

.tl-news-card__body {
    padding: 26px 32px 28px;
}

.tl-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--tl-news-muted);
    margin-bottom: 10px;
}

.tl-news-card__tag {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(3, 196, 235, 0.12);
    color: var(--tl-news-accent-dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.tl-news-card__sep { opacity: 0.5; }

.tl-news-card__title {
    font-size: 26px;
    line-height: 1.22;
    letter-spacing: -0.015em;
    color: var(--tl-news-ink);
    margin: 0 0 10px;
    transition: color 180ms ease;
}

.tl-news-card:hover .tl-news-card__title,
.tl-news-card:focus-visible .tl-news-card__title {
    color: var(--tl-news-accent-dark);
}

.tl-news-card__dek {
    font-size: 15px;
    line-height: 1.55;
    color: var(--tl-news-muted);
    margin: 0 0 20px;
    max-width: 780px;
}

/* ---- highlight stats ---- */

.tl-news-card__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
    padding: 16px 18px;
    background: #f5f7f9;
    border: 1px solid var(--tl-news-border);
    border-radius: 10px;
}

.tl-news-card__hl {
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid var(--tl-news-border);
}

.tl-news-card__hl:last-child { border-right: 0; }

.tl-news-card__hl-num {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--tl-news-ink);
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
}

.tl-news-card__hl-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--tl-news-muted);
    line-height: 1.35;
}

/* ---- cta ---- */

.tl-news-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--tl-news-accent-dark);
    letter-spacing: 0.2px;
    border-bottom: 1px solid rgba(2, 150, 176, 0.3);
    padding-bottom: 2px;
    transition: color 180ms ease, border-color 180ms ease;
}

.tl-news-card:hover .tl-news-card__cta,
.tl-news-card:focus-visible .tl-news-card__cta {
    color: var(--tl-news-ink);
    border-bottom-color: currentColor;
}

.tl-news-card__cta-arrow {
    display: inline-block;
    transition: transform 200ms ease;
}

.tl-news-card:hover .tl-news-card__cta-arrow,
.tl-news-card:focus-visible .tl-news-card__cta-arrow {
    transform: translateX(4px);
}

/* ---- responsive ---- */

@media (max-width: 768px) {
    .tl-news { padding: 32px 0 40px; }

    .tl-news-card { border-radius: 12px; }

    .tl-news-card__media { aspect-ratio: 16 / 9; }

    .tl-news-card__live,
    .tl-news-card__source {
        top: 12px;
        font-size: 10px;
        padding: 6px 10px;
        letter-spacing: 1.1px;
    }
    .tl-news-card__live  { left: 12px; }
    .tl-news-card__source { right: 12px; }

    .tl-news-card__body { padding: 20px 18px 22px; }

    .tl-news-card__title { font-size: 20px; }
    .tl-news-card__dek   { font-size: 14px; margin-bottom: 16px; }

    .tl-news-card__highlights {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px 14px;
    }
    .tl-news-card__hl {
        padding: 10px 0;
        border-right: 0;
        border-bottom: 1px solid var(--tl-news-border);
        display: flex;
        align-items: baseline;
        justify-content: flex-start;
        gap: 12px;
        text-align: left;
    }
    .tl-news-card__hl:last-child { border-bottom: 0; }
    .tl-news-card__hl-num   { font-size: 22px; flex: 0 0 auto; min-width: 48px; }
    .tl-news-card__hl-label { margin: 0; text-align: left; }
}
