/* ============================================================
   ExoticExpansion 2 — Premium Talent Management Styles
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.talent-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 48px;
    margin-top: -8px;
}

.talent-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(139,92,246,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 70%, rgba(var(--accent-green-rgb),0.2) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(59,130,246,0.18) 0%, transparent 50%),
        var(--bg-elevated);
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite;
}

.talent-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.talent-hero__content {
    position: relative;
    z-index: 1;
    padding: 56px 48px;
    max-width: 640px;
}

.talent-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.talent-badge-elite {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.talent-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.gradient-text {
    background: var(--grad-animate);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextShift 5s ease infinite;
}

.talent-hero__sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.talent-hero__stats {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-stat { text-align: center; }

.hero-stat__val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat__lbl {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.talent-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-talent-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--grad);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.btn-talent-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-talent-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    border: 1.5px solid var(--border-light);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.btn-talent-ghost:hover { border-color: var(--brand-green); color: var(--brand-green); }

/* ── Section headers ───────────────────────────────────────── */
.talent-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.talent-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.talent-section-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── Featured Strip ─────────────────────────────────────────── */
.talent-featured-strip {
    margin-bottom: 48px;
}

.talent-featured-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.talent-featured-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    text-align: center;
    animation: fadeInUp 0.4s ease both;
}

.talent-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    border-color: var(--border-light);
}

.talent-featured-card.tier-elite   { border-top: 2px solid #f59e0b; }
.talent-featured-card.tier-premium { border-top: 2px solid var(--brand-purple); }
.talent-featured-card.tier-standard{ border-top: 2px solid var(--brand-green); }

.tfc-avatar-wrap {
    position: relative;
    margin-bottom: 10px;
}

.tfc-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
}

.tfc-tier-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tfc-verified {
    position: absolute;
    top: -2px;
    right: -2px;
    color: var(--brand-blue);
    font-size: 0.9rem;
}

.tfc-name  { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); margin-bottom: 2px; }
.tfc-handle{ font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; }
.tfc-niche { font-size: 0.7rem; color: var(--brand-green); font-weight: 600; margin-bottom: 4px; }
.tfc-reach { font-size: 0.72rem; color: var(--text-muted); }

/* ── Filter Bar ─────────────────────────────────────────────── */
.talent-filters { margin-bottom: 28px; }

.talent-filter-form { display: flex; }

.talent-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.talent-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--border-light);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.18s;
    white-space: nowrap;
}

.talent-chip:hover { border-color: var(--brand-green); color: var(--brand-green); }
.talent-chip.active {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
    font-weight: 700;
}

.talent-chip-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
    margin: 0 4px;
}

/* ── Roster Grid ─────────────────────────────────────────────── */
.talent-roster-section { margin-bottom: 56px; }

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.talent-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeInUp 0.4s ease both;
    display: flex;
    flex-direction: column;
}

.talent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.talent-card.tier-elite   { border-top: 3px solid #f59e0b; }
.talent-card.tier-premium { border-top: 3px solid var(--brand-purple); }
.talent-card.tier-standard{ border-top: 3px solid var(--brand-green); }

/* Card banner */
.tc-banner {
    height: 72px;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-hover) 100%);
    position: relative;
    overflow: hidden;
}

.tc-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.tc-tier-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card body */
.tc-body { padding: 0 18px 18px; flex: 1; display: flex; flex-direction: column; }

.tc-avatar-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: -28px;
    margin-bottom: 10px;
}

.tc-avatar-link { position: relative; display: inline-block; }

.tc-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--bg-card);
    object-fit: cover;
}

.tc-verified {
    position: absolute;
    bottom: 0;
    right: -2px;
    font-size: 0.8rem;
    color: var(--brand-blue);
}

.tc-avail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 4px;
}

.tc-avail.avail-open   { color: var(--brand-green); background: rgba(var(--accent-green-rgb),0.12); }
.tc-avail.avail-closed { color: #9090b0; background: rgba(144,144,176,0.1); }

.avail-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.tc-avail.avail-open .avail-dot {
    animation: pulse 2s ease-in-out infinite;
}

.tc-name { font-size: 1rem; font-weight: 700; margin: 0 0 2px; }
.tc-name a { color: var(--text-primary); text-decoration: none; }
.tc-name a:hover { color: var(--brand-green); }

.tc-handle { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }

.tc-headline {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 8px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tc-niche-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--brand-green);
    background: rgba(var(--accent-green-rgb),0.1);
    padding: 2px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    align-self: flex-start;
}

/* Reach grid */
.tc-reach-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tc-reach-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.tc-reach-item i { font-size: 0.8rem; }

/* Rate card */
.tc-rates {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    padding: 10px;
    background: var(--bg-elevated);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.tc-rate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    flex: 1;
    min-width: 60px;
}

.tc-rate-lbl { font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.tc-rate-val { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }

/* External links */
.tc-ext-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.tc-ext-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.18s, transform 0.18s;
    border: 1px solid transparent;
}

.tc-ext-link:hover { opacity: 0.82; transform: translateY(-1px); }

.tc-ext-yt {
    background: rgba(255,68,68,0.12);
    border-color: rgba(255,68,68,0.25);
    color: #ff6b6b;
}

