#about {
    container-type: size;
    container-name: about;
    width: 90%;

    & > header {
        & h1 {
            display: flex;
            flex-wrap: wrap;
            color: var(--french-vanilla-color);
            font-size: clamp(2.5rem, min(12cqw, 10cqh), 8rem);
            line-height: 1.2;
            font-variation-settings: "wght" 200;
            text-align: center;
            background: var(--french-vanilla-color);
            background: linear-gradient(to right, #a4c4b7 0%, #f2bc71 45%, #e26d5a 65%, #4ca1af 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;

            & div {
                display: flex;
                justify-content: space-between;
                flex: 1 1 50%;
            }
            & > span {
                display: none;
            }

            &.wrapped div:first-child span:last-child {
                display: none;
            }
        }

        & h2 {
            color: #f8e3bb;
            font-family: Praise;
            font-size: clamp(1.5rem, min(10cqw, 8cqh), 4rem);
            text-align: center;
        }
    }

    & > main {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: clamp(2rem, 2.5vw, 4rem);

        & .value-panel {
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;

            & h3 {
                width: 100%;
                font-size: clamp(2rem, min(6.5cqw, 5.5cqh), 6rem);
                font-weight: bold;
                line-height: clamp(2.5rem, min(5.69cqw, 5.31cqh), 7rem);
                text-align: center;

                & > svg {
                    display: none;
                }
            }

            & p {
                margin-top: 1rem;
                color: var(--french-vanilla-color);
                font-size: clamp(1rem, 0.9375vw, 1.5rem);
                text-align: justify;
                line-height: 1.5;
                hyphens: manual;
                hyphens: auto;

                & .value-word {
                    font-weight: bold;
                    text-transform: uppercase;
                }
            }

            & img {
                width: calc((15cqw + 25cqh) / 2);
                margin-top: auto;
            }
        }

        & #purpose,
        & #purpose-clone {
            & h3 {
                font-family: "Nothing You Could Do";
                font-weight: bold;
                color: var(--purpose-color);
            }

            & p {
                & em {
                    color: var(--purpose-color);
                }
            }
        }

        & #curiosity {
            & h3 {
                font-family: Schoolbell;
                color: var(--curiosity-color);
            }

            & p {
                & em {
                    color: var(--curiosity-color);

                    &.value-word {
                        color: var(--curiosity-color);
                    }
                }
            }
        }

        & #creativity {
            & h3 {
                color: var(--creativity-color);
                font-family: "Fredericka the Great";
            }

            & p {
                & em {
                    color: var(--creativity-color);

                    &.value-word {
                        color: var(--creativity-color);
                        font-weight: bold;
                    }
                }
            }
        }

        & #empathy,
        & #empathy-clone {
            & h3 {
                color: var(--empathy-color);
                font-size: clamp(2.5rem, 6cqw, 4.5rem);
                font-family: "Clicker Script";
                font-weight: bold;
            }

            & p {
                & em {
                    color: var(--empathy-color);

                    & .value-word {
                        color: var(--empathy-color);
                        font-weight: bold;
                    }
                }
            }
        }
    }
}
