/*
    OPALINE STUDIO — ABOUT PAGE

    This stylesheet contains only styles used by about.html.
    Shared navigation, buttons, footer and typography remain in style.css.
*/

/*
    ABOUT HERO
*/

/* Main About page Hero. */
.about-hero {
    position: relative;
    isolation: isolate;
    min-height: 92vh;
    padding: 0 var(--page-padding);
    color: var(--text-light);
    background:
        radial-gradient(
            circle at 74% 18%,
            rgba(169, 217, 234, 0.18),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(200, 183, 229, 0.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 17% 88%,
            rgba(239, 170, 138, 0.08),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #282e42 0%,
            var(--ink-soft) 42%,
            var(--ink) 100%
        );
    overflow: hidden;
}

/* Large editorial background word. */
.about-hero::before {
    content: "STUDIO";
    position: absolute;
    right: -3vw;
    bottom: -3vw;
    z-index: -1;
    font-family: var(--heading-font);
    font-size: clamp(12rem, 24vw, 27rem);
    font-weight: 600;
    line-height: 0.68;
    letter-spacing: -0.07em;
    color: rgba(255, 255, 255, 0.026);
    pointer-events: none;
}

/* Fine editorial grid. */
.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.014) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 35%,
            black
        );
    pointer-events: none;
}

/* Two-column About Hero layout. */
.about-hero-layout {
    display: grid;
    grid-template-columns: minmax(430px, 0.95fr) minmax(480px, 1.05fr);
    align-items: center;
    gap: clamp(60px, 7vw, 120px);
    min-height: 92vh;
    padding: 105px 0 90px;
}

/* Main About Hero copy. */
.about-hero-copy {
    position: relative;
    max-width: 730px;
}

/* Vertical editorial line beside the heading. */
.about-hero-copy::before {
    content: "";
    position: absolute;
    top: 4px;
    left: -34px;
    width: 1px;
    height: 120px;
    background:
        linear-gradient(
            to bottom,
            var(--opal-blue),
            var(--opal-lilac),
            transparent
        );
}

/* Main About page heading. */
.about-hero-copy h1 {
    max-width: 800px;
    margin-bottom: 35px;
    font-family: var(--heading-font);
    font-size: clamp(5rem, 7vw, 8rem);
    font-weight: 500;
    line-height: 0.82;
    letter-spacing: -0.05em;
    color: var(--white);
    text-wrap: balance;
}

/* About Hero introduction. */
.about-hero-copy > p {
    max-width: 590px;
    margin-bottom: 42px;
    font-size: 1.04rem;
    line-height: 1.92;
    color: rgba(255, 255, 255, 0.76);
}

/* About Hero button layout. */
.about-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* About Hero visual. */
.about-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 700px;
}

/* Main arched image frame. */
.about-hero-image-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(76%, 560px);
    aspect-ratio: 0.76;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 240px 240px 12px 12px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.72),
            rgba(169, 217, 234, 0.2),
            rgba(200, 183, 229, 0.18),
            rgba(239, 170, 138, 0.18)
        );
    box-shadow:
        0 42px 100px rgba(0, 0, 0, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.55);
    transform: translate(-50%, -50%);
}

/* Outer reflective contour. */
.about-hero-image-frame::before {
    content: "";
    position: absolute;
    inset: -24px;
    z-index: -1;
    border: 1px solid rgba(220, 228, 234, 0.45);
    border-radius: 260px 260px 16px 16px;
    box-shadow: 0 0 50px rgba(169, 217, 234, 0.08);
}

/* Inner reflective contour. */
.about-hero-image-frame::after {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 215px 215px 7px 7px;
    pointer-events: none;
}

/* Hero placeholder. */
.about-hero-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 228px 228px 6px 6px;
}

/* Real Hero image. */
.about-hero-image {
    width: 100%;
    height: 100%;
    border-radius: 228px 228px 6px 6px;
    object-fit: cover;
}

