/* ===================================
    CEO profile page (/Rumia-Akter-Ruma)
    Loaded by that page only, after founder.css: the hero, portrait, chips, tags and contact panel
    are the pf-* pieces of the founder page, and everything specific to this page is ex-*.
====================================== */

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
/* in-page links and the year chips stop below the fixed header */
#about-rumia,
#journey,
#expertise,
#projects,
#vision,
#education,
#connect,
.ex-step {
    scroll-margin-top: 90px;
}

/* hero */
.ex-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--secondary-color-light);
}
.ex-hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--secondary-color-light);
}
.ex-hero .pf-hero-title {
    margin-bottom: 22px;
}
.ex-hero-tagline {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.8px;
    color: #fff;
    margin-bottom: 18px;
}
/* three sentences, three lines: the last one is the point, so the first two step back */
.ex-hero-tagline span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
}
.ex-hero-tagline span:last-child {
    color: #fff;
}
.ex-hero .pf-hero-role {
    font-size: 17px;
    letter-spacing: 0.4px;
    margin-bottom: 34px;
}

/* highlights */
.ex-stats .bd-stat-value small {
    margin-left: 8px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--medium-gray);
}
.ex-stats .bd-stat-value i {
    font-size: 36px;
    color: var(--base-color);
}
/* the count-up must not change the width of the card while it runs */
.ex-stats [data-count] {
    font-variant-numeric: tabular-nums;
}

/* introduction */
.ex-intro {
    padding-bottom: 90px;
}
.ex-intro-text {
    max-width: 960px;
    margin: 0 auto 40px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -1.2px;
    text-align: center;
    color: var(--dark-gray);
}
.ex-intro-text span {
    color: var(--medium-gray);
}
.ex-path {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: var(--dark-gray);
}
.ex-path li {
    display: inline-flex;
    align-items: center;
}
.ex-path li:not(:last-child)::after {
    content: '';
    width: 22px;
    height: 1px;
    margin: 0 12px;
    background: var(--extra-medium-gray);
}
.ex-path li:last-child {
    padding: 2px 14px;
    border-radius: 50px;
    background: var(--base-color);
    color: #fff;
}

/* what she brings together */
.ex-pillars,
.ex-principles {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ex-pillar,
.ex-principles li {
    display: flex;
    gap: 22px;
    padding: 18px 0;
    border-top: 1px solid var(--extra-medium-gray);
}
.ex-pillar:last-child,
.ex-principles li:last-child {
    border-bottom: 1px solid var(--extra-medium-gray);
}
.ex-pillar-index {
    flex-shrink: 0;
    width: 28px;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    color: var(--secondary-color-text);
}
.ex-pillar-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--dark-gray);
}
.ex-pillar p,
.ex-principles p {
    font-size: 15px;
    line-height: 25px;
    margin: 2px 0 0;
}

