/* ══════════ PAGES — Light Theme ══════════ */

/* ── Contact Page ── */
.contact-hero {
    padding-top: calc(var(--navbar-height) + var(--space-4xl));
    padding-bottom: var(--space-4xl);
    background: var(--bg-main);
    position: relative;
}

.contact-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-hero__title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.contact-hero__quote {
    font-size: var(--fs-lg);
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--color-primary);
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.contact-hero__quote-author {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-xl);
}

.contact-hero__note {
    background: var(--bg-section-alt);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: var(--border-light);
    box-shadow: var(--shadow-md);
}

.contact-form__title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form__success {
    display: none;
    text-align: center;
    padding: var(--space-2xl);
}

.contact-form__success.visible {
    display: block;
}

.contact-form__success-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.contact-form__success-title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.contact-form__success-text {
    color: var(--text-muted);
}

/* ── Landing Pages ── */
.landing-hero {
    padding-top: calc(var(--navbar-height) + var(--space-4xl));
    padding-bottom: var(--space-4xl);
    background: var(--bg-main);
    position: relative;
}

.landing-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.landing-hero__badge {
    display: inline-block;
    background: var(--bg-blue-light);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xl);
}

.landing-hero__title {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.landing-hero__subtitle {
    font-size: var(--fs-xl);
    color: var(--text-secondary);
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-lg);
}

.landing-hero__text {
    font-size: var(--fs-base);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.landing-hero__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.landing-hero__image {
    margin-top: var(--space-2xl);
}

.landing-hero__image img {
    max-width: 480px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.landing-hero__coming-soon {
    background: var(--bg-section-alt);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    margin-top: var(--space-xl);
    display: inline-block;
}

.landing-hero__coming-soon p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

/* ── NextLevel Teens: Problem Section ── */
.teens-problem {
    padding: var(--space-4xl) 0;
    background: var(--bg-main);
}

.teens-problem__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-4xl);
    align-items: center;
}