/* Establishment badge. */
.about-hero-badge {
    position: absolute;
    left: 4%;
    bottom: 10%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    min-width: 150px;
    padding: 24px 26px;
    border-top: 2px solid var(--opal-gold);
    color: var(--white);
    background:
        linear-gradient(
            145deg,
            #272d40,
            var(--ink)
        );
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

/* Establishment label. */
.about-hero-badge span {
    font-size: 0.62rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

/* Establishment year. */
.about-hero-badge strong {
    margin-top: 6px;
    font-family: var(--heading-font);
    font-size: 2.45rem;
    font-weight: 500;
}

/* Vertical decorative text. */
.about-hero-vertical-text {
    position: absolute;
    right: -22px;
    bottom: 60px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.45);
    writing-mode: vertical-rl;
}

/* Shared decorative Hero glow. */
.about-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    pointer-events: none;
}

/* Cool About Hero glow. */
.about-hero-glow-one {
    top: -120px;
    right: 20%;
    width: 360px;
    height: 360px;
    background-color: rgba(169, 217, 234, 0.11);
}

/* Warm About Hero glow. */
.about-hero-glow-two {
    right: -150px;
    bottom: 10px;
    width: 400px;
    height: 400px;
    background-color: rgba(239, 170, 138, 0.07);
}

/*
    STORY SECTION
*/

/* Story section background. */
.about-story-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

/* Large decorative word. */
.about-story-section::before {
    content: "STORY";
    position: absolute;
    right: -2vw;
    bottom: 30px;
    font-family: var(--heading-font);
    font-size: clamp(9rem, 18vw, 19rem);
    font-weight: 600;
    line-height: 0.7;
    letter-spacing: -0.06em;
    color: rgba(16, 19, 29, 0.023);
    pointer-events: none;
}

/* Story two-column layout. */
.about-story-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: clamp(70px, 8vw, 135px);
}

/* Story image composition. */
.about-story-visual {
    position: relative;
    filter: drop-shadow(0 32px 60px rgba(16, 19, 29, 0.1));
}

/* Decorative offset frame. */
.about-story-visual::before {
    content: "";
    position: absolute;
    inset: 22px -22px -22px 22px;
    z-index: -1;
    border: 1px solid rgba(143, 92, 102, 0.28);
    border-radius: 210px 210px 8px 8px;
}

/* Story placeholder. */
.about-story-placeholder {
    width: 100%;
    min-height: 640px;
    border-radius: 210px 210px 8px 8px;
}

/* Real story image. */
.about-story-image {
    width: 100%;
    height: 640px;
    border-radius: 210px 210px 8px 8px;
    object-fit: cover;
}

/* Story caption card. */
.about-story-caption {
    position: absolute;
    right: -35px;
    bottom: 42px;
    display: flex;
    flex-direction: column;
    max-width: 230px;
    padding: 28px;
    border-top: 2px solid var(--opal-gold);
    color: var(--white);
    background:
        linear-gradient(
            145deg,
            #272d40,
            var(--ink)
        );
    box-shadow: var(--shadow-soft);
}

/* Story caption label. */
.about-story-caption span {
    margin-bottom: 9px;
    font-size: 0.63rem;
    letter-spacing: 0.16em;
    color: var(--opal-peach);
    text-transform: uppercase;
}

/* Story caption statement. */
.about-story-caption strong {
    font-family: var(--heading-font);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.05;
}

/* Story content. */
.about-story-content {
    position: relative;
}

/* Main story heading. */
.about-story-content h2 {
    max-width: 780px;
    margin-bottom: 32px;
    font-family: var(--heading-font);
    font-size: clamp(4rem, 5.3vw, 6.2rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--ink);
}

/* Story paragraphs. */
.about-story-content p {
    max-width: 680px;
    margin-bottom: 23px;
    font-size: 1rem;
    line-height: 1.92;
}