/* career timeline: year chips on top, the rail and its cards underneath */
.ex-years {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 60px;
}
.ex-year {
    padding: 7px 18px;
    border: 1px solid var(--extra-medium-gray);
    border-radius: 50px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: var(--medium-gray);
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.ex-year:hover {
    border-color: var(--base-color);
    color: var(--base-color);
}
.ex-year.is-active {
    border-color: var(--base-color);
    background: var(--base-color);
    color: #fff;
}
.ex-timeline {
    --ex-rail: 170px;
    --ex-progress: 0;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
/* the rail, and over it the part already scrolled past (ceo.js sets --ex-progress from 0 to 1) */
.ex-timeline::before,
.ex-timeline::after {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: var(--ex-rail);
    width: 2px;
    margin-left: -1px;
    border-radius: 2px;
    background: var(--extra-medium-gray);
}
.ex-timeline::after {
    background: linear-gradient(to bottom, var(--secondary-color), var(--base-color));
    transform: scaleY(var(--ex-progress));
    transform-origin: top;
}
.ex-step {
    position: relative;
    display: grid;
    grid-template-columns: var(--ex-rail) 1fr;
    padding-bottom: 34px;
}
.ex-step:last-child {
    padding-bottom: 0;
}
.ex-step-year {
    padding: 22px 40px 0 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.8px;
    text-align: right;
    white-space: nowrap;
    color: var(--medium-gray);
    transition: color 0.3s ease;
}
.ex-step-node {
    position: absolute;
    z-index: 1;
    top: 30px;
    left: var(--ex-rail);
    width: 16px;
    height: 16px;
    margin-left: -8px;
    border: 2px solid var(--extra-medium-gray);
    border-radius: 50%;
    background: #fff;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.ex-step.is-passed .ex-step-year {
    color: var(--dark-gray);
}
.ex-step.is-passed .ex-step-node {
    border-color: var(--base-color);
    background: var(--base-color);
}
.ex-step.is-current .ex-step-node {
    box-shadow: 0 0 0 6px rgba(var(--base-color-rgb), 0.14);
}
.ex-step-card {
    margin-left: 40px;
    padding: 28px 30px 30px;
    border: 1px solid var(--extra-medium-gray);
    border-radius: 16px;
    background: #fff;
    transition: transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ex-step-card:hover,
.ex-step.is-current .ex-step-card {
    border-color: transparent;
    box-shadow: 0 25px 50px rgba(29, 29, 58, 0.10);
}
.ex-step-card:hover {
    transform: translateY(-3px);
}
.ex-step-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.ex-step-role {
    font-size: 21px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: var(--dark-gray);
    margin: 0;
}
.ex-step-org {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: var(--secondary-color-text);
}
.ex-step-card p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 18px;
}
/* 2026: the chapter the rest of the timeline leads to */
.ex-step--highlight .ex-step-card,
.ex-step--highlight.is-current .ex-step-card {
    border-color: transparent;
    background-color: var(--charcoal-blue);
    background-image: radial-gradient(circle at 100% 0%, rgba(var(--secondary-color-rgb), 0.28), transparent 55%);
    color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 30px 60px rgba(21, 23, 63, 0.28);
}
.ex-step--highlight .ex-step-role {
    color: #fff;
}
.ex-step--highlight .ex-step-org {
    color: var(--secondary-color-light);
}
.ex-step--highlight .pf-icon {
    color: var(--charcoal-blue);
    background-image: linear-gradient(135deg, var(--secondary-color-light), var(--secondary-color));
}
.ex-step--highlight .pf-tags li {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

/* reveal on scroll: only once ceo.js is running, so the content is never hidden without it */
.ex-js .ex-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.ex-js .ex-reveal.is-in {
    opacity: 1;
    transform: none;
}
/* a timeline step is a scroll target of the year chips, and an offset on the step itself would move where
   the jump lands: the step only fades, and the slide happens on the card inside it */
.ex-js .ex-step.ex-reveal {
    transform: none;
}
.ex-js .ex-step.ex-reveal:not(.is-in) .ex-step-card {
    transform: translateY(28px);
}

/* the progression under the timeline */
.ex-ladder {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 30px 34px 34px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(29, 29, 58, 0.05);
}
.ex-ladder-label {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--medium-gray);
}
.ex-ladder ol {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}
.ex-ladder li {
    position: relative;
    padding: 22px 16px 0 0;
    border-top: 2px solid var(--extra-medium-gray);
}
.ex-ladder li::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--base-color);
    box-shadow: 0 0 0 4px #fff;
}
.ex-ladder li:not(:last-child) {
    border-top-color: var(--base-color);
}
.ex-ladder li.is-current {
    border-top-color: transparent;
}
.ex-ladder li.is-current::before {
    background: var(--secondary-color);
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(var(--secondary-color-rgb), 0.35);
}
.ex-ladder-year {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    color: var(--secondary-color-text);
}
.ex-ladder strong {
    display: block;
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
    color: var(--dark-gray);
}

/* leadership & expertise */
.ex-card {
    height: 100%;
    padding: 32px 30px 30px;
    border: 1px solid var(--extra-medium-gray);
    border-radius: 16px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ex-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 25px 50px rgba(29, 29, 58, 0.10);
}
.ex-card .pf-icon {
    transition: color 0.3s ease, background-color 0.3s ease;
}
.ex-card:hover .pf-icon {
    color: #fff;
    background: var(--base-color);
}
.ex-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.3px;
    color: var(--dark-gray);
    margin: 22px 0 8px;
}
.ex-card p {
    font-size: 15px;
    line-height: 26px;
    margin: 0;
}