.teens-problem__content h2 {
    font-size: clamp(2.25rem, 5vw, 5rem);
    font-weight: var(--fw-medium);
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.teens-problem__content p {
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    color: var(--text-secondary);
}

.teens-problem__content strong {
    color: var(--text-primary);
    font-weight: var(--fw-bold);
}

.teens-problem__stat {
    background: var(--bg-main);
    /* Match image, light background instead of card */
    padding: 0;
}

.teens-problem__stat-top {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: var(--space-md);
}

.teens-problem__number {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: var(--fw-extrabold);
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1;
    flex-shrink: 0;
}

.teens-problem__stat-text {
    font-size: var(--fs-sm);
    color: var(--text-primary);
    text-align: left;
    font-style: italic;
    line-height: var(--lh-relaxed);
}

.teens-problem__stat-source {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-align: right;
    font-style: italic;
}

.teens-problem__image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ── NextLevel Teens: Solution Section ── */
.teens-solution {
    padding: var(--space-4xl) 0;
    text-align: center;
}

.teens-solution__header {
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
}

.teens-solution__logo {
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.teens-solution__title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.teens-solution__text {
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    color: var(--text-secondary);
}

.teens-solution__text strong {
    color: var(--text-primary);
    font-weight: var(--fw-bold);
}

.teens-solution__image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ── NextLevel Teens: Program Card Section ── */
.teens-program {
    padding: var(--space-4xl) 0;
    background: var(--bg-main);
}

.teens-program__card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
}

.teens-program__content {
    padding: clamp(var(--space-2xl), 6vw, var(--space-4xl));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.teens-program__label {
    font-size: var(--fs-base);
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
}

.teens-program__title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    line-height: 1;
    margin-bottom: var(--space-xl);
}

.teens-program__desc {
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    border-left: 3px solid var(--border-light);
    padding-left: var(--space-lg);
}

.teens-program__desc strong {
    color: var(--text-primary);
    font-weight: var(--fw-bold);
}

.teens-program__image {
    height: 100%;
    min-height: 400px;
}

.teens-program__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── NextLevel Teens: What's Included Section ── */
.teens-includes {
    padding: var(--space-4xl) 0;
    background: #fff;
    overflow: hidden;
}

.teens-includes__grid {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.teens-includes__content {
    padding-left: var(--space-xl);
}

.teens-includes__title {
    font-size: clamp(2.25rem, 5vw, 5rem);
    font-weight: var(--fw-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-2xl);
    text-align: left;
}

.teens-includes__list {
    list-style: none;
    margin-bottom: var(--space-2xl);
}

.teens-includes__list li {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: var(--space-xl);
    line-height: var(--lh-relaxed);
}

.teens-includes__list li::before {
    content: "●";
    color: var(--text-primary);
    position: absolute;
    left: 0;
    font-size: 1rem;
    top: 2px;
}

.teens-includes__list strong {
    color: var(--text-primary);
    font-weight: var(--fw-bold);
}

.teens-includes__actions {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.teens-includes__trust {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    justify-content: flex-start;
    border-top: 1px solid var(--border-light);
    padding-top: var(--space-xl);
}

.teens-includes__trust img {
    height: 40px;
    object-fit: contain;
}

.teens-includes__image {
    position: relative;
}

.teens-includes__image-main {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-xl);
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .teens-includes__image-main {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 400px;
    }
}

.teens-includes__seal {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .teens-includes__seal {
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 110px;
    }
}

/* ── NextLevel Teens: Video Workshops ── */
.teens-video-workshops {
    padding: var(--space-4xl) 0;
    background: var(--bg-section-alt);
}

.teens-video-workshops__header {
    margin-bottom: var(--space-4xl);
    max-width: 100%;
}

.teens-video-workshops__label {
    font-size: var(--fs-md);
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
    display: block;
}

.teens-video-workshops__title {
    font-size: clamp(2.25rem, 5vw, 5rem);
    font-weight: var(--fw-medium);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.teens-video-workshops__desc {
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    color: var(--text-secondary);
}

.teens-video-workshops__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.teens-vw-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teens-vw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.teens-vw-card__header {
    padding: var(--space-xl);
    padding-bottom: var(--space-md);
}

.teens-vw-card__title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.teens-vw-card__subtitle {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
}

.teens-vw-card__bar {
    height: 8px;
    width: 100%;
}

.teens-vw-card__bar--red {
    background: #A04A6B;
}

.teens-vw-card__bar--blue {
    background: #5381A6;
}

.teens-vw-card__bar--green {
    background: #5B7F61;
}

.teens-vw-card__body {
    padding: var(--space-xl);
    flex: 1;
}

.teens-vw-list {
    list-style: none;
}

.teens-vw-list li {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-lg);
    line-height: var(--lh-relaxed);
}

.teens-vw-list li::before {
    content: "▶";
    color: #cbd5e1;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 4px;
}

.teens-video-workshops__footer {
    text-align: center;
    font-weight: var(--fw-bold);
    font-size: var(--fs-md);
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── NextLevel Teens: Comparison Table ── */
.mobile-br {
    display: none;
}

.teens-comparison {
    padding: var(--space-4xl) 0;
    background: #fff;
    overflow: hidden;
}

.teens-comparison__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Left table, right image */
    gap: var(--space-3xl);
    align-items: center;
}

.teens-comparison__header {
    margin-bottom: var(--space-2xl);
}

.teens-comparison__label {
    font-size: var(--fs-md);
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
    display: block;
}

.teens-comparison__title {
    font-size: clamp(2.25rem, 5vw, 5rem);
    font-weight: var(--fw-medium);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.teens-comparison__desc {
    font-size: var(--fs-lg);
    line-height: var(--lh-relaxed);
    color: var(--text-secondary);
}

.teens-comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    /* Adds gap between rows instead of solid grid */
    margin-bottom: var(--space-3xl);
    /* More breathing room below */
}

/* Base styles for cells */
.teens-comp-table th,
.teens-comp-table td {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    vertical-align: middle;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

/* First column (Row headers) */
.teens-comp-table th:first-child,
.teens-comp-table td:first-child {
    text-align: left;
    width: 40%;
}

.teens-comp-table td:first-child {
    font-size: clamp(1rem, 2vw, 1.15rem);
    /* Larger font */
    color: var(--color-primary-dark);
    font-weight: var(--fw-semibold);
    border: 1px solid var(--border-light);
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-left: var(--space-xl);
    /* Better indentation */
}

/* Headers */
.teens-comp-table th {
    background: #F1F2F4;
    color: #4A4E54;
    font-weight: var(--fw-bold);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    padding: var(--space-lg) var(--space-md);
    border-bottom: 2px solid #D1D5DB;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.teens-comp-table th:first-child {
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-primary);
}

/* NextLevel Header (Gold) */
.teens-comp-table th:last-child {
    background: rgba(207, 157, 69, 0.18);
    color: var(--color-primary-dark);
    border-top-right-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    font-weight: var(--fw-extrabold);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    border-bottom: 3px solid var(--color-primary);
}

/* Data Cells */
.teens-comp-table td {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    background: #fff;
    /* White background for rows to stand out against page */
}

.teens-comp-table td:not(:first-child) {
    border-right: 1px solid var(--border-light);
}

/* NextLevel Data Cells */
.teens-comp-table td:last-child {
    border-left: 2px solid #CF9D45;
    border-right: 2px solid #CF9D45;
    border-top: 2px solid #CF9D45;
    border-bottom: 2px solid #CF9D45;
    background: rgba(207, 157, 69, 0.08);
    /* Slightly more prominent */
    position: relative;
    z-index: 1;
    /* Keep borders above */
}

/* Row Hover Effect */
.teens-comp-table tbody tr:hover td {
    background: #fdfdfd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: transparent;
    /* Clean up borders on hover */
}

.teens-comp-table tbody tr:hover td:last-child {
    background: rgba(207, 157, 69, 0.15);
    /* Darker gold on hover */
    box-shadow: 0 5px 20px rgba(207, 157, 69, 0.2);
}

/* Premium Checkmarks instead of Rombo */
.teens-comp-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #CF9D45;
    /* Gold background */
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(207, 157, 69, 0.3);
}

.teens-comp-check::before {
    content: "✓";
}

.teens-comp-check.faded {
    background: #E0E4EC;
    /* Soft gray for not included features */
    color: #A0AABF;
    box-shadow: none;
}

.teens-comp-check.faded::before {
    content: "—";
    /* Dash for empty */
}

.teens-comparison__action {
    text-align: right;
    padding-right: var(--space-md);
}

.teens-comparison__image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.teens-comparison__image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.teens-comparison__seal {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 160px;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

/* ── NextLevel Teens: FAQ Section ── */
.teens-faq {
    padding: var(--space-4xl) 0;
    background: var(--bg-section-alt);
}

.teens-faq__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.teens-faq__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    min-height: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.teens-faq__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teens-faq__header {
    margin-bottom: var(--space-2xl);
}

.teens-faq__logo {
    margin-bottom: var(--space-md);
    height: 40px;
}

.teens-faq__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    line-height: 1.1;
    font-family: var(--font-heading);
}

.teens-faq__content .faq__item {
    border-bottom: 2px solid var(--border-light);
}

.teens-faq__content .faq__question {
    font-size: var(--fs-md);
    color: var(--color-primary-dark);
    padding: var(--space-md) 0;
}

.teens-faq__content .faq__answer p {
    color: var(--text-secondary);
    font-size: var(--fs-base);
}

/* ── Legal Pages ── */
.legal {
    padding-top: calc(var(--navbar-height) + var(--space-3xl));
    padding-bottom: var(--space-4xl);
    background: var(--bg-main);
}

.legal__header {
    margin-bottom: var(--space-3xl);
    border-bottom: 1px solid #E8E6DE;
    padding-bottom: var(--space-xl);
}

.legal__title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.legal__date {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

.legal__content {
    max-width: 800px;
    line-height: var(--lh-relaxed);
}

.legal__content h2 {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.legal__content h3 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal__content p {
    color: var(--text-secondary);
    font-size: var(--fs-base);
    margin-bottom: var(--space-md);
}

.legal__content ul,
.legal__content ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.legal__content ul {
    list-style: disc;
}

.legal__content ol {
    list-style: decimal;
}

.legal__content li {
    color: var(--text-secondary);
    font-size: var(--fs-base);
    margin-bottom: var(--space-sm);
}

.legal__content a {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.legal__content a:hover {
    color: var(--color-primary);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .contact-hero__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .landing-hero__title {
        font-size: var(--fs-3xl);
    }

    .landing-hero__image img {
        max-width: 100%;
    }

    .teens-problem__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .teens-problem__stat-top {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: var(--space-sm);
    }

    .teens-problem__stat-text {
        text-align: center;
    }

    .teens-program__card {
        grid-template-columns: 1fr;
    }

    .teens-program__content {
        padding: var(--space-2xl);
        text-align: center;
    }

    .teens-program__desc {
        border-left: none;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
    }




    .teens-includes__grid,
    .teens-video-workshops__grid {
        grid-template-columns: 1fr;
    }

    .teens-includes__content {
        padding-right: 0;
    }

    .teens-includes__seal {
        width: 120px;
        right: 10px;
        left: auto;
        bottom: -20px;
    }

    .teens-comparison__grid {
        grid-template-columns: 1fr;
    }

    .teens-comp-table {
        font-size: var(--fs-xs);
    }

    .teens-comp-table th,
    .teens-comp-table td {
        padding: var(--space-xs);
    }

    .teens-comp-table th {
        height: 60px;
        vertical-align: middle;
        font-size: var(--fs-xs) !important;
        padding: var(--space-sm) var(--space-xs);
    }

    .mobile-br {
        display: block;
        /* Show the breaks on mobile */
    }

    .teens-comp-table th:first-child {
        text-align: center;
        /* Center the "Opciones en el mercado" header */
    }

    .teens-comp-table td:first-child {
        width: 30%;
        font-size: var(--fs-xs);
        padding-left: var(--space-sm);
    }

    .teens-comparison__action {
        text-align: center;
        padding-right: 0;
    }

    .teens-comparison__image-container {
        min-height: 300px;
        order: -1;
        /* Image on top in mobile */
    }

    .teens-faq__grid {
        grid-template-columns: 1fr;
    }

    .teens-faq__image {
        min-height: 400px;
        order: -1;
    }
}