/* Editorial signature. */
.about-story-signature {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

/* Signature name. */
.about-story-signature span {
    font-family: var(--heading-font);
    font-size: 2.1rem;
    font-style: italic;
    color: var(--rosewood);
}

/* Signature subtitle. */
.about-story-signature small {
    margin-top: 2px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/*
    STATISTICS
*/

/* Dark statistics strip. */
.about-statistics {
    padding: 70px var(--page-padding);
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            #2a3044,
            var(--ink)
        );
}

/* Statistics grid. */
.about-statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* Individual statistic. */
.about-statistics article {
    display: flex;
    flex-direction: column;
    min-height: 150px;
    padding: 15px 36px;
    border-right: 1px solid var(--dark-border);
}

/* Removes the last divider. */
.about-statistics article:last-child {
    border-right: 0;
}

/* Statistic value. */
.about-statistics strong {
    margin-bottom: 14px;
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
    color: transparent;
    background: var(--opal-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

/* Statistic label. */
.about-statistics span {
    max-width: 220px;
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

/*
    VALUES
*/

/* Values section background. */
.about-values-section {
    position: relative;
    background:
        linear-gradient(
            180deg,
            var(--pearl) 0%,
            #f5f1f5 100%
        );
    overflow: hidden;
}

/* Decorative background word. */
.about-values-section::before {
    content: "VALUES";
    position: absolute;
    left: -1vw;
    top: 60px;
    font-family: var(--heading-font);
    font-size: clamp(9rem, 18vw, 19rem);
    font-weight: 600;
    line-height: 0.7;
    letter-spacing: -0.06em;
    color: rgba(16, 19, 29, 0.023);
    pointer-events: none;
}

/* Values heading layout. */
.about-values-heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.65fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 80px;
}

/* Values heading. */
.about-values-heading h2 {
    max-width: 820px;
    font-family: var(--heading-font);
    font-size: clamp(4.1rem, 5.7vw, 6.5rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--ink);
}

/* Values introduction. */
.about-values-heading > p {
    max-width: 490px;
    font-size: 0.96rem;
    line-height: 1.9;
}

/* Values grid. */
.about-values-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual value card. */
.about-value-card {
    position: relative;
    min-height: 390px;
    padding: 38px 34px;
    overflow: hidden;
    border: 1px solid rgba(16, 19, 29, 0.08);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(241, 237, 246, 0.9)
        );
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

/* Value card hover. */
.about-value-card:hover {
    border-color: rgba(143, 92, 102, 0.2);
    box-shadow: 0 34px 72px rgba(16, 19, 29, 0.13);
    transform: translateY(-8px);
}

/* Value number. */
.about-value-card > span {
    display: block;
    margin-bottom: 55px;
    font-family: var(--heading-font);
    font-size: 1.7rem;
    font-weight: 600;
    color: rgba(16, 19, 29, 0.27);
}

/* Value icon container. */
.about-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 28px;
    border: 1px solid rgba(16, 19, 29, 0.1);
    border-radius: 50%;
    font-size: 1.45rem;
    color: var(--ink);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.88),
            rgba(169, 217, 234, 0.3),
            rgba(200, 183, 229, 0.24)
        );
    box-shadow: 0 15px 32px rgba(16, 19, 29, 0.1);
}

/* Value title. */
.about-value-card h3 {
    margin-bottom: 17px;
    font-family: var(--heading-font);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1;
    color: var(--ink);
}

/* Value description. */
.about-value-card p {
    font-size: 0.9rem;
    line-height: 1.82;
}

/*
    TEAM
*/

/* Team section background. */
.about-team-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

/* Decorative background word. */
.about-team-section::before {
    content: "TEAM";
    position: absolute;
    right: -1vw;
    bottom: 40px;
    font-family: var(--heading-font);
    font-size: clamp(10rem, 20vw, 22rem);
    font-weight: 600;
    line-height: 0.68;
    letter-spacing: -0.06em;
    color: rgba(16, 19, 29, 0.023);
    pointer-events: none;
}

/* Team heading layout. */
.about-team-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 78px;
}

/* Team heading. */
.about-team-heading h2 {
    max-width: 850px;
    font-family: var(--heading-font);
    font-size: clamp(4.1rem, 5.7vw, 6.5rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--ink);
}

/* Team grid. */
.about-team-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 30px;
}

/* Individual team card. */
.about-team-card {
    position: relative;
}

/* Offsets the centre team card. */
.about-team-card:nth-child(2) {
    margin-top: 45px;
}

/* Team image wrapper. */
.about-team-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 180px 180px 5px 5px;
    box-shadow: var(--shadow-card);
}

/* Team placeholder. */
.about-team-placeholder {
    width: 100%;
    min-height: 470px;
}