/* selected projects */
.ex-project {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 34px 36px 32px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(29, 29, 58, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* an accent line that draws in on hover */
.ex-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--base-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.ex-project:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(29, 29, 58, 0.12);
}
.ex-project:hover::before {
    transform: scaleX(1);
}
.ex-project-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}
.ex-project-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background-image: linear-gradient(140deg, var(--base-color), var(--brand-mid));
}
.ex-project-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 14px 4px 12px;
    border-radius: 50px;
    background: var(--secondary-color-tint);
    color: var(--secondary-color-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
}
.ex-project-index {
    margin-left: auto;
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--base-color-tint);
    -webkit-text-stroke: 1px var(--extra-medium-gray);
}
.ex-project-name {
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.8px;
    color: var(--dark-gray);
    margin-bottom: 4px;
}
.ex-project-kind {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 24px;
}
.ex-project-meta {
    margin: auto 0 0;
}
.ex-project-meta div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding: 11px 0;
    border-top: 1px solid var(--extra-medium-gray);
    font-size: 15px;
    line-height: 24px;
}
.ex-project-meta dt {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--medium-gray);
}
.ex-project-meta dd {
    margin: 0;
    font-weight: 500;
    color: var(--dark-gray);
}

/* future vision: the second dark band, the same navy and grid as the hero */
.ex-vision {
    background-color: var(--charcoal-blue);
    background-image: radial-gradient(circle at 12% 15%, rgba(var(--secondary-color-rgb), 0.20), transparent 42%),
        radial-gradient(circle at 95% 95%, rgba(var(--base-color-rgb), 0.60), transparent 50%);
    color: rgba(255, 255, 255, 0.72);
}
.ex-vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse at 70% 50%, #000 10%, transparent 70%);
    mask-image: radial-gradient(ellipse at 70% 50%, #000 10%, transparent 70%);
    pointer-events: none;
}
.ex-vision-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--secondary-color-light);
}
.ex-vision-title {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 22px;
}
.ex-vision p {
    max-width: 520px;
    font-size: 17px;
    line-height: 30px;
}
.ex-focus {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ex-focus li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 19px;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.ex-focus li:hover {
    transform: translateX(6px);
    border-color: rgba(var(--secondary-color-rgb), 0.55);
    background: rgba(255, 255, 255, 0.09);
}
.ex-focus i {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--secondary-color-light);
}

/* education */
.ex-degrees {
    display: grid;
    gap: 18px;
}
.ex-degree {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 30px 32px;
    border: 1px solid var(--extra-medium-gray);
    border-radius: 16px;
    background: #fff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.ex-degree:hover {
    border-color: transparent;
    box-shadow: 0 25px 50px rgba(29, 29, 58, 0.10);
}
.ex-degree-short {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--base-color);
    background: var(--base-color-tint);
}
.ex-degree-level {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--secondary-color-text);
}
.ex-degree-title {
    font-size: 21px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: -0.4px;
    color: var(--dark-gray);
    margin: 0;
}

/* international experience */
.ex-route {
    display: grid;
    grid-template-columns: 1fr 160px 1fr;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.ex-place {
    height: 100%;
    padding: 34px 34px 32px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(29, 29, 58, 0.05);
}
.ex-place-years {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: var(--secondary-color-text);
}
.ex-place-name {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.8px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}
.ex-place p {
    font-size: 15px;
    line-height: 26px;
    margin: 0;
}
.ex-route-line {
    position: relative;
    display: flex;
    justify-content: center;
    border-top: 2px dashed var(--extra-medium-gray);
}
.ex-route-line i {
    width: 44px;
    height: 44px;
    margin-top: -23px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: var(--base-color);
    box-shadow: 0 0 0 8px var(--very-light-gray);
}

/* leadership philosophy */
.ex-principles li {
    padding: 26px 0;
}
.ex-principle-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.5px;
    color: var(--dark-gray);
    margin: 0 0 4px;
}
.ex-principles p {
    font-size: 16px;
    line-height: 28px;
}
.ex-principles .ex-pillar-index {
    line-height: 30px;
}

