/* ==========================================================================
   Egypt Rest Tours — About Us luxury system
   Scoped to body.ert-about so the rest of the site is unchanged.
   ========================================================================== */

body {
    --navy: #071c33;
    --royal: #0d2b4d;
    --gold: #c9a15b;
    --gold-soft: #e4d0a4;
    --champagne: #f3e8d0;
    --ivory: #faf8f2;
    --white: #ffffff;
    --ink: #1a2433;
    --muted: #5c6570;
    --line: rgba(201, 161, 91, 0.35);
    --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-sans: "Outfit", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-script: "Great Vibes", "Palatino Linotype", cursive;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 8px 28px rgba(7, 28, 51, 0.08);
    --shadow-hover: 0 16px 40px rgba(7, 28, 51, 0.12);
    --ease: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --section: clamp(4.5rem, 9vw, 7.5rem);
    --gutter: clamp(1.25rem, 4vw, 2.5rem);

    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.ert-about h1,
body.ert-about h2,
body.ert-about h3,
body.ert-about h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--gold);
    line-height: 1.15;
}

/*body.ert-about p {
    color: var(--navy);
}*/

body.ert-about a:focus-visible,
body.ert-about button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    body.ert-about *,
    body.ert-about *::before,
    body.ert-about *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* -------------------------------------------------------------------------- */
/* Header / footer cohesion                                                   */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */

.ert-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

.ert-btn i {
    font-size: 0.75rem;
    transition: transform var(--ease);
}

.ert-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.ert-btn:hover i {
    transform: translateX(3px);
}

.ert-btn--primary {
    background: var(--navy);
    color: var(--white) !important;
    border-color: var(--gold);
}

.ert-btn--primary:hover {
    background: var(--royal);
    color: var(--gold-soft) !important;
    border-color: var(--gold);
}

.ert-btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(243, 232, 208, 0.55);
}

.ert-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--champagne);
    border-color: var(--gold);
}

.ert-btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: rgba(7, 28, 51, 0.18);
}

.ert-btn--outline:hover {
    border-color: var(--gold);
    color: var(--navy);
    background: var(--champagne);
}

.ert-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.ert-ahero {
    position: relative;
    min-height: clamp(28rem, 72vh, 42rem);
    display: flex;
    align-items: flex-end;
    color: var(--white);
    overflow: hidden;
}

.ert-ahero__media,
.ert-ahero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ert-ahero__media img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
}

.ert-ahero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 28, 51, 0.82) 0%, rgba(7, 28, 51, 0.5) 48%, rgba(7, 28, 51, 0.22) 100%),
        linear-gradient(180deg, rgba(7, 28, 51, 0.2) 0%, rgba(7, 28, 51, 0.72) 100%);
}

.ert-ahero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(5.5rem, 12vw, 8rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.ert-ahero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.ert-ahero__kicker::before {
    content: "";
    width: 2.25rem;
    height: 1px;
    background: var(--gold);
}

.ert-ahero h1 {
    max-width: 16ch;
    margin: 0 0 1.15rem;
    color: var(--white);
    font-size: clamp(2.6rem, 6.4vw, 5.1rem);
    font-weight: 500;
    line-height: 1.05;
}

.ert-ahero__lead {
    max-width: 38rem;
    margin: 0 0 2rem;
    color: rgba(250, 248, 242, 0.88);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
}

.ert-ahero__crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-top: 2.25rem;
    padding: 0;
    list-style: none;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: rgba(250, 248, 242, 0.62);
}

.ert-ahero__crumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.ert-ahero__crumbs a {
    color: rgba(250, 248, 242, 0.72);
    text-decoration: none;
}

.ert-ahero__crumbs a:hover {
    color: var(--gold-soft);
}

.ert-ahero__crumbs li:last-child {
    color: var(--champagne);
}

@media (max-width: 767px) {
    .ert-ahero {
        min-height: 70vh;
        align-items: flex-end;
    }

    .ert-ahero h1 {
        max-width: none;
    }
}

/* -------------------------------------------------------------------------- */
/* Local nav                                                                  */
/* -------------------------------------------------------------------------- */

.ert-anav {
    background: var(--navy);
    border-bottom: 1px solid rgba(201, 161, 91, 0.18);
}

.ert-anav__list {
    display: flex;
    gap: 0.25rem;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
}

.ert-anav__list::-webkit-scrollbar {
    display: none;
}

.ert-anav a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0.85rem 1rem;
    color: rgba(250, 248, 242, 0.62);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--ease), border-color var(--ease);
}

.ert-anav a:hover,
.ert-anav a.is-active {
    color: var(--gold-soft);
    border-bottom-color: var(--gold);
}

/* -------------------------------------------------------------------------- */
/* Sections / headings                                                        */
/* -------------------------------------------------------------------------- */

.ert-section {
    padding: var(--section) 0;
}

.ert-section--ivory {
    background: var(--ivory);
}

.ert-section--white {
    background: var(--white);
}

.ert-section--sand {
    background: var(--champagne);
}

.ert-section--navy {
    background: var(--navy);
    color: var(--white);
}