/* Real team image. */
.about-team-image {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

/* Team card content. */
.about-team-content {
    padding: 29px 8px 0;
}

/* Team role. */
.about-team-content > span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    color: var(--rosewood);
    text-transform: uppercase;
}

/* Team member name. */
.about-team-content h3 {
    margin-bottom: 13px;
    font-family: var(--heading-font);
    font-size: 2.65rem;
    font-weight: 600;
    line-height: 1;
    color: var(--ink);
}

/* Team biography. */
.about-team-content p {
    margin-bottom: 20px;
    font-size: 0.88rem;
    line-height: 1.78;
}

/* Team social link. */
.about-team-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--rosewood);
    text-transform: uppercase;
}

/*
    EXPERIENCE
*/

/* Studio experience background. */
.about-experience-section {
    position: relative;
    background:
        linear-gradient(
            180deg,
            #f5f1f5,
            var(--pearl)
        );
    overflow: hidden;
}

/* Experience two-column layout. */
.about-experience-layout {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: clamp(65px, 8vw, 130px);
}

/* Experience heading. */
.about-experience-content h2 {
    max-width: 720px;
    margin-bottom: 30px;
    font-family: var(--heading-font);
    font-size: clamp(4rem, 5.3vw, 6.2rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--ink);
}

/* Experience paragraph. */
.about-experience-content > p {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: 1rem;
    line-height: 1.9;
}

/* Experience feature list. */
.about-experience-list {
    display: grid;
    gap: 16px;
    margin-bottom: 38px;
}

/* Individual feature. */
.about-experience-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 0.88rem;
    color: var(--ink-muted);
}

/* Feature icon. */
.about-experience-list i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    font-size: 0.72rem;
    color: var(--ink);
    background-color: rgba(169, 217, 234, 0.34);
}

/* Experience image composition. */
.about-experience-visual {
    position: relative;
}

/* Experience placeholder. */
.about-experience-placeholder {
    width: 100%;
    min-height: 560px;
    border-radius: 6px 210px 6px 210px;
    box-shadow: var(--shadow-soft);
}

/* Real experience image. */
.about-experience-image {
    width: 100%;
    height: 560px;
    border-radius: 6px 210px 6px 210px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

/* Opaline note card. */
.about-experience-note {
    position: absolute;
    left: -34px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
    padding: 24px 27px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--ink);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(169, 217, 234, 0.3),
            rgba(200, 183, 229, 0.24)
        );
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}

/* Opaline note icon. */
.about-experience-note i {
    font-size: 1.5rem;
    color: var(--rosewood);
}

/* Opaline note text. */
.about-experience-note span {
    font-size: 0.78rem;
    line-height: 1.65;
}

/*
    RESPONSIVE DESIGN
*/

@media (max-width: 1199.98px) {

    /* Adds room for the fixed mobile header. */
    .about-hero {
        padding-top: 86px;
    }
}

