/* ============================================================
   eat24 About Page
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #3B0000;
    background: #FDF5EC;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}


/* ============================================================
   NAVBAR (same as corporate)
   ============================================================ */
.corp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #C5960C;
    padding: 0 56px;
}
.corp-nav__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 32px;
}
.corp-nav__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.corp-nav__logo img { height: 52px; }
.corp-nav__badge {
    font-size: 18px;
    font-weight: 700;
    color: #CDFF50;
    padding-left: 20px;
    border-left: 2px solid rgba(255,255,255,.35);
}
.corp-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.corp-nav__link {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: opacity .2s;
    white-space: nowrap;
}
.corp-nav__link:hover { opacity: .75; }
.corp-nav__link--active {
    background: rgba(0,0,0,.15);
    padding: 8px 20px;
    border-radius: 50px;
}
.corp-nav__right {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    flex-shrink: 0;
}
.corp-nav__contact-btn {
    font-size: 15px;
    font-weight: 700;
    color: #3B0000;
    background: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all .2s;
    white-space: nowrap;
}
.corp-nav__contact-btn:hover {
    background: #FDF5EC;
    transform: translateY(-1px);
}
.corp-nav__lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #C5960C;
    background: #fff;
    padding: 9px 20px;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all .2s;
}
.corp-nav__lang-btn i { font-size: 18px; color: #C5960C; }
.corp-nav__lang-btn:hover { background: #FDF5EC; }
.corp-nav__mobile-toggle {
    display: none;
    font-size: 22px;
    color: #fff;
    padding: 8px;
    margin-left: auto;
}


/* Mobile Menu */
.corp-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}
.corp-mobile-menu.active { visibility: visible; opacity: 1; }
.corp-mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
}
.corp-mobile-menu__panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: #fff;
    transform: translateX(100%);
    transition: transform .3s;
    display: flex;
    flex-direction: column;
}
.corp-mobile-menu.active .corp-mobile-menu__panel { transform: translateX(0); }
.corp-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}
.corp-mobile-menu__logo { height: 36px; }
.corp-mobile-menu__close { font-size: 20px; color: #333; padding: 4px; }
.corp-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}
.corp-mobile-menu__nav a {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: background .2s;
}
.corp-mobile-menu__nav a:hover { background: #FDF5EC; color: #3B0000; }


/* ============================================================
   HERO
   ============================================================ */
.about-hero {
    position: relative;
    background: #FDF5EC;
    padding: 120px 48px 100px;
    text-align: center;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative bars */
.about-hero__bar {
    position: absolute;
    width: 220px;
    height: 48px;
    background: #C5960C;
    border-radius: 8px;
}
.about-hero__bar--1 {
    top: 40px;
    left: -60px;
    transform: rotate(-55deg);
}
.about-hero__bar--2 {
    top: 180px;
    left: -40px;
    transform: rotate(-55deg);
}
.about-hero__bar--3 {
    top: 350px;
    left: -80px;
    transform: rotate(-55deg);
}
.about-hero__bar--4 {
    top: 30px;
    right: -40px;
    transform: rotate(-55deg);
}
.about-hero__bar--5 {
    top: 60px;
    right: -100px;
    width: 120px;
    transform: rotate(-55deg);
}

.about-hero__content {
    position: relative;
    z-index: 1;
}
.about-hero__title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    font-style: italic;
    color: #C5960C;
    line-height: 1.08;
    margin-bottom: 24px;
}
.about-hero__sub {
    font-size: 16px;
    color: #3B0000;
    opacity: .7;
    line-height: 1.7;
}


/* ============================================================
   STORY / VIDEO
   ============================================================ */
.about-story {
    padding: 80px 0 100px;
}
.about-story__title {
    font-size: 28px;
    font-weight: 700;
    color: #3B0000;
    margin-bottom: 40px;
    text-align: center;
}
.about-story__video {
    max-width: 900px;
    margin: 0 auto;
}
.about-story__video-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    display: block;
    box-shadow: 0 8px 32px rgba(59,0,0,.1);
}
.about-story__video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-story__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: #C5960C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.about-story__play-btn i {
    font-size: 24px;
    color: #fff;
    margin-left: 4px;
}
.about-story__video-placeholder:hover .about-story__play-btn {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 6px 28px rgba(0,0,0,.3);
}
.about-story__progress-bar {
    position: absolute;
    bottom: 16px;
    left: 24px;
    right: 24px;
    height: 4px;
    background: rgba(255,255,255,.35);
    border-radius: 2px;
}
.about-story__progress-fill {
    width: 75%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
}