body.ert-about .ert-section.pt-0 {
    padding-top: 0;
}

body.ert-about .ert-section.pb-0 {
    padding-bottom: 0;
}

body.ert-about .section-title {
    margin-bottom: 2.5rem;
}

body.ert-about .section-title .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

body.ert-about .section-title h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2rem, 4.2vw, 3.35rem);
    color: var(--navy);
}

body.ert-about .section-title p {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.ert-head {
    max-width: 40rem;
    margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.ert-head--center {
    margin-inline: auto;
    text-align: center;
}

.ert-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.ert-kicker::before {
    content: "";
    width: 1.75rem;
    height: 1px;
    background: var(--gold);
}

.ert-head--center .ert-kicker {
    justify-content: center;
}

.ert-head--center .ert-kicker::before {
    display: none;
}

.ert-head h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(2rem, 4.2vw, 3.35rem);
}

.ert-head p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted) !important;
}

.ert-rule {
    display: block;
    width: 3rem;
    height: 1px;
    margin: 1.25rem 0;
    background: var(--gold);
}

.ert-rule--center {
    margin-inline: auto;
}

/* -------------------------------------------------------------------------- */
/* Editorial prose / split                                                    */
/* -------------------------------------------------------------------------- */

.ert-prose {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--muted);
}

.ert-prose p {
    margin-bottom: 1.15rem;
    color: var(--muted) !important;
}

.ert-prose p:last-child {
    margin-bottom: 0;
}

.ert-prose h2,
.ert-prose h3,
.ert-prose h4 {
    margin: 1.75rem 0 0.75rem;
}

.ert-prose a {
    color: var(--royal);
    text-decoration-color: var(--gold);
    text-underline-offset: 0.2em;
}

.ert-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.ert-split--reverse {
    direction: rtl;
}

.ert-split--reverse > * {
    direction: ltr;
}

.ert-frame {
    position: relative;
}

.ert-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.ert-frame--portrait img,
.ert-frame--story img {
    aspect-ratio: 4 / 5;
    min-height: 28rem;
}

.ert-frame--wide img {
    aspect-ratio: 16 / 10;
    min-height: 18rem;
}

.ert-frame::after {
    content: "";
    position: absolute;
    inset: 1.1rem -1.1rem -1.1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    pointer-events: none;
}

.ert-lede {
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
    color: var(--navy);
}

@media (max-width: 991px) {
    .ert-split,
    .ert-split--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .ert-frame--portrait img,
    .ert-frame--story img {
        min-height: 20rem;
        aspect-ratio: 4 / 3;
    }

    .ert-frame::after {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/* Hub cards                                                                  */
/* -------------------------------------------------------------------------- */

.ert-hub {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.ert-hubcard {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 22rem;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow);
}

.ert-hubcard:hover {
    text-decoration: none;
    color: var(--white);
}

.ert-hub__featured {
    grid-column: span 7;
    min-height: 28rem;
}

.ert-hub__side {
    grid-column: span 5;
}

.ert-hub__rest {
    grid-column: span 4;
    min-height: 20rem;
}

.ert-hubcard__media,
.ert-hubcard__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ert-hubcard__media img {
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.ert-hubcard:hover .ert-hubcard__media img {
    transform: scale(1.06);
}

.ert-hubcard__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 28, 51, 0.33) 15%, rgb(7, 28, 51) 100%);
}

.ert-hubcard__body {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 1.75rem 1.6rem;
}

.ert-hubcard h3 {
    margin: 0 0 0.5rem;
    color: var(--white);
    font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.ert-hubcard p {
    margin: 0 0 1rem;
    color: rgba(250, 248, 242, 0.78);
    font-size: 0.95rem;
}

.ert-hubcard span {
    color: var(--gold-soft);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .ert-hub__featured,
    .ert-hub__side,
    .ert-hub__rest {
        grid-column: span 12;
        min-height: 18rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ert-hub__rest {
        grid-column: span 6;
    }
}

/* -------------------------------------------------------------------------- */
/* Feature / value cards                                                      */
/* -------------------------------------------------------------------------- */

.ert-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.ert-card {
    height: 100%;
    padding: 2rem 1.7rem 1.85rem;
    background: var(--white);
    border: 1px solid rgba(7, 28, 51, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.ert-card:hover {
    transform: translateY(-4px);
    border-color: var(--line);
    box-shadow: var(--shadow-hover);
}

.ert-card__icon {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
}

.ert-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.55rem;
}

.ert-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
}

.ert-vcards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.ert-vcard {
    position: relative;
    min-height: 16.5rem;
    padding: 2rem 1.7rem;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(7, 28, 51, 0.06);
    transition: transform var(--ease), box-shadow var(--ease);
}

.ert-vcard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.ert-vcard__index {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    letter-spacing: 0.12em;
}

.ert-vcard h3 {
    margin: 0 0 0.7rem;
    font-size: 1.7rem;
}

.ert-vcard p {
    margin: 0;
    max-width: 28ch;
}

@media (max-width: 991px) {
    .ert-cards,
    .ert-vcards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ert-cards,
    .ert-vcards {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------- */
/* Story timeline                                                             */
/* -------------------------------------------------------------------------- */

.ert-chapter {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.ert-chapter:nth-child(even) {
    direction: rtl;
}

.ert-chapter:nth-child(even) > * {
    direction: ltr;
}

.ert-chapter + .ert-chapter {
    border-top: 1px solid rgba(201, 161, 91, 0.18);
}

.ert-chapter__index {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.ert-chapter h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 3vw, 2.6rem);
}

@media (max-width: 991px) {
    .ert-chapter,
    .ert-chapter:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
        padding: 2rem 0;
    }
}

/* -------------------------------------------------------------------------- */
/* Chairman                                                                   */
/* -------------------------------------------------------------------------- */

.ert-chairman {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.ert-chairman__photo {
    position: relative;
}

.ert-chairman__photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius);
}

.ert-chairman__photo figcaption {
    margin-top: 1.15rem;
}

.ert-chairman__photo strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy);
}

