/* ============================================================
   block-talento-hero.css  –  prefix: tlh-
   Light side-by-side: section = full-width bg, inner = grid
   ============================================================ */

/* Full-width light background — no max-width here */
.tlh-hero {
    background-color: #ffffff !important;
    width: 100%;
}

/* Inner wrapper owns the grid and max-width */
.tlh-hero-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .tlh-hero-inner {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        padding: 4rem 1.5rem;
    }

    .tlh-hero-text {
        order: 1;
        text-align: center;
        align-items: center !important;
    }

    .tlh-video-wrap {
        order: 2;
    }

    .tlh-hero-btn {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .tlh-hero-inner {
        padding: 3rem 1.25rem;
    }
}

.tlh-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.tlh-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 0 1.5rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
}

.tlh-hero-subtitle,
.tlh-hero-subtitle p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    color: #374151 !important;
    margin: 0 0 2.5rem;
    line-height: 1.75;
}

.tlh-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.25rem;
    background-color: #28a745 !important;
    color: #fff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: filter 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.2);
}

.tlh-hero-btn:hover {
    filter: brightness(1.08);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 12px 32px rgba(40, 167, 69, 0.35);
}

/* ── No-video: full-width text column ── */
.tlh-hero-inner--no-video {
    grid-template-columns: 1fr !important;
    max-width: 860px;
}

/* ── Body paragraphs ── */
.tlh-body {
    background-color: #f8f9fa !important;
    width: 100%;
}

.tlh-body-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

@media (max-width: 768px) {
    .tlh-body-inner {
        padding: 3.5rem 1.5rem;
    }
}

.tlh-body-p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.0625rem;
    color: #374151 !important;
    line-height: 1.85;
    margin: 0;
}

/* ── Offer / Checklist ── */
.tlh-offer {
    background-color: #ffffff !important;
    width: 100%;
}

.tlh-offer-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 5rem 4rem;
}

@media (max-width: 768px) {
    .tlh-offer-inner {
        padding: 3.5rem 1.5rem;
    }
}

.tlh-offer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
    font-weight: 700 !important;
    color: #111827 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 1rem !important;
    line-height: 1.2 !important;
}

.tlh-offer-intro {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #6b7280 !important;
    line-height: 1.75;
    margin: 0 0 2.5rem;
}

.tlh-checklist {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.tlh-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tlh-checklist__icon {
    flex-shrink: 0;
    font-size: 1.125rem;
    margin-top: 0.1em;
}

.tlh-checklist__text {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #374151 !important;
    line-height: 1.6;
}

.tlh-offer-closing {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #6b7280 !important;
    line-height: 1.75;
    margin: 0 0 2.5rem;
    font-style: italic;
}

.tlh-offer-cta {
    display: inline-flex;
}

/* ── Video ── */
.tlh-video-wrap {
    width: 100%;
}

.tlh-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.tlh-video-embed iframe,
.tlh-video-embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}