/* ============================================================
   MISSION
   ============================================================ */
.about-mission {
    padding: 80px 0 100px;
}
.about-mission__title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #3B0000;
    text-align: center;
    margin-bottom: 24px;
}
.about-mission__highlight {
    color: #C5960C;
    text-decoration: underline;
    text-decoration-color: #CDFF50;
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}
.about-mission__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}
.about-mission__columns p {
    font-size: 15px;
    color: #3B0000;
    opacity: .75;
    line-height: 1.7;
}
.about-mission__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}
.about-mission__img {
    border-radius: 20px;
    overflow: hidden;
}
.about-mission__img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.about-mission__img--right {
    border-radius: 20px;
    margin-top: 0;
}


/* ============================================================
   VALUES
   ============================================================ */
.about-values {
    padding: 80px 0 100px;
    text-align: center;
}
.about-values__title {
    font-size: 32px;
    font-weight: 800;
    color: #3B0000;
    margin-bottom: 12px;
}
.about-values__sub {
    font-size: 15px;
    color: #3B0000;
    opacity: .65;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.about-values__card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 20px;
    padding: 48px 32px;
    box-shadow: 0 2px 24px rgba(59,0,0,.06);
}
.about-values__item {
    text-align: left;
    padding: 0 24px;
}
.about-values__item + .about-values__item {
    border-left: 1px solid #f0e8dd;
}
.about-values__icon {
    margin-bottom: 16px;
}
.about-values__item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #C5960C;
    margin-bottom: 6px;
}
.about-values__item p {
    font-size: 14px;
    color: #3B0000;
    opacity: .65;
    line-height: 1.6;
}


/* ============================================================
   LEADERSHIP
   ============================================================ */
.about-leadership {
    background: #C5960C;
    padding: 80px 0 100px;
    overflow: hidden;
}
.about-leadership__title {
    font-size: 36px;
    font-weight: 800;
    color: #3B0000;
    text-align: center;
    margin-bottom: 24px;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
}
.about-leadership__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}
.about-leadership__tab {
    font-size: 14px;
    font-weight: 600;
    color: #3B0000;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid #3B0000;
    transition: all .2s;
    cursor: pointer;
}
.about-leadership__tab--active {
    background: #fff;
    border-color: #fff;
}
.about-leadership__tab:hover:not(.about-leadership__tab--active) {
    background: rgba(255,255,255,.2);
}