.tc-ext-domain {
    background: rgba(59,130,246,0.1);
    border-color: rgba(59,130,246,0.22);
    color: #60a5fa;
}

.tc-ext-link i { font-size: 0.8rem; }

/* Actions */
.tc-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.tc-btn-channel {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1.5px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s;
}
.tc-btn-channel:hover { border-color: var(--brand-green); color: var(--brand-green); }

.tc-btn-book {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--grad);
    border: none;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.tc-btn-book:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Empty state ─────────────────────────────────────────────── */
.talent-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.talent-empty i { font-size: 3rem; margin-bottom: 16px; display: block; }
.talent-empty p { font-size: 1rem; margin-bottom: 16px; }

/* ── Book a Creator section ─────────────────────────────────── */
.talent-book-section {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 56px;
}

.talent-book-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
}

.talent-book-copy {
    padding: 48px 40px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(var(--accent-green-rgb),0.15) 0%, transparent 60%),
        var(--bg-elevated);
    border-right: 1px solid var(--border);
}

.talent-book-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px;
    line-height: 1.2;
}

.talent-book-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.talent-book-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.talent-book-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.talent-book-points i { color: var(--brand-green); }

.talent-book-form-wrap {
    padding: 40px;
}

/* ── Forms ───────────────────────────────────────────────────── */
.talent-inquiry-form { display: flex; flex-direction: column; gap: 14px; }

.talent-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.talent-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.talent-form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.talent-input {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    font-family: inherit;
}

.talent-input:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(var(--accent-green-rgb),0.15);
}

.talent-input option { background: var(--bg-card); }

.talent-textarea {
    resize: vertical;
    min-height: 80px;
}

.talent-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    background: var(--grad);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    width: 100%;
}
.talent-submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.talent-alert-error {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    color: #fca5a5;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.talent-inquiry-success {
    text-align: center;
    padding: 40px 20px;
    color: var(--brand-green);
}
.talent-inquiry-success i { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.talent-inquiry-success h3 { color: var(--text-primary); margin: 0 0 8px; }
.talent-inquiry-success p  { color: var(--text-secondary); font-size: 0.875rem; }

/* ── Modal ───────────────────────────────────────────────────── */
.talent-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.15s ease;
}

.talent-modal-overlay[hidden] { display: none; }

.talent-modal {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: fadeInUp 0.2s ease;
}

.talent-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    transition: color 0.2s;
}
.talent-modal-close:hover { color: var(--text-primary); }

.talent-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
}

/* ── Index page Talent teaser strip ─────────────────────────── */
.talent-teaser-section {
    margin-bottom: 48px;
}

.talent-teaser-strip {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.talent-teaser-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s;
    text-align: center;
    animation: fadeInUp 0.35s ease both;
}

.talent-teaser-card:hover { transform: translateY(-3px); border-color: var(--border-light); }
.talent-teaser-card.tier-elite   { border-top: 2px solid #f59e0b; }
.talent-teaser-card.tier-premium { border-top: 2px solid var(--brand-purple); }
.talent-teaser-card.tier-standard{ border-top: 2px solid var(--brand-green); }

.talent-teaser-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
}

.talent-teaser-name   { font-size: 0.8rem; font-weight: 700; color: var(--text-primary); }
.talent-teaser-handle { font-size: 0.7rem; color: var(--text-muted); }
.talent-teaser-niche  { font-size: 0.66rem; color: var(--brand-green); font-weight: 600; }

.talent-teaser-cta {
    display: flex;
    justify-content: center;
}

/* ── Index page "Who's live now" strip ─────────────────────── */
.live-now-section {
    margin-bottom: 44px;
}

.live-people-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    margin-bottom: 10px;
    scrollbar-width: thin;
}

.live-person-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 12px 8px 8px;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-primary);
    white-space: nowrap;
    transition: border-color 0.2s, transform 0.2s;
}

.live-person-pill:hover {
    border-color: rgba(248, 113, 113, 0.5);
    transform: translateY(-1px);
}

.live-person-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
}

.live-person-name {
    font-size: 0.82rem;
    font-weight: 600;
}

.live-person-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f87171;
    box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.65);
    animation: livePulse 1.7s ease-out infinite;
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.65);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(248, 113, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(248, 113, 113, 0);
    }
}

.live-now-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 740px) {
    .live-now-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1120px) {
    .live-now-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.live-now-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.live-now-card:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 113, 113, 0.5);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.live-now-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
}

.live-now-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.live-now-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(248, 113, 113, 0.92);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.live-now-meta {
    padding: 11px 12px 12px;
}

.live-now-name {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-now-name i {
    color: var(--brand-blue);
    font-size: 0.78rem;
}

.live-now-sub {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 3px;
}

.live-now-title {
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .talent-book-inner { grid-template-columns: 1fr; }
    .talent-book-copy  { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
    .talent-book-form-wrap { padding: 28px 24px; }
}

@media (max-width: 600px) {
    .talent-hero__content { padding: 36px 24px; }
    .talent-hero__title   { font-size: 1.8rem; }
    .talent-form-row      { grid-template-columns: 1fr; }
    .talent-grid          { grid-template-columns: 1fr; }
    .talent-featured-row  { grid-template-columns: repeat(3, 1fr); }
}
