/* ===== About page ===== */
@media only screen and (min-width: 0rem) {
    #about-1400 {
        padding: var(--sectionPadding);
    }

    #about-1400 .cs-container {
        width: 100%;
        max-width: 46rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: clamp(2.5rem, 5vw, 3.5rem);
    }

    #about-1400 .cs-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #about-1400 .cs-content .cs-title {
        max-width: 24ch;
    }

    #about-1400 .cs-text {
        margin-top: 0.75rem;
    }

    #about-1400 .cs-mv {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    #about-1400 .cs-card {
        text-align: left;
        padding: 1.75rem;
        background-color: var(--secondaryShade);
        border-radius: 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #about-1400 .cs-card-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
        border-radius: 50%;
        background-color: var(--primary);
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #about-1400 .cs-card-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--headerColor);
        margin: 0 0 0.5rem;
    }

    #about-1400 .cs-card-text {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: var(--bodyTextColor);
        margin: 0;
    }

    #about-1400 .cs-values {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    #about-1400 .cs-value {
        list-style: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #about-1400 .cs-value-icon {
        width: 3.25rem;
        height: 3.25rem;
        margin-bottom: 0.75rem;
        border-radius: 50%;
        background-color: var(--secondaryShade);
        color: var(--primary);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #about-1400 .cs-value-title {
        font-size: 1.0625rem;
        font-weight: 700;
        color: var(--headerColor);
        margin: 0 0 0.35rem;
    }

    #about-1400 .cs-value-text {
        font-size: 0.875rem;
        line-height: 1.5;
        color: var(--bodyTextColor);
        margin: 0;
        max-width: 22ch;
    }
}

@media only screen and (min-width: 48rem) {
    #about-1400 .cs-mv {
        grid-template-columns: 1fr 1fr;
    }

    #about-1400 .cs-values {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Org Chart section ===== */
@media only screen and (min-width: 0rem) {
    #org-chart-1520 {
        padding: var(--sectionPadding);
    }

    #org-chart-1520 .cs-container {
        width: 100%;
        max-width: 60rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: clamp(2rem, 5vw, 3rem);
    }

    #org-chart-1520 .cs-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #org-chart-1520 .cs-content .cs-title {
        max-width: 24ch;
    }

    #org-chart-1520 .cs-chart-wrapper {
        width: 100%;
        background-color: #fff;
        border-radius: 0.75rem;
        display: flex;
        justify-content: center;
        overflow-x: auto;
        padding: 1rem;
    }

    #org-chart-1520 .cs-chart-img {
        width: 100%;
        height: auto;
        max-width: 40rem;
        display: block;
    }
}

@media only screen and (min-width: 48rem) {
    #org-chart-1520 .cs-chart-wrapper {
        padding: 0rem;
    }
}