.about-leadership__scroll {
    overflow-x: auto;
    padding: 0 48px 20px;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.about-leadership__scroll::-webkit-scrollbar { display: none; }
.about-leadership__scroll.is-dragging { cursor: grabbing; }
.about-leadership__scroll--hidden { display: none; }

.about-leadership__track {
    display: flex;
    gap: 24px;
    width: max-content;
}
.about-leadership__card {
    width: 220px;
    flex-shrink: 0;
    background: #FDF5EC;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 24px;
}
.about-leadership__photo {
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.about-leadership__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-leadership__card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #C5960C;
    padding: 16px 16px 4px;
    line-height: 1.3;
}
.about-leadership__card p {
    font-size: 13px;
    color: #3B0000;
    opacity: .7;
    padding: 0 16px;
    line-height: 1.4;
}


/* ============================================================
   DELIVERING FOOD AND VIBES
   ============================================================ */
.about-vibes {
    padding: 100px 0 0;
    position: relative;
}
.about-vibes__wave-wrap {
    position: relative;
    height: 80px;
    margin-bottom: -20px;
}
.about-vibes__wave {
    width: 100%;
    height: 100%;
}
.about-vibes__title {
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 900;
    color: #3B0000;
    text-align: center;
    line-height: 1.05;
    margin-bottom: 80px;
}
.about-vibes__accent {
    color: #C5960C;
}


/* Services cards */
.about-services {
    padding: 0 0 80px;
}
.about-services__title {
    font-size: 24px;
    font-weight: 700;
    color: #3B0000;
    margin-bottom: 12px;
}
.about-services__sub {
    font-size: 15px;
    color: #3B0000;
    opacity: .65;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-services__scroll {
    overflow: hidden;
    padding: 0 0 20px;
}
.about-services__scroll::-webkit-scrollbar { display: none; }
.about-services__scroll.is-dragging { cursor: grabbing; }

.about-services__track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: servicesScroll 25s linear infinite;
}
.about-services__scroll:hover .about-services__track {
    animation-play-state: paused;
}
@keyframes servicesScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.about-services__card {
    width: 340px;
    flex-shrink: 0;
    text-align: center;
}
.about-services__card span {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #3B0000;
}
.about-services__card-img {
    width: 340px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.about-services__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-services__card-img--gold {
    background: #C5960C;
}
.about-services__card-img--maroon {
    background: #3B0000;
}
.about-services__card-img--light {
    background: #E8E0F8;
}
.about-services__card-img--dark {
    background: #3B0000;
    border-radius: 50%;
    width: 340px;
    height: 340px;
    margin-top: 40px;
}

.about-services__card-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}
.about-services__pro-badge {
    display: inline-block;
    background: #7C5CFC;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    padding: 8px 24px;
    border-radius: 12px;
    margin-bottom: 8px;
}
.about-services__pro-text {
    font-size: 16px;
    font-weight: 800;
    color: #7C5CFC;
    text-align: center;
    line-height: 1.2;
}
.about-services__mascot {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}
.about-services__rewards-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.about-services__btn {
    display: inline-block;
    margin-top: 32px;
    font-size: 15px;
    font-weight: 700;
    color: #FDF5EC;
    background: #3B0000;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all .2s;
}
.about-services__btn:hover {
    background: #5a1a1a;
    transform: translateY(-1px);
}


/* ============================================================
   LOCATIONS
   ============================================================ */
.about-locations {
    padding: 100px 0;
    background: #F5EDE3;
}
.about-locations__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #3B0000;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.3;
}
.about-locations__highlight {
    color: #C5960C;
    text-decoration: underline;
    text-decoration-color: #CDFF50;
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}
.about-locations__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.about-locations__map {
    flex: 1 1 auto;
    max-width: 640px;
    border-radius: 24px;
    overflow: hidden;
}
.about-locations__map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.about-locations__list {
    background: #fff;
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 4px 24px rgba(59,0,0,.08);
    min-width: 180px;
    flex: 0 0 auto;
}
.about-locations__city {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0e8dd;
    font-size: 14px;
    font-weight: 600;
    color: #3B0000;
}
.about-locations__city:last-child {
    border-bottom: none;
}
.about-locations__flag {
    font-size: 20px;
}


/* ============================================================
   NEWS
   ============================================================ */
.about-news {
    background: #C5960C;
    padding: 80px 0 80px;
    overflow: hidden;
}
.about-news__title {
    font-size: 36px;
    font-weight: 800;
    color: #3B0000;
    text-align: center;
    margin-bottom: 40px;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
}
.about-news__scroll {
    overflow-x: auto;
    padding: 0 48px 20px;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.about-news__scroll::-webkit-scrollbar { display: none; }
.about-news__scroll.is-dragging { cursor: grabbing; }

.about-news__track {
    display: flex;
    gap: 20px;
    width: max-content;
}
.about-news__card {
    width: 240px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent 50%, #3B0000 50%);
    transition: transform .2s;
}
.about-news__card:hover {
    transform: translateY(-4px);
}
.about-news__card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.about-news__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-news__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #CDFF50;
    color: #3B0000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
}
.about-news__card-body {
    padding: 16px;
    background: #3B0000;
}
.about-news__card-body h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 8px;
}
.about-news__date {
    font-size: 12px;
    color: #C5960C;
    font-weight: 500;
}
.about-news__btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #3B0000;
    background: #FDF5EC;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all .2s;
}
.about-news__btn:hover {
    background: #fff;
    transform: translateY(-1px);
}


/* ============================================================
   FOOTER (same as corporate)
   ============================================================ */
.corp-footer {
    background: #FDF5EC;
    padding: 80px 0 40px;
    border-top: 1px solid #e8ddd0;
}
.corp-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}
.corp-footer__logo img { height: 48px; }
.corp-footer__social {
    display: flex;
    gap: 12px;
}
.corp-footer__social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #C5960C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: opacity .2s;
}
.corp-footer__social a:hover { opacity: .8; }

