/* 關於敬軍：城市政策專題 */
html.is-about-wheel-smoothing {
    scroll-behavior: auto;
}

.about-hero {
    min-height: 100vh;
    min-height: 100svh;
}

.about-hero-layout {
    align-items: center;
    grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
    gap: 18px clamp(56px, 8vw, 130px);
}

.about-hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-column: 2;
    grid-row: 1 / 4;
    margin: 0;
    padding: 0 0 30px 42px;
}

.about-hero-visual picture {
    display: block;
    grid-column: 1;
    grid-row: 1;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #d9d5ca;
    box-shadow: 0 30px 70px rgba(16, 37, 45, 0.18);
}

.about-hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
}

.about-hero-visual figcaption {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    justify-self: end;
    margin: 0 12px 12px 0;
    padding: 5px 8px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(8, 12, 15, 0.56);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
}

.about-hero-statement {
    position: relative;
    display: flex;
    grid-column: 1;
    grid-row: 2;
    width: min(86%, 640px);
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: clamp(30px, 3.4vw, 48px);
    overflow: hidden;
    color: #fffdf8;
    background:
        linear-gradient(135deg, rgba(212, 169, 82, 0.1), transparent 48%),
        var(--navy);
    box-shadow: 0 28px 70px rgba(16, 37, 45, 0.28);
}

.about-hero-statement::before,
.about-hero-statement::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.about-hero-statement::before {
    inset: 14px;
    border: 1px solid rgba(241, 210, 139, 0.32);
}

.about-hero-statement::after {
    top: 0;
    right: 18%;
    width: 120px;
    height: 4px;
    background: var(--gold);
}

.about-label,
.about-media-status {
    margin: 0 0 18px;
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.26em;
}

.about-hero-statement h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    font-family: var(--display-font);
    font-size: clamp(1.8rem, 2.7vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.45;
}

.about-hero-statement > p:not(.about-label) {
    position: relative;
    z-index: 1;
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.85;
}

.about-text-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 16px;
    min-height: 44px;
    margin-top: 24px;
    padding: 7px 0;
    color: #fff;
    border-bottom: 1px solid rgba(241, 210, 139, 0.6);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.about-text-link span {
    color: var(--gold-light);
    transition: transform 180ms ease;
}

.about-text-link:hover,
.about-text-link:focus-visible {
    color: var(--gold-light);
}

.about-text-link:hover span,
.about-text-link:focus-visible span {
    transform: translateY(4px);
}

[data-page="about"].has-scroll-reveal .about-reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 950ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-page="about"].has-scroll-reveal .about-reveal[data-reveal-direction="left"] {
    transform: translate3d(-28px, 0, 0);
}

[data-page="about"].has-scroll-reveal .about-reveal[data-reveal-direction="right"] {
    transform: translate3d(28px, 0, 0);
}

[data-page="about"].has-scroll-reveal .about-reveal.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-page="about"] .about-hero .inner-page-kicker,
[data-page="about"] .about-hero #page-title,
[data-page="about"] .about-hero .inner-page-lead,
[data-page="about"] .about-hero-visual > picture,
[data-page="about"] .about-hero-visual > figcaption,
[data-page="about"] .about-hero-statement {
    --about-hero-enter-x: 0;
    --about-hero-enter-y: 0;
    animation: about-hero-enter 950ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-page="about"] .about-hero .inner-page-kicker {
    --about-hero-enter-x: -28px;
}

[data-page="about"] .about-hero #page-title {
    --about-hero-enter-x: -28px;
    animation-delay: 80ms;
}

[data-page="about"] .about-hero .inner-page-lead {
    --about-hero-enter-x: -28px;
    animation-delay: 160ms;
}

[data-page="about"] .about-hero-visual > picture,
[data-page="about"] .about-hero-visual > figcaption {
    --about-hero-enter-x: 28px;
    animation-delay: 100ms;
}

[data-page="about"] .about-hero-statement {
    --about-hero-enter-y: 24px;
    animation-delay: 260ms;
}

@keyframes about-hero-enter {
    from {
        opacity: 0;
        transform: translate3d(var(--about-hero-enter-x), var(--about-hero-enter-y), 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-page="about"] .about-hero .inner-page-kicker,
    [data-page="about"] .about-hero #page-title,
    [data-page="about"] .about-hero .inner-page-lead,
    [data-page="about"] .about-hero-visual > picture,
    [data-page="about"] .about-hero-visual > figcaption,
    [data-page="about"] .about-hero-statement {
        animation: none;
    }
}

.about-section {
    position: relative;
    overflow: hidden;
    padding: clamp(84px, 8.5vw, 132px) 0;
    color: var(--navy);
}

.about-section-shell {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(440px, 1.18fr);
    align-items: start;
    gap: clamp(50px, 7vw, 112px);
    padding-inline: clamp(24px, 7vw, 110px);
}

.about-section-heading {
    position: relative;
    display: block;
    min-width: 0;
    padding: clamp(30px, 3.5vw, 54px) 0 0 clamp(48px, 4vw, 64px);
}

.about-section-heading > div {
    position: relative;
    z-index: 1;
}

.about-heading-with-glyph {
    position: relative;
    padding-top: clamp(30px, 3.5vw, 54px);
    padding-left: clamp(48px, 4vw, 64px);
}

.about-heading-with-glyph > :not(.about-section-number) {
    position: relative;
    z-index: 1;
}

.about-section-number {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    margin: -0.16em 0 0;
    color: rgba(16, 37, 45, 0.13);
    font-family: var(--display-font);
    font-size: clamp(4.5rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.about-section-heading h2,
.about-impact-heading h2,
.about-media-heading h2,
.about-cta h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(2.45rem, 4.4vw, 4.7rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.35;
}

.about-section-heading h2 {
    font-size: clamp(2.4rem, 3.1vw, 3.25rem);
    line-height: 1.48;
    text-wrap: balance;
}

.about-origin {
    background:
        linear-gradient(105deg, transparent 0 69%, rgba(16, 37, 45, 0.045) 69% 69.14%, transparent 69.14%),
        var(--paper);
}

.about-origin::after {
    position: absolute;
    right: -90px;
    bottom: -170px;
    width: 420px;
    height: 420px;
    content: "";
    border: 1px solid rgba(212, 169, 82, 0.22);
    border-radius: 50%;
}

.about-origin-copy {
    position: relative;
    padding-left: clamp(28px, 4vw, 58px);
    border-left: 2px solid var(--gold);
}

.about-origin-copy p {
    margin: 0 0 24px;
    color: #496067;
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    line-height: 2.05;
}

.about-origin-copy p:last-child {
    margin-bottom: 0;
}

.about-origin-copy .about-dropcap {
    color: var(--navy);
    font-family: var(--display-font);
    font-size: clamp(1.24rem, 1.7vw, 1.48rem);
    font-weight: 600;
}

.about-dropcap::first-letter {
    float: left;
    margin: 0.08em 0.12em 0 0;
    color: #9d7426;
    font-size: 3.7em;
    font-weight: 900;
    line-height: 0.8;
}

.about-photo {
    position: relative;
    margin: 0;
}

.about-photo picture {
    display: block;
    overflow: hidden;
    background: #d9d5ca;
}

.about-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo figcaption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
    color: var(--navy);
    border-top: 1px solid rgba(16, 37, 45, 0.2);
}

.about-photo figcaption span {
    font-family: var(--display-font);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.about-photo figcaption small {
    color: #68777b;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-align: right;
}

.about-photo-recovery {
    grid-column: 1 / -1;
    width: calc(100% - clamp(0px, 7vw, 104px));
    margin-top: clamp(8px, 2vw, 28px);
    margin-left: auto;
}

.about-photo-recovery picture {
    aspect-ratio: 16 / 7.2;
    border-left: 5px solid var(--gold);
}

.about-photo-recovery img {
    object-position: center 48%;
}

.about-beliefs {
    color: rgba(255, 255, 255, 0.84);
    background:
        radial-gradient(circle at 88% 10%, rgba(212, 169, 82, 0.14), transparent 29%),
        linear-gradient(145deg, #10252d, #0c1c22);
}

.about-beliefs::before {
    position: absolute;
    inset: 0 auto 0 7%;
    width: 1px;
    content: "";
    background: rgba(212, 169, 82, 0.2);
}

.about-section-heading-light .about-section-number,
.about-media .about-section-number,
.about-cta .about-section-number {
    color: rgba(255, 255, 255, 0.08);
}

.about-section-heading-light h2 {
    color: #fffdf8;
}

.about-belief-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-belief-list li {
    display: grid;
    grid-template-columns: 70px minmax(260px, 0.72fr) minmax(320px, 1.28fr);
    align-items: center;
    gap: clamp(20px, 3vw, 50px);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-belief-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-belief-index {
    align-self: center;
    justify-self: center;
    color: var(--gold-light);
    font-family: var(--display-font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    text-orientation: upright;
    writing-mode: vertical-rl;
}

.about-belief-list h3 {
    margin: 0;
    color: #fff;
    font-family: var(--display-font);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.about-belief-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.85;
}

.about-impact {
    background:
        radial-gradient(circle at 14% 36%, rgba(212, 169, 82, 0.16), transparent 30%),
        #e9e1d2;
}

.about-impact-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.62fr) minmax(620px, 1.38fr);
    align-items: start;
    gap: clamp(54px, 7vw, 110px);
    padding-inline: clamp(24px, 7vw, 110px);
}

.about-impact-heading h2::after {
    display: block;
    width: 86px;
    height: 3px;
    margin-top: 30px;
    content: "";
    background: var(--gold);
}

.about-impact-stories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2.8vw, 42px);
    align-items: start;
}

.about-impact-story {
    min-width: 0;
}

.about-impact-story:nth-child(2) {
    margin-top: clamp(54px, 5vw, 84px);
}

.about-impact-story:nth-child(3) {
    margin-top: clamp(20px, 2vw, 34px);
}

.about-impact-story-copy {
    min-height: 250px;
    padding: 22px 10px 30px;
    border-top: 1px solid rgba(16, 37, 45, 0.22);
}

.about-impact-story-copy > p {
    margin: 0 0 32px;
    color: #9d7426;
    font-family: var(--display-font);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.about-impact-story h3 {
    margin: 0 0 16px;
    font-family: var(--display-font);
    font-size: clamp(1.4rem, 1.8vw, 1.9rem);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.about-impact-story-copy span {
    color: #526267;
    line-height: 1.85;
}

.about-impact-story picture {
    aspect-ratio: 4 / 3;
}

.about-practice {
    background:
        linear-gradient(160deg, rgba(212, 169, 82, 0.08), transparent 38%),
        var(--paper);
}

.about-practice-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(32px, 4vw, 60px);
}

.about-practice-list article {
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px 0 26px;
    border-top: 1px solid rgba(16, 37, 45, 0.22);
}

.about-practice-list h3 {
    margin: 0 0 12px;
    font-family: var(--display-font);
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.about-practice-list p {
    margin: 0;
    color: #526267;
    line-height: 1.85;
}

.about-practice-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: 2;
    gap: clamp(20px, 2.4vw, 34px);
    align-items: start;
    margin-top: 22px;
}

.about-practice-gallery picture {
    aspect-ratio: 4 / 3;
}

.about-photo-community {
    margin-right: 0;
}

.about-photo-readiness {
    margin-top: 38px;
}

.about-photo-readiness picture {
    aspect-ratio: 4 / 3;
}

.about-media {
    color: rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(120deg, rgba(212, 169, 82, 0.1), transparent 42%),
        var(--ink);
}

.about-media::after {
    position: absolute;
    top: -230px;
    right: -170px;
    width: 560px;
    height: 560px;
    content: "";
    border: 1px solid rgba(212, 169, 82, 0.14);
    border-radius: 50%;
}

.about-media-shell {
    position: relative;
    z-index: 1;
    padding-inline: clamp(24px, 7vw, 110px);
}

.about-media-heading {
    display: grid;
    grid-template-columns: minmax(440px, 1.05fr) minmax(400px, 0.95fr);
    gap: 18px clamp(60px, 8vw, 130px);
    align-items: end;
    margin-bottom: clamp(38px, 4vw, 58px);
}

.about-media-heading .section-kicker,
.about-media-heading h2 {
    grid-column: 1;
}

.about-media-heading h2 {
    color: #fff;
}

.about-media-heading > p:last-child {
    grid-column: 2;
    grid-row: 1 / 3;
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1.05rem;
    line-height: 2;
}

.about-media-feature {
    position: relative;
    display: grid;
    min-height: 400px;
    grid-template-columns: minmax(520px, 1.18fr) minmax(380px, 0.82fr);
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(212, 169, 82, 0.12), transparent 55%),
        #142b34;
    border: 1px solid rgba(241, 210, 139, 0.28);
}

.about-media-feature::after {
    position: absolute;
    inset: 14px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.about-media-visual {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #0d1e25;
}

.about-media-visual picture,
.about-media-visual img {
    display: block;
    width: 100%;
    height: 100%;
}

.about-media-visual img {
    object-fit: cover;
}

.about-media-feature > .about-media-visual {
    min-height: 400px;
}

.about-media-visual figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 5px 10px;
    color: var(--gold-light);
    background: rgba(7, 16, 20, 0.78);
    border: 1px solid rgba(241, 210, 139, 0.34);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    backdrop-filter: blur(8px);
}

.about-media-feature-copy {
    position: relative;
    z-index: 1;
    padding: clamp(36px, 4.5vw, 64px);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-media-feature-copy h3 {
    margin: 0 0 24px;
    color: #fff;
    font-family: var(--display-font);
    font-size: clamp(2rem, 3.7vw, 3.6rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.about-media-feature-copy > p:not(.about-media-status) {
    max-width: 610px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.02rem;
    line-height: 1.9;
}

.about-media-feature-copy > span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 5px 14px;
    color: var(--gold-light);
    border: 1px solid rgba(241, 210, 139, 0.45);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.about-media-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
    gap: 30px;
}

.about-media-secondary article {
    min-width: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.035);
    border-top: 1px solid rgba(241, 210, 139, 0.36);
}

.about-media-secondary article > .about-media-visual {
    aspect-ratio: 16 / 9;
}

.about-media-secondary-copy {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 26px;
    padding: clamp(26px, 3vw, 40px);
}

.about-media-order {
    margin: 0;
    color: rgba(255, 255, 255, 0.11);
    font-family: var(--display-font);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
}

.about-media-secondary h3 {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--display-font);
    font-size: clamp(1.5rem, 2.3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.about-media-secondary-copy > div > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.8;
}

.about-cta {
    position: relative;
    padding: clamp(72px, 7vw, 104px) 0;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.about-cta::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 37%;
    width: 1px;
    content: "";
    background: rgba(212, 169, 82, 0.22);
    transform: rotate(16deg);
}

.about-cta-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) auto;
    align-items: end;
    gap: 60px;
    padding-inline: clamp(24px, 7vw, 110px);
}

.about-cta h2 {
    max-width: 760px;
}

.about-cta-layout > div > p:last-child {
    max-width: 590px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.9;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.about-cta-actions a {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.about-action-primary {
    color: var(--navy);
    background: var(--gold-light);
    border: 1px solid var(--gold-light);
}

.about-action-primary:hover,
.about-action-primary:focus-visible {
    color: var(--navy);
    background: #fff3d6;
    border-color: #fff3d6;
}

.about-action-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.about-action-secondary:hover,
.about-action-secondary:focus-visible {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

@media (min-width: 992px) {
    .about-impact-layout {
        grid-template-columns: minmax(620px, 1fr) minmax(280px, 0.34fr);
        align-items: stretch;
        gap: clamp(48px, 4vw, 72px);
        padding-inline: clamp(24px, 3vw, 54px);
    }

    .about-impact-heading {
        display: grid;
        grid-column: 2;
        grid-row: 1;
        align-content: start;
        justify-items: end;
        min-height: 650px;
        padding: clamp(48px, 5vw, 76px) 0 0;
        border-right: 1px solid rgba(157, 116, 38, 0.28);
    }

    .about-impact-heading .about-section-number {
        right: 18px;
        left: auto;
    }

    .about-impact-heading .section-kicker {
        margin: 0 34px 34px 0;
        white-space: nowrap;
    }

    .about-impact-heading h2 {
        position: relative;
        display: flex;
        flex-direction: row-reverse;
        gap: clamp(16px, 1.45vw, 28px);
        padding: 0 34px 0 32px;
        font-size: clamp(2.65rem, 3.55vw, 4.15rem);
        line-height: 1;
        letter-spacing: 0.08em;
    }

    .about-impact-heading h2 span {
        white-space: nowrap;
        text-orientation: upright;
        writing-mode: vertical-rl;
    }

    .about-impact-heading h2::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 3px;
        height: 88px;
        margin: 0;
    }

    .about-impact-stories {
        grid-column: 1;
        grid-row: 1;
    }

    .about-impact-story {
        grid-row: 1;
    }

    .about-impact-story:nth-child(1) {
        grid-column: 3;
    }

    .about-impact-story:nth-child(2) {
        grid-column: 2;
    }

    .about-impact-story:nth-child(3) {
        grid-column: 1;
    }

    .about-impact-story:nth-child(2),
    .about-impact-story:nth-child(3) {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .about-impact-story:nth-child(2) {
        margin-top: clamp(32px, 3vw, 48px);
    }

    .about-impact-story:nth-child(3) {
        margin-top: clamp(64px, 6vw, 96px);
    }
}

@media (max-width: 991.98px) {
    .about-hero-layout,
    .about-section-shell,
    .about-impact-layout {
        grid-template-columns: 1fr;
    }

    .about-hero-visual {
        grid-column: 1;
        grid-row: auto;
        width: min(760px, 100%);
        margin-inline: auto;
    }

    .about-section-heading {
        max-width: 670px;
    }

    .about-photo-recovery {
        width: 100%;
        margin-left: 0;
    }

    .about-practice-gallery {
        grid-column: 1;
    }

    .about-belief-list li {
        grid-template-columns: 64px minmax(180px, 0.7fr) minmax(260px, 1fr);
    }

    .about-media-heading {
        grid-template-columns: 1fr;
    }

    .about-media-heading .section-kicker,
    .about-media-heading h2,
    .about-media-heading > p:last-child {
        grid-column: 1;
        grid-row: auto;
    }

    .about-media-feature {
        grid-template-columns: minmax(380px, 1fr) minmax(340px, 0.9fr);
    }

    .about-media-secondary-copy {
        grid-template-columns: 60px 1fr;
    }

    .about-cta-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .about-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding-bottom: 48px;
    }

    .about-hero-layout {
        gap: 28px;
    }

    .about-hero-visual {
        padding: 0;
    }

    .about-hero-visual picture {
        aspect-ratio: 4 / 3;
    }

    .about-hero-visual figcaption {
        align-self: start;
        margin: 8px 8px 0 0;
    }

    .about-hero-statement {
        width: auto;
        min-height: 0;
        margin: 0 12px;
        padding: 38px 26px 34px;
    }

    .about-hero-statement h2 {
        font-size: clamp(1.8rem, 8.3vw, 2.6rem);
    }

    .about-section {
        padding: 72px 0;
    }

    .about-section-shell,
    .about-impact-layout,
    .about-media-shell,
    .about-cta-layout {
        gap: 38px;
        padding-inline: 24px;
    }

    .about-section-heading {
        display: grid;
        grid-template-columns: 58px 1fr;
        gap: 14px;
        padding: 0;
    }

    .about-section-number {
        position: absolute;
        font-size: 4.2rem;
    }

    .about-section-heading > div {
        grid-column: 2;
    }

    .about-heading-with-glyph {
        padding-top: 30px;
        padding-left: 48px;
    }

    .about-section-heading h2,
    .about-impact-heading h2,
    .about-media-heading h2,
    .about-cta h2 {
        font-size: clamp(2.15rem, 10.5vw, 3.1rem);
    }

    .about-cta h2 {
        font-size: clamp(2rem, 9vw, 2.65rem);
    }

    .about-origin-copy {
        padding-left: 24px;
    }

    .about-photo picture {
        aspect-ratio: 4 / 3;
    }

    .about-photo figcaption {
        display: grid;
        gap: 8px;
    }

    .about-photo figcaption small {
        text-align: left;
    }

    .about-photo-recovery {
        margin-top: 0;
    }

    .about-photo-recovery picture {
        border-left-width: 3px;
    }


    .about-beliefs::before {
        left: 24px;
    }

    .about-belief-list li {
        grid-template-columns: 44px 1fr;
        align-items: start;
        gap: 10px 16px;
        padding: 24px 0;
    }

    .about-belief-index {
        align-self: start;
    }

    .about-belief-list h3,
    .about-belief-list p {
        grid-column: 2;
    }

    .about-belief-list p {
        margin-top: 6px;
    }

    .about-impact-stories {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .about-impact-story:nth-child(2),
    .about-impact-story:nth-child(3) {
        margin-top: 0;
    }

    .about-impact-story-copy {
        min-height: 0;
        padding: 22px 0 26px;
    }

    .about-impact-story-copy > p {
        margin-bottom: 18px;
    }

    .about-practice-list {
        grid-template-columns: 1fr;
    }

    .about-practice-gallery {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 4px;
    }

    .about-photo-community {
        margin-right: 0;
    }

    .about-photo-readiness {
        margin-top: 0;
    }

    .about-media-heading {
        margin-bottom: 42px;
    }

    .about-media-feature {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .about-media-feature > .about-media-visual {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .about-media-feature-copy {
        padding: 34px 26px 38px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .about-media-secondary {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-media-secondary-copy {
        grid-template-columns: 58px 1fr;
        gap: 18px;
        padding: 30px 24px;
    }

    .about-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-cta-actions a {
        width: 100%;
    }
}

@media (max-width: 374.98px) {
    .about-hero-statement {
        padding-inline: 26px;
    }

    .about-section-shell,
    .about-impact-layout,
    .about-media-shell,
    .about-cta-layout {
        padding-inline: 20px;
    }

    .about-section-heading {
        grid-template-columns: 48px 1fr;
    }

    .about-section-number {
        font-size: 3.6rem;
    }

    .about-media-secondary-copy {
        grid-template-columns: 1fr;
    }
}
