/* ── Section shell ─────────────────────────────────── */
.tlw-ty-section {
    padding: 5rem 5rem 5.5rem 5rem;
    background: #f8f6f2;
    position: relative;
    overflow: hidden;
}

/* ── Mobile: reduce padding ─────────────────────────── */
@media (max-width: 860px) {
    .tlw-ty-section {
        padding: 3rem 1.25rem 3.5rem 1.25rem;
    }
}

.tlw-ty-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, #b8963e14 0%, transparent 70%);
    pointer-events: none;
}

/* ── Badge ─────────────────────────────────────────── */
.tlw-ty-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #b8963e;
    background: #fff8ea;
    border: 1px solid #e0c97a;
    border-radius: 2rem;
    padding: .26rem .85rem;
    margin-bottom: .75rem;
}

.tlw-ty-badge--red {
    color: #cc1a1a;
    background: #fff1f1;
    border-color: #f5a0a0;
}

/* ── Section header (two col labels) ───────────────── */
.tlw-ty-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    margin-bottom: 2.5rem;
    align-items: end;
}

/* MOBILE: header stacks to 1 column (2 rows) */
@media (max-width: 860px) {
    .tlw-ty-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
}

.tlw-ty-title {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 800;
    color: #181822;
    line-height: 1.2;
    margin: 0 0 .5rem;
}

.tlw-ty-subtitle {
    font-size: .95rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ── Two-column body ────────────────────────────────── */
.tlw-ty-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* MOBILE: body stacks to 1 column (2 rows), video goes first */
@media (max-width: 860px) {
    .tlw-ty-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tlw-ty-col--video {
        order: -1;
    }
}

/* ══════════════════════════════════════════════════════
   LEFT — Testimonial Slider
   ══════════════════════════════════════════════════════ */
.tlw-ts-slider {
    position: relative;
}

.tlw-ts-track {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 320px;
}

.tlw-ts-card {
    grid-area: 1 / 1;
    background: #fff;
    border-radius: 1.1rem;
    padding: 2.2rem 2.4rem 2rem;
    box-shadow: 0 6px 32px rgba(0,0,0,.07);
    border: 1px solid #ede8dd;
    position: relative;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .38s ease, transform .38s ease;
    pointer-events: none;
}

.tlw-ts-card--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.tlw-ts-card--exit {
    opacity: 0;
    transform: translateY(-18px);
}

/* big decorative quote */
.tlw-ts-quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 6rem;
    line-height: .7;
    color: #e8d5a3;
    position: absolute;
    top: 1.1rem;
    left: 1.8rem;
    pointer-events: none;
    user-select: none;
}

/* stars */
.tlw-ts-stars {
    display: flex;
    gap: .2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.tlw-star--on {
    fill: #f59e0b;
}

.tlw-star--off {
    fill: #e5e7eb;
}

/* feed text */
.tlw-ts-feed {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* author row */
.tlw-ts-author {
    display: flex;
    align-items: center;
    gap: .9rem;
    border-top: 1px solid #f0ece4;
    padding-top: 1.1rem;
}

.tlw-ts-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8963e 0%, #d4a840 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #e8d5a3;
}

.tlw-ts-name {
    display: block;
    font-size: .93rem;
    font-weight: 700;
    color: #181822;
}

.tlw-ts-role {
    display: block;
    font-size: .8rem;
    color: #9ca3af;
    margin-top: .1rem;
}

/* nav */
.tlw-ts-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1.4rem;
}

.tlw-ts-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d4a840;
    background: #fff;
    color: #b8963e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s, color .18s;
    flex-shrink: 0;
}

    .tlw-ts-arrow:hover {
        background: #b8963e;
        color: #fff;
    }

.tlw-ts-dots {
    display: flex;
    gap: .5rem;
}

.tlw-ts-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: all .22s;
}

.tlw-ts-dot--on {
    background: #b8963e;
    width: 26px;
    border-radius: 4px;
}

/* ══════════════════════════════════════════════════════
   RIGHT — YouTube Embed
   ══════════════════════════════════════════════════════ */
.tlw-yt-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tlw-yt-ring {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 28px solid #f5e9c8;
    opacity: .55;
    pointer-events: none;
    z-index: 0;
}

/* responsive 16:9 iframe wrapper */
.tlw-yt-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    background: #000;
    box-shadow: 0 16px 48px rgba(0,0,0,.18);
    z-index: 1;
}

    .tlw-yt-frame iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* video meta row below the iframe */
.tlw-yt-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .8rem 1rem;
    background: #fff;
    border-radius: .6rem;
    border: 1px solid #ede8dd;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    z-index: 1;
}

.tlw-yt-meta__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tlw-yt-meta__label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9ca3af;
}

.tlw-yt-meta__link {
    font-size: .88rem;
    font-weight: 600;
    color: #181822;
    text-decoration: none;
}

    .tlw-yt-meta__link:hover {
        color: #b8963e;
    }