.corp-footer__contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e8ddd0;
}
.corp-footer__contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #3B0000;
    margin-bottom: 6px;
}
.corp-footer__contact-item p {
    font-size: 14px;
    color: #3B0000;
    opacity: .6;
    margin-bottom: 10px;
}
.corp-footer__contact-item a {
    font-size: 14px;
    font-weight: 600;
    color: #3B0000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity .2s;
}
.corp-footer__contact-item a i { color: #C5960C; }
.corp-footer__contact-item a:hover { opacity: .7; }

.corp-footer__links {
    display: flex;
    gap: 80px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e8ddd0;
}
.corp-footer__col h5 {
    font-size: 16px;
    font-weight: 700;
    color: #3B0000;
    margin-bottom: 16px;
}
.corp-footer__col a {
    display: block;
    font-size: 14px;
    color: #3B0000;
    opacity: .65;
    padding: 4px 0;
    transition: opacity .2s;
}
.corp-footer__col a:hover { opacity: 1; }

.corp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.corp-footer__app {
    display: flex;
    align-items: center;
    gap: 12px;
}
.corp-footer__app-icon { width: 40px; height: 40px; }
.corp-footer__app-icon img { width: 100%; height: 100%; object-fit: contain; }
.corp-footer__app-text { font-size: 15px; font-weight: 600; color: #3B0000; }
.corp-footer__stores {
    display: flex;
    gap: 12px;
}
.corp-footer__store-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #3B0000;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #e8ddd0;
    transition: all .2s;
}
.corp-footer__store-badge:hover { border-color: #C5960C; }
.corp-footer__lang a {
    font-size: 14px;
    font-weight: 600;
    color: #3B0000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.corp-footer__legal {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e8ddd0;
    font-size: 13px;
    color: #3B0000;
    opacity: .5;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .corp-nav__links { display: none; }
    .corp-nav__right { display: none; }
    .corp-nav__mobile-toggle { display: block; }
    .corp-nav { padding: 0 24px; }

    .about-container { padding: 0 24px; }

    .about-hero { padding: 80px 24px 60px; }
    .about-hero__bar { width: 160px; height: 36px; }

    .about-mission__images {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .about-mission__img img { height: 240px; }
    .about-mission__img--right { margin-top: 0; }

    .about-values__card {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .about-values__item + .about-values__item { border-left: none; }
    .about-values__item:nth-child(2) { border-left: 1px solid #f0e8dd; }
    .about-values__item:nth-child(4) { border-left: 1px solid #f0e8dd; }

    .about-locations__inner {
        flex-direction: column;
        align-items: center;
    }
    .about-locations__map { max-width: 100%; }
    .about-locations__list {
        display: flex;
        flex-wrap: wrap;
        gap: 0 32px;
    }
    .about-locations__city { border-bottom: none; }
}

@media (max-width: 768px) {
    .about-hero__title {
        font-size: 36px;
    }
    .about-hero__bar { width: 120px; height: 28px; }
    .about-hero__bar--2 { top: 140px; }
    .about-hero__bar--3 { top: 260px; }

    .about-mission__columns {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-mission__images {
        grid-template-columns: 1fr;
    }
    .about-mission__img--right { margin-top: 0; }
    .about-mission__img img { height: 220px; }

    .about-values__card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 24px;
    }
    .about-values__item + .about-values__item { border-left: none; }
    .about-values__item { border-left: none !important; }

    .about-vibes__title { font-size: 40px; }

    .corp-footer__contacts {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .corp-footer__bottom { flex-direction: column; gap: 20px; }
    .corp-footer__links { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
    .about-hero { padding: 60px 16px 50px; min-height: 360px; }
    .about-hero__title { font-size: 28px; }
    .about-hero__bar { display: none; }

    .about-container { padding: 0 16px; }

    .about-story { padding: 48px 0 60px; }
    .about-mission { padding: 48px 0 60px; }
    .about-values { padding: 48px 0 60px; }
    .about-leadership { padding: 48px 0 60px; }
    .about-locations { padding: 60px 0; }

    .about-leadership__scroll { padding: 0 16px 20px; }
    .about-services__scroll { padding: 0 16px 20px; }
    .about-news__scroll { padding: 0 16px 20px; }
}
