/* == PARENT SECTIONS == */
.parent-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.parent-section-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: var(--navy-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}

    .parent-section-icon.mother {
        background: var(--cyan-light);
        color: var(--cyan-dark);
    }

    .parent-section-icon .material-symbols-outlined {
        font-size: 1.3rem;
    }

.parent-section-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.15rem 0 0;
    line-height: 1.4;
}

.parent-divider {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parent-divider-line {
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--navy-soft), var(--cyan-light));
}

/* == GRADE GROUP LABEL == */
.grade-group-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    margin-top: 0.25rem;
}