@media (max-width: 991.98px) {

    /* Stacks the About Hero. */
    .about-hero-layout {
        grid-template-columns: 1fr;
        gap: 55px;
        min-height: auto;
        padding-top: 105px;
        padding-bottom: 90px;
    }

    /* Centres About Hero text. */
    .about-hero-copy {
        max-width: 820px;
        margin: 0 auto;
        text-align: center;
    }

    /* Removes the desktop vertical line. */
    .about-hero-copy::before {
        display: none;
    }

    /* Centres the About Hero label. */
    .about-hero-copy .section-label {
        justify-content: center;
    }

    /* Centres the About Hero introduction. */
    .about-hero-copy > p {
        margin-right: auto;
        margin-left: auto;
    }

    /* Centres the About Hero actions. */
    .about-hero-actions {
        justify-content: center;
    }

    /* Resizes About Hero visual. */
    .about-hero-visual {
        width: min(100%, 760px);
        min-height: 720px;
        margin: 0 auto;
    }

    /* Keeps the image large on tablets. */
    .about-hero-image-frame {
        width: min(72%, 550px);
    }

    /* Stacks story content. */
    .about-story-layout {
        grid-template-columns: 1fr;
    }

    /* Limits story image width. */
    .about-story-visual {
        width: min(100%, 720px);
        margin: 0 auto;
    }

    /* Keeps the story caption inside the viewport. */
    .about-story-caption {
        right: 20px;
    }

    /* Displays statistics in two columns. */
    .about-statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Adjusts statistic dividers. */
    .about-statistics article:nth-child(2) {
        border-right: 0;
    }

    /* Adds separation to the second row. */
    .about-statistics article:nth-child(n + 3) {
        padding-top: 35px;
        border-top: 1px solid var(--dark-border);
    }

    /* Stacks values heading. */
    .about-values-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Displays two value cards per row. */
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stacks team heading. */
    .about-team-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    /* Displays two team cards per row. */
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Removes the centre team offset. */
    .about-team-card:nth-child(2) {
        margin-top: 0;
    }

    /* Stacks the experience section. */
    .about-experience-layout {
        grid-template-columns: 1fr;
    }

    /* Limits experience image width. */
    .about-experience-visual {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    /* Keeps the experience note inside the viewport. */
    .about-experience-note {
        left: 25px;
    }
}

@media (max-width: 767.98px) {

    /* Reduces About Hero spacing. */
    .about-hero-layout {
        padding-top: 78px;
        padding-bottom: 70px;
    }

    /* Reduces About Hero heading. */
    .about-hero-copy h1 {
        font-size: clamp(4.2rem, 17vw, 6.2rem);
    }

    /* Stacks About Hero actions. */
    .about-hero-actions {
        flex-direction: column;
    }

    /* Makes the main About Hero button full-width. */
    .about-hero-actions .primary-button {
        width: 100%;
    }

    /* Reduces About Hero visual height. */
    .about-hero-visual {
        min-height: 590px;
    }

    /* Resizes the Hero image frame. */
    .about-hero-image-frame {
        width: min(82%, 500px);
        border-radius: 190px 190px 10px 10px;
    }

    /* Matches the Hero placeholder shape. */
    .about-hero-placeholder,
    .about-hero-image {
        border-radius: 180px 180px 5px 5px;
    }

    /* Hides the vertical decorative text. */
    .about-hero-vertical-text {
        display: none;
    }

    /* Moves the establishment badge. */
    .about-hero-badge {
        left: 2%;
        bottom: 4%;
    }

    /* Reduces story image height. */
    .about-story-placeholder,
    .about-story-image {
        min-height: 520px;
        height: 520px;
        border-radius: 135px 135px 6px 6px;
    }

    /* Matches the story decorative frame. */
    .about-story-visual::before {
        border-radius: 135px 135px 6px 6px;
    }

    /* Stacks statistics. */
    .about-statistics-grid {
        grid-template-columns: 1fr;
    }

    /* Resets statistic borders. */
    .about-statistics article,
    .about-statistics article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--dark-border);
    }

    /* Removes the last statistic border. */
    .about-statistics article:last-child {
        border-bottom: 0;
    }

    /* Keeps all rows evenly spaced. */
    .about-statistics article:nth-child(n + 3) {
        border-top: 0;
    }

    /* Displays one value card per row. */
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    /* Displays one team card per row. */
    .about-team-grid {
        grid-template-columns: 1fr;
    }

    /* Reduces team image height. */
    .about-team-placeholder,
    .about-team-image {
        min-height: 450px;
        height: 450px;
    }

    /* Reduces experience image height. */
    .about-experience-placeholder,
    .about-experience-image {
        min-height: 470px;
        height: 470px;
        border-radius: 5px 130px 5px 130px;
    }

    /* Moves the experience note. */
    .about-experience-note {
        right: 20px;
        left: 20px;
        bottom: 20px;
        max-width: none;
    }
}

@media (max-width: 479.98px) {

    /* Reduces About Hero visual height. */
    .about-hero-visual {
        min-height: 520px;
    }

    /* Makes the Hero image wider on small screens. */
    .about-hero-image-frame {
        width: 90%;
    }

    /* Reduces establishment badge size. */
    .about-hero-badge {
        min-width: 130px;
        padding: 20px 22px;
    }

    /* Reduces team image height. */
    .about-team-placeholder,
    .about-team-image {
        min-height: 400px;
        height: 400px;
    }
}
