/* Hope Kids page */

.page-kids {
    padding-bottom: calc(var(--nav-height) + var(--safe-bottom));
}

.kids-main {
    padding: 12px 18px 24px;
}

.kids-hero {
    text-align: center;
    padding: 20px 4px 24px;
}

.kids-logo-img {
    max-width: 280px;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.kids-logo-lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.kids-logo-word {
    padding: 6px 14px;
    background: #ffffff;
    color: #000000;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.65);
}

.kids-logo-word--big {
    font-size: 1.8rem;
    letter-spacing: 0.24em;
}

.kids-divider {
    width: 50px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
    margin: 16px auto 14px;
}

.kids-hero-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

.kids-section {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 2px;
}

.kids-section--last {
    padding-bottom: 30px;
}

.kids-section-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1.6px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    background: rgba(75, 179, 230, 0.1);
}

.kids-section-icon svg {
    width: 22px;
    height: 22px;
}

.kids-section-icon .icon-stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kids-section-body {
    flex: 1;
}

.kids-section-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.kids-section-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.kids-section-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.kids-highlight {
    color: #4bb3e6;
    font-weight: 600;
}

.kids-divider-line {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    margin: 0 0 0 56px;
}

@media (min-width: 420px) {
    .kids-main {
        padding-inline: 28px;
    }

    .kids-section-icon {
        width: 44px;
        height: 44px;
    }
}