/* section dock: appears once the hero has scrolled away (ceo.js), and marks the section in view */
.ex-dock {
    position: fixed;
    z-index: 99;
    left: 50%;
    bottom: 22px;
    max-width: calc(100vw - 24px);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    background: rgba(21, 23, 63, 0.82);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px rgba(21, 23, 63, 0.30);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.ex-dock.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.ex-dock ul {
    display: flex;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
    border-radius: 50px;
}
.ex-dock ul::-webkit-scrollbar {
    display: none;
}
.ex-dock a {
    display: block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s ease, background-color 0.2s ease;
}
.ex-dock a:hover {
    color: #fff;
}
.ex-dock a.is-active {
    background: #fff;
    color: var(--base-color);
}

@media (max-width: 1199px) {
    .ex-hero-tagline {
        font-size: 26px;
    }
    .ex-intro-text {
        font-size: 31px;
    }
    .ex-vision-title {
        font-size: 42px;
    }
    .ex-timeline {
        --ex-rail: 150px;
    }
}
@media (max-width: 991px) {
    .ex-hero-eyebrow {
        justify-content: center;
    }
    .ex-route {
        grid-template-columns: 1fr 90px 1fr;
    }
    .ex-place {
        padding: 28px 26px;
    }
}
@media (max-width: 767px) {
    .ex-hero-eyebrow {
        font-size: 13px;
        letter-spacing: 1px;
    }
    .ex-hero-eyebrow::before {
        display: none;
    }
    .ex-hero-tagline {
        font-size: 22px;
        letter-spacing: -0.5px;
    }
    .ex-stats .bd-stat-value small {
        display: block;
        margin: 0;
        font-size: 14px;
        line-height: 20px;
    }
    .ex-intro {
        padding-bottom: 60px;
    }
    .ex-intro-text {
        font-size: 24px;
        letter-spacing: -0.6px;
        margin-bottom: 30px;
    }
    .ex-path li:not(:last-child)::after {
        width: 12px;
        margin: 0 8px;
    }
    /* the year chips become one swipeable row, and the rail moves to the left edge with the year above each card */
    .ex-years {
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin: 0 -15px 40px;
        padding: 0 15px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .ex-years::-webkit-scrollbar {
        display: none;
    }
    .ex-year {
        flex-shrink: 0;
    }
    .ex-timeline {
        --ex-rail: 8px;
    }
    .ex-step {
        display: block;
        padding: 0 0 30px 34px;
    }
    .ex-step-year {
        display: block;
        padding: 0 0 10px;
        font-size: 20px;
        line-height: 28px;
        text-align: left;
    }
    .ex-step-node {
        top: 6px;
    }
    .ex-step-card {
        margin-left: 0;
        padding: 22px 20px 24px;
    }
    .ex-step-role {
        font-size: 19px;
        line-height: 26px;
    }
    .ex-step-card p {
        font-size: 15px;
        line-height: 26px;
    }
    .ex-ladder {
        margin-top: 40px;
        padding: 26px 24px;
    }
    /* four steps across do not fit a phone: the ladder turns vertical, its line running down the left */
    .ex-ladder ol {
        grid-template-columns: 1fr;
    }
    .ex-ladder li {
        padding: 0 0 22px 26px;
        border-top: 0;
        border-left: 2px solid var(--base-color);
    }
    .ex-ladder li::before {
        top: 4px;
        left: -7px;
    }
    .ex-ladder li.is-current {
        padding-bottom: 0;
        border-left-color: transparent;
    }
    .ex-card {
        padding: 26px 24px;
    }
    .ex-project {
        padding: 28px 24px 24px;
    }
    .ex-project-name {
        font-size: 22px;
        line-height: 30px;
    }
    .ex-project-meta div {
        grid-template-columns: 96px 1fr;
    }
    .ex-vision-title {
        font-size: 34px;
        letter-spacing: -1.2px;
    }
    .ex-focus li {
        padding: 15px 18px;
        font-size: 17px;
    }
    .ex-degree {
        gap: 18px;
        padding: 24px 22px;
    }
    .ex-degree-short {
        width: 64px;
        height: 64px;
        font-size: 19px;
    }
    .ex-degree-title {
        font-size: 18px;
        line-height: 26px;
    }
    .ex-route {
        grid-template-columns: 1fr;
    }
    .ex-route-line {
        height: 70px;
        border-top: 0;
        align-items: center;
    }
    .ex-route-line::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        border-left: 2px dashed var(--extra-medium-gray);
    }
    .ex-route-line i {
        position: relative;
        margin-top: 0;
        transform: rotate(90deg);
    }
    .ex-principle-title {
        font-size: 19px;
        line-height: 27px;
    }
    .ex-dock {
        bottom: 14px;
    }
    .ex-dock a {
        padding: 7px 13px;
        font-size: 13px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .ex-js .ex-reveal,
    .ex-js .ex-step.ex-reveal:not(.is-in) .ex-step-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .ex-step-card,
    .ex-card,
    .ex-project,
    .ex-project::before,
    .ex-focus li,
    .ex-dock {
        transition: none;
    }
    .ex-step-card:hover,
    .ex-card:hover,
    .ex-project:hover,
    .ex-focus li:hover {
        transform: none;
    }
}