.ert-chairman__photo span {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ert-chairman__letter {
    padding: 0.5rem 0 0;
}

.ert-drop {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.85;
}

.ert-drop > p:first-of-type::first-letter {
    float: left;
    padding-right: 0.12em;
    color: var(--gold);
    font-size: 3.15em;
    font-weight: 500;
    line-height: 0.8;
}

.ert-signature {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.ert-signature__mark {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-script);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1;
}

.ert-signature__name {
    margin: 0.35rem 0 0;
    color: var(--navy);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.ert-signature__role {
    margin: 0.15rem 0 0;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .ert-chairman {
        grid-template-columns: 1fr;
    }

    .ert-chairman__photo img {
        max-height: 32rem;
        aspect-ratio: 3 / 4;
    }
}

/* -------------------------------------------------------------------------- */
/* Stats / quote / CTA                                                        */
/* -------------------------------------------------------------------------- */

.ert-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ert-stat h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 500;
}

.ert-stat p {
    margin: 0.35rem 0 0;
    color: var(--champagne) !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.ert-quote {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.ert-quote blockquote {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
}

.ert-quote cite {
    display: block;
    margin-top: 1.25rem;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-style: normal;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* Team / partners / gallery / faq                                            */
/* -------------------------------------------------------------------------- */

.ert-team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.ert-teamcard {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ert-teamcard__media {
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.ert-teamcard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s var(--ease);
}

.ert-teamcard:hover img {
    transform: scale(1.05);
}

.ert-teamcard__body {
    padding: 1.25rem 1.2rem 1.4rem;
}

.ert-teamcard h3 {
    margin: 0 0 0.25rem;
    font-size: 1.35rem;
}

.ert-teamcard h3 a {
    color: inherit;
    text-decoration: none;
}

.ert-teamcard p {
    margin: 0;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ert-teamcard__social {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.85rem;
    padding: 0;
    list-style: none;
}

.ert-teamcard__social a {
    color: var(--royal);
    font-size: 0.85rem;
}

.ert-partners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ert-partner {
    display: grid;
    place-items: center;
    min-height: 8.5rem;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid rgba(7, 28, 51, 0.06);
    border-radius: var(--radius-sm);
    transition: border-color var(--ease), box-shadow var(--ease);
}

.ert-partner:hover {
    border-color: var(--line);
    box-shadow: var(--shadow);
}

.ert-partner img {
    max-width: 8.5rem;
    max-height: 4.5rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

body.ert-about .ert-gallery .ert-head {
    margin-bottom: 2rem;
}

body.ert-about .gallery-lightbox-trigger {
    cursor: zoom-in;
}

body.ert-about .ert-gallery.section-padding {
    padding: var(--section) 0;
}

body.ert-about .ert-gallery .gallery-lightbox-trigger {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: zoom-in;
}

body.ert-about .ert-gallery .gallery-lightbox-trigger img {
    width: 100%;
    max-height: none !important;
    aspect-ratio: 16 / 10;
    object-fit: cover !important;
    transition: transform 0.7s var(--ease);
}

body.ert-about .ert-gallery .gallery-lightbox-trigger:hover img {
    transform: scale(1.05);
}

body.ert-about .faq-section {
    background: var(--ivory);
}

body.ert-about .faq-section .section-title .sub-title,
body.ert-about .faq-section .section-title h2 {
    font-family: var(--font-serif);
}

body.ert-about .accordion-item {
    background: var(--white);
    border: 1px solid rgba(7, 28, 51, 0.06) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

body.ert-about .accordion-button {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy);
    background: var(--white);
    box-shadow: none;
}

body.ert-about .accordion-button:not(.collapsed) {
    background: var(--ivory);
    color: var(--navy);
}

@media (max-width: 1199px) {
    .ert-team {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .ert-team,
    .ert-partners {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ert-team {
        grid-template-columns: 1fr;
    }

    .ert-btn {
        width: 100%;
    }

    .ert-anav a {
        padding: 0.8rem 0.75rem;
    }
}
.accordion-body>p {
    color: var(--muted) !important;
}