@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&display=swap');

:root {
    --bg: #eef4ff;
    --surface: #ffffff;
    --surface-soft: #f7faff;
    --text: #2c3553;
    --muted: #56607b;
    --brand: #0a09f8;
    --brand-dark: #0807bf;
    --accent: #24b7a8;
    --accent-soft: #e2f7f4;
    --border: #dbe4f5;
    --shadow: 0 12px 32px rgba(13, 33, 84, 0.12);
    --font-base: "PT Sans", "Trebuchet MS", sans-serif;
    --font-heading: "PT Sans", "Trebuchet MS", sans-serif;
    --space-1: 0.4rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.4rem;
    --space-5: 1.9rem;
    --social-hit: 2.1rem;
    --social-icon: 1rem;
    --feature-media-max-width: 820px;
    --feature-media-ratio: 16 / 9;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 15px;
    color: var(--text);
    background: radial-gradient(circle at 8% -10%, rgba(36, 183, 168, 0.11), transparent 32%), radial-gradient(circle at 95% -5%, rgba(10, 9, 248, 0.12), transparent 38%), linear-gradient(180deg, #f3f7ff 0%, #eef4ff 35%, #f9fbff 100%);
    line-height: 1.72;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
}

iframe,
video {
    max-width: 100%;
}

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

::selection {
    color: #ffffff;
    background: rgba(10, 9, 248, 0.75);
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin: 0 0 0.6rem;
    color: #223052;
}

p,
li,
td,
th,
label,
input,
select,
textarea,
button {
    font-family: var(--font-base);
}

p {
    margin: 0 0 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

main a:not(.btn):not(.featured-button):not(.social-link):not(.whatsapp-float):not(.menu-toggle) {
    color: #14306f;
    text-decoration: underline;
    text-decoration-color: rgba(20, 48, 111, 0.45);
    text-decoration-thickness: 1.2px;
    text-underline-offset: 0.15em;
}

main a:not(.btn):not(.featured-button):not(.social-link):not(.whatsapp-float):not(.menu-toggle):hover,
main a:not(.btn):not(.featured-button):not(.social-link):not(.whatsapp-float):not(.menu-toggle):focus-visible {
    color: var(--brand-dark);
    text-decoration-color: rgba(8, 7, 191, 0.65);
}

.container {
    width: min(1170px, 92vw);
    margin: 0 auto;
}

.section {
    padding: clamp(2.8rem, 5vw, 4rem) 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 0.82rem;
}

.lead {
    color: var(--muted);
    max-width: 62ch;
}

.site-header {
    position: relative;
    z-index: 30;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(130%) blur(8px);
    border-bottom: 1px solid rgba(18, 44, 102, 0.09);
}

.site-header.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    border-bottom: 1px solid rgba(18, 44, 102, 0.1);
    box-shadow: 0 10px 26px rgba(9, 22, 60, 0.16);
}

body.has-sticky-header {
    padding-top: 0;
}

.top-header {
    background: linear-gradient(95deg, #0807bf, var(--brand));
    color: #ffffff;
    font-family: var(--font-base);
    font-size: 13px;
}

.top-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.55rem 0;
}

.top-social,
.top-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.top-social {
    gap: 0.5rem;
}

.top-links {
    gap: 1rem;
    font-size: 0.92rem;
}

.top-links {
    display: flex !important;
}

.site-nav,
.menu-toggle {
    display: none !important;
}

.top-links a {
    padding: 0.2rem 0;
}

.top-social a,
.top-links a {
    color: #ffffff;
    opacity: 0.96;
}

.top-social a {
    width: var(--social-hit);
    height: var(--social-hit);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.top-links a:hover,
.top-links a:focus-visible,
.top-social a:hover,
.top-social a:focus-visible {
    opacity: 1;
    text-decoration: underline;
}

.top-links a[aria-current="page"],
.top-links a.is-current {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.top-social a:hover,
.top-social a:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.top-social svg {
    width: var(--social-icon);
    height: var(--social-icon);
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.top-social svg.icon-solid {
    fill: currentColor;
    stroke: none;
}

.header-info-strip {
    display: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0.9rem 0;
}

.info-icon-box {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.info-icon {
    width: 1.8rem;
    height: 1.8rem;
    color: #666666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-copy {
    display: inline-flex;
    flex-direction: column;
    gap: 0.03rem;
    color: #666666;
    font-size: 0.9rem;
}

.info-copy strong {
    font-family: var(--font-base);
    color: #3a3a3a;
    font-size: 0.95rem;
    font-weight: 700;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    font-weight: 800;
}

.brand-logo {
    display: block;
    width: auto;
    height: 88px;
    max-width: min(80vw, 700px);
    object-fit: contain;
}

.brand-subtitle {
    margin: 0;
    font-family: var(--font-base);
    font-size: 0.63rem;
    color: var(--brand);
}

.featured-button {
    margin-left: auto;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    background: var(--brand);
    color: #ffffff;
    font-family: var(--font-base);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(10, 9, 248, 0.22);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-button:hover,
.featured-button:focus-visible {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(10, 9, 248, 0.3);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--social-hit);
    height: var(--social-hit);
    border-radius: 999px;
    background: transparent;
    border: 0;
    color: var(--brand-dark);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
    opacity: 1;
    background: rgba(58, 58, 58, 0.08);
    transform: translateY(-1px);
}

.social-link svg {
    width: var(--social-icon);
    height: var(--social-icon);
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-link svg.icon-solid {
    fill: currentColor;
    stroke: none;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
}

.site-nav a {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-family: var(--font-base);
    font-size: 1.03rem;
    color: #44506f;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(10, 9, 248, 0.08);
    color: var(--brand-dark);
}

.site-nav a[aria-current="page"] {
    background: rgba(10, 9, 248, 0.11);
    color: var(--brand-dark);
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: #3a3a3a;
    color: #ffffff;
    border: 0;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    font-family: var(--font-base);
}

.inner-main-title {
    position: relative;
    width: 100%;
    background: linear-gradient(120deg, #232e4c, #1f2f63 48%, #223b8b);
    min-height: 100px;
}

.inner-main-title .entry-header {
    padding: 1.2rem 0 0.95rem;
}

.inner-main-title .entry-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 0.4rem;
}

#medical-circle-breadcrumbs {
    color: #ffffff;
    font-family: var(--font-base);
    font-size: 14px;
}

#medical-circle-breadcrumbs .trail-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

#medical-circle-breadcrumbs .trail-item {
    color: #ffffff;
}

#medical-circle-breadcrumbs .trail-item:not(:last-child)::after {
    content: ">";
    margin-left: 0.45rem;
    color: #dddddd;
}

#medical-circle-breadcrumbs a {
    color: #ffffff;
}

#medical-circle-breadcrumbs a:hover,
#medical-circle-breadcrumbs a:focus-visible {
    text-decoration: underline;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.hero-card,
.card,
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1.2rem;
}

.hero-card ul,
.checklist {
    margin: 0;
    padding-left: 1rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    border-radius: 0.5rem;
    padding: 0.65rem 1rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(10, 9, 248, 0.2);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-secondary {
    background: rgba(10, 9, 248, 0.12);
    color: #0a09f8;
}

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

.hero-showcase {
    padding-top: 0;
    padding-bottom: 0;
    background: #ffffff;
}

.hero-showcase .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.hero-fade-carousel {
    position: relative;
    min-height: 71vh;
    border-radius: 0;
    overflow: hidden;
    background: #1f1f1f;
    box-shadow: none;
}

.hero-fade-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.005);
    transition: opacity 1.1s ease-in-out, transform 1.1s ease-in-out;
}

.hero-fade-slide.is-active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.hero-fade-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fade-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 16, 43, 0.1) 0%, rgba(10, 16, 43, 0.4) 74%, rgba(10, 16, 43, 0.62) 100%);
}

.hero-fade-slide .hero-scroll-caption {
    position: absolute;
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    padding: 0 1rem;
    text-align: center;
    width: min(92vw, 900px);
    gap: 0.14rem;
    max-width: min(92vw, 900px);
}

.hero-fade-slide .hero-scroll-caption strong,
.hero-fade-slide .hero-scroll-caption span {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero-fade-slide .hero-scroll-caption strong {
    font-size: clamp(1.55rem, 4.2vw, 3rem);
    display: block;
    font-family: var(--font-base);
    text-transform: uppercase;
    line-height: 1.08;
}

.hero-fade-slide .hero-scroll-caption span {
    font-size: 1rem;
    display: block;
}

.hero-fade-slide .hero-scroll-caption a {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-base);
    font-size: 0.96rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 0.6rem;
    background: var(--brand);
    border-radius: 6px;
    padding: 0.5rem 0.95rem;
    justify-self: center;
    align-self: center;
}

.hero-fade-slide .hero-scroll-caption a:hover,
.hero-fade-slide .hero-scroll-caption a:focus-visible {
    background: var(--brand-dark);
}

.home-page .menu-toggle,
.home-page .site-nav {
    display: none !important;
}

.home-page .nav-wrap {
    justify-content: flex-start;
    align-items: center;
    padding-top: 0.45rem;
}

.home-page .brand {
    margin-right: auto;
}

.home-page .brand-logo {
    height: 104px;
    max-width: min(84vw, 760px);
}

.home-page .featured-button {
    margin-left: auto;
    align-self: center;
}

.home-page .hero-fade-slide .hero-scroll-caption a {
    display: inline-flex;
    width: auto;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    border: 0;
    width: 2.1rem;
    height: 3.6rem;
    background: rgba(255, 255, 255, 0.9);
    color: #3a3a3a;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow.prev {
    left: 0;
}

.hero-arrow.next {
    right: 0;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    background: #ffffff;
}

.hero-arrow:active {
    transform: translateY(-50%) scale(0.98);
}

.hero-scroll {
    display: none;
}

.hero-scroll-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-scroll-card:hover,
.hero-scroll-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 31, 120, 0.18);
}

.hero-scroll-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hero-scroll-caption {
    padding: 0.85rem 0.95rem 0.95rem;
    display: grid;
    gap: 0.18rem;
}

.hero-scroll-caption strong {
    font-size: 0.98rem;
    color: var(--text);
}

.hero-scroll-caption span {
    color: var(--muted);
    font-size: 0.88rem;
}

.home-services {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(235, 245, 255, 0.7));
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-services-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 0.4rem;
    color: #35383e;
}

.home-services-accent {
    width: 5.2rem;
    height: 0.35rem;
    border-radius: 999px;
    margin: 0 auto 2.2rem;
    background: #0a09f8;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem 1rem;
}

.service-feature {
    display: grid;
    grid-template-columns: 4.1rem 1fr;
    gap: 0.8rem;
    align-items: start;
    border-radius: 0.8rem;
    padding: 0.25rem 0.2rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-icon {
    width: 3.9rem;
    height: 3.9rem;
    color: #0a09f8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    transition: transform 0.2s ease, color 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon svg .service-icon-cutout {
    fill: #f2f2f4;
    stroke: none;
}

.service-feature:hover,
.service-feature:focus-within {
    background: rgba(10, 9, 248, 0.05);
    transform: translateY(-1px);
}

.service-feature:hover .service-icon,
.service-feature:focus-within .service-icon {
    color: #0a09f8;
    background: rgba(10, 9, 248, 0.09);
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 8px 10px rgba(10, 9, 248, 0.22));
}

.service-feature h3 {
    margin: 0 0 0.35rem;
    font-size: clamp(1rem, 1.15vw, 1.32rem);
    color: #36373b;
}

.service-feature p {
    margin: 0;
    color: #595a61;
    line-height: 1.5;
    font-size: clamp(0.9rem, 0.98vw, 1rem);
}

.leadership-section {
    background: linear-gradient(180deg, rgba(234, 242, 255, 0.95), rgba(227, 248, 244, 0.88));
    padding-top: 50px;
    padding-bottom: 50px;
}

.leadership-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.3rem;
}

.leadership-accent {
    width: 4.8rem;
    height: 0.28rem;
    border-radius: 999px;
    margin: 0 auto 1.35rem;
    background: var(--brand);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.leadership-card {
    background: #f4f5f7;
    border: 1px solid #d9dde6;
    box-shadow: 0 4px 9px rgba(17, 24, 39, 0.11);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leadership-card:hover,
.leadership-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(17, 24, 39, 0.2);
}

.leader-media {
    width: 100%;
    height: 14rem;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.leader-placeholder {
    background: #ececec;
    display: grid;
    place-items: center;
}

.leader-placeholder svg {
    width: 42%;
    height: 42%;
    fill: none;
    stroke: #0a09f8;
    stroke-width: 1.5;
}

.leader-body {
    background: #f2f2f2;
    padding: 0.65rem 0.8rem 0.8rem;
}

.leader-body h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
}

.leader-body p {
    margin: 0.22rem 0 0;
    color: #4b5563;
    font-size: 0.84rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.departments-page {
    width: 100%;
}

.departments-page .container {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 0;
}

article.prose:has(#post-120),
article.prose:has(#post-120) #post-120,
article.prose:has(#post-120) .content-wrapper,
article.prose:has(#post-120) .entry-content {
    width: 100% !important;
    max-width: var(--feature-media-max-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

article.prose:has(#post-120) {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 901px) {
    main > article:has(#post-120),
    main > .container:has(#post-120) {
        width: 100%;
        max-width: calc(var(--feature-media-max-width) + 2.4rem);
        margin-left: auto;
        margin-right: auto;
        padding-left: clamp(1rem, 2vw, 1.35rem);
        padding-right: clamp(1rem, 2vw, 1.35rem);
    }
}

.departments-title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.departments-page .departments-title,
.departments-page .departments-accent {
    display: none;
}

.departments-accent {
    width: 7rem;
    max-width: 100%;
    height: 0.38rem;
    border-radius: 999px;
    background: var(--brand);
    margin: 0 auto 2rem;
}

.departments-layout {
    display: grid;
    grid-template-columns: minmax(234px, 0.8fr) minmax(0, 2.35fr);
    gap: 1.3rem;
    align-items: start;
}

.departments-nav {
    background: #f1f1f1;
    border: 1px solid #d8d8d8;
    border-radius: 0.4rem;
    overflow: hidden;
}

.department-row {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #d5d5d5;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.58rem 0.86rem;
    min-height: 2.75rem;
    color: #7a7d82;
    font-family: var(--font-base);
    font-size: clamp(0.86rem, 1.15vw, 1.18rem);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.department-row:last-child {
    border-bottom: 0;
}

.department-row:hover,
.department-row:focus-visible {
    background: rgba(10, 9, 248, 0.1);
    outline: none;
}

.department-row.active {
    color: var(--brand);
}

.department-arrow {
    font-family: var(--font-base);
    font-size: 1.08rem;
    line-height: 1;
    color: currentColor;
}

.department-preview {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.department-image {
    width: 100%;
    display: block;
    height: 18rem;
    object-fit: cover;
    border: 1px solid #d4d4d4;
}

.department-copy h2 {
    margin-top: 0.2rem;
    font-size: clamp(2.2rem, 2.2vw, 3rem);
}

.department-copy {
    width: 100%;
    min-width: 0;
    max-width: 36rem;
    display: grid;
    align-content: start;
    gap: 0.8rem;
}

@media (min-width: 901px) {
    .departments-layout {
        grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2.6fr);
        gap: 1rem;
    }

    .department-preview {
        grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.35fr);
        gap: 1rem;
    }

    .department-copy {
        max-width: none;
    }
}

.department-copy p {
    margin-top: 0;
    margin-bottom: 0;
    color: #5f646a;
    font-size: clamp(1rem, 1.1vw, 1.35rem);
    line-height: 1.5;
    max-width: 36rem;
}

.btn-read-more {
    margin-top: 0.3rem;
    justify-self: start;
    white-space: nowrap;
}

.section-accent {
    background: linear-gradient(145deg, rgba(10, 9, 248, 0.12), #eef8ea);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.department-detail-copy h1 {
    font-size: clamp(2rem, 3.1vw, 2.7rem);
    margin-bottom: 0.55rem;
}

.department-detail-copy .lead {
    margin-bottom: 0.65rem;
    color: #0a09f8;
}

.department-detail-copy p {
    margin: 0 0 0.7rem;
    color: #0a09f8;
    line-height: 1.68;
}

.department-detail-copy h2 {
    margin: 1rem 0 0.45rem;
    font-size: clamp(1.15rem, 1.4vw, 1.45rem);
    color: #0a09f8;
}

.department-detail-copy ul {
    margin: 0 0 0.95rem;
    padding-left: 1.15rem;
}

.department-detail-copy li {
    margin-bottom: 0.38rem;
    color: #0a09f8;
}

.department-detail-copy .btn {
    margin-top: 0.45rem;
}

.prose {
    max-width: 72ch;
    font-family: var(--font-base);
}

.entry-content p,
.entry-content li,
.prose p,
.prose li {
    overflow-wrap: anywhere;
}

.prose h3 {
    font-size: 18px;
}

.prose figure {
    margin: 0 0 1rem;
}

.careers-photo {
    margin: 0.35rem 0 1.2rem;
}

.careers-photo,
.page-match-careers .single-feat,
.page-match-careers .entry-content > p:first-child:has(img),
.contact-map-frame {
    width: 100%;
    max-width: var(--feature-media-max-width);
    aspect-ratio: var(--feature-media-ratio);
    overflow: hidden;
    border-radius: 0.65rem;
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(13, 24, 58, 0.14);
}

.careers-photo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.careers-email-link,
.careers-email-link:visited {
    color: #0a09f8;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.careers-email-link:hover,
.careers-email-link:focus-visible {
    color: #0707b8;
}

.page-content-polish .single-feat,
.page-content-polish .entry-content > figure,
.page-content-polish .entry-content p,
.page-content-polish .entry-content ul,
.page-content-polish .entry-content ol,
.page-content-polish .entry-content h2,
.page-content-polish .entry-content h3 {
    max-width: 820px;
    margin-left: 0;
    margin-right: auto;
}

.page-content-polish .single-feat,
.page-content-polish .entry-content > figure {
    margin: 0 0 1.2rem;
}

.page-content-polish .single-feat img,
.page-content-polish .entry-content img,
.page-content-polish .entry-content iframe {
    display: block;
    width: 100%;
    max-width: 820px;
    border-radius: 0.65rem;
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(13, 24, 58, 0.14);
}

.contact-email-link,
.contact-email-link:visited {
    color: #0a09f8;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.contact-email-link:hover,
.contact-email-link:focus-visible {
    color: #0707b8;
}

.page-match-careers .single-feat,
.page-match-careers .entry-content > p:first-child:has(img) {
    margin: 0 0 1.2rem;
    margin-left: 0;
    margin-right: auto;
}

.page-match-careers .single-feat img,
.page-match-careers .entry-content > p:first-child:has(img) > img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-map-frame iframe {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    border: 0;
}

.page-match-careers .content-wrapper > .entry-content > p,
.page-match-careers .textwidget > .entry-content > p,
.page-match-careers .content-wrapper > .entry-content > ul,
.page-match-careers .content-wrapper > .entry-content > ol,
.page-match-careers .textwidget > .entry-content > ul,
.page-match-careers .textwidget > .entry-content > ol {
    max-width: 72ch;
    margin-left: 0;
    margin-right: auto;
}

.page-match-careers .at-widgets,
.page-match-careers .at-widgets .container,
.page-match-careers .at-widgets .row {
    max-width: 820px;
}

.page-match-careers .at-widgets .container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.page-match-careers main,
.page-align-services main {
    max-width: calc(var(--feature-media-max-width) + 2.4rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.page-match-careers main > article,
.page-match-careers main > .container,
.page-align-services main > article,
.page-align-services main > article > article,
.page-align-services main > .container {
    width: 100%;
    max-width: calc(var(--feature-media-max-width) + 2.4rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.page-match-careers .content-wrapper,
.page-match-careers .content-wrapper > .entry-content,
.page-match-careers .textwidget,
.page-match-careers .textwidget > .entry-content,
.page-match-careers .prose,
.page-align-services .content-wrapper,
.page-align-services .content-wrapper > .entry-content,
.page-align-services .textwidget,
.page-align-services .textwidget > .entry-content,
.page-align-services .prose,
.page-align-services .entry-content,
.page-align-services .panel-layout,
.page-align-services .panel-grid,
.page-align-services .panel-grid-cell,
.page-align-services .so-panel,
.page-align-services .at-widgets,
.page-align-services .at-widgets .container,
.page-align-services .at-widgets .row {
    width: 100%;
    max-width: var(--feature-media-max-width) !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 0;
    padding-right: 0;
}

.page-match-careers .content-wrapper > .entry-content > p,
.page-match-careers .textwidget > .entry-content > p,
.page-match-careers .content-wrapper > .entry-content > ul,
.page-match-careers .content-wrapper > .entry-content > ol,
.page-match-careers .textwidget > .entry-content > ul,
.page-match-careers .textwidget > .entry-content > ol,
.page-align-services .entry-content > p,
.page-align-services .entry-content > ul,
.page-align-services .entry-content > ol,
.page-align-services .entry-content > h2,
.page-align-services .entry-content > h3,
.page-align-services .textwidget > .entry-content > p,
.page-align-services .textwidget > .entry-content > ul,
.page-align-services .textwidget > .entry-content > ol,
.page-align-services .prose p,
.page-align-services .prose ul,
.page-align-services .prose ol,
.page-align-services .prose h2,
.page-align-services .prose h3 {
    width: 100%;
    max-width: var(--feature-media-max-width) !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.page-align-services .single-feat,
.page-align-services .entry-content > figure,
.page-align-services .prose figure,
.page-align-services figure,
.page-align-services .single-thumb {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.page-align-services .panel-layout {
    display: grid;
    gap: 1.35rem;
}

.page-align-services .acme-abouts .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.page-align-services .acme-abouts .column {
    width: auto;
}

.page-align-services .acme-abouts .single-item {
    height: 100%;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 0.95rem;
    box-shadow: 0 10px 22px rgba(13, 33, 84, 0.08);
    padding: 1rem;
}

.page-align-services .acme-abouts .icon {
    margin-bottom: 0.7rem;
    color: var(--brand);
    font-size: 1.45rem;
    line-height: 1;
}

.page-align-services .acme-abouts .title {
    margin: 0 0 0.55rem;
    color: #223052;
    font-size: 1.05rem;
}

.page-align-services .acme-abouts .details p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.page-align-services .acme-abouts .clearfix {
    display: none;
}

.prose iframe,
article iframe,
figure iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    border: 0;
}

.prose table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    table-layout: fixed;
}

.prose table td,
.prose table th {
    min-width: 10rem;
    padding: 0.65rem;
    vertical-align: top;
}

label {
    display: block;
    margin: 0.8rem 0 0.35rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0.45rem;
    padding: 0.65rem 0.7rem;
    min-height: 2.75rem;
    font: inherit;
    background: #fff;
}

button,
.btn,
.featured-button,
.menu-toggle {
    min-height: 2.6rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    min-height: 1.5rem;
    margin-top: 0.8rem;
    font-weight: 700;
}

.captcha-wrap {
    margin-top: 0.8rem;
}

.form-status.success {
    color: #1f7f0f;
}

.form-status.error {
    color: #9b1b1b;
}

body.modal-open {
    overflow: hidden;
}

.appointment-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.appointment-modal.is-open {
    display: flex;
}

.appointment-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.56);
}

.appointment-modal__dialog {
    position: relative;
    width: min(620px, 96vw);
    max-height: 92vh;
    overflow: auto;
    border-radius: 0.75rem;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    padding: 1rem 1rem 1.15rem;
}

.appointment-modal__dialog h2 {
    margin: -1rem -1rem 0.8rem;
    padding: 0.95rem 2.7rem 0.95rem 1rem;
    font-size: 1.2rem;
    color: #ffffff;
    background: #0a09f8;
}

.appointment-modal__close {
    position: absolute;
    top: 0.48rem;
    right: 0.6rem;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}

.appointment-human-check {
    margin-top: 0.8rem;
    border: 1px dashed rgba(10, 9, 248, 0.5);
    border-radius: 0.5rem;
    padding: 0.65rem;
    background: rgba(10, 9, 248, 0.05);
}

.appointment-human-check__prompt {
    margin: 0 0 0.25rem;
    font-weight: 700;
    color: #0a09f8;
}

.site-footer {
    margin-top: 2rem;
    border-top: 1px solid #2f56c6;
    padding: 1.9rem 0 1.1rem;
    background: linear-gradient(140deg, #0d26a0 0%, #0a09f8 54%, #138ac4 100%);
    color: #ffffff;
}

.footer-meta {
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.3rem;
    flex-wrap: wrap;
}

.footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social a {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--social-hit);
    height: var(--social-hit);
    border-radius: 999px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.footer-social svg {
    width: var(--social-icon);
    height: var(--social-icon);
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.footer-social svg.icon-solid {
    fill: currentColor;
    stroke: none;
}

.footer-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    justify-content: flex-end;
    font-family: var(--font-base);
    font-size: 0.9rem;
}

.footer-contact-strip strong {
    font-weight: 700;
    margin-right: 0.2rem;
}

.footer-contact-strip a {
    text-decoration: underline;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.footer-grid h2 {
    margin-bottom: 0.18rem;
    font-size: 1rem;
}

.footer-grid p,
.footer-grid li {
    margin-top: 0;
    margin-bottom: 0.25rem;
    font-size: 0.92rem;
    line-height: 1.55;
}

.footer-grid h2,
.footer-grid p,
.footer-grid li,
.site-footer a {
    color: #ffffff;
}

.important-links h2 {
    margin-bottom: 0.35rem;
}

.important-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-links li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.important-links li:last-child {
    border-bottom: 0;
}

.important-links a {
    color: #ffffff;
    font-weight: 600;
}

.important-links a:hover,
.important-links a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}

.copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    color: #ffffff;
    margin: 1rem auto 0;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: min(96vw, 980px);
}

.copyright a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.16em;
}

.copyright a:hover,
.copyright a:focus-visible {
    opacity: 0.94;
}

@media (max-width: 700px) {
    .copyright .copyright-line {
        display: block;
    }

    .copyright .copyright-main {
        margin-bottom: 0.2rem;
    }

    .copyright .copyright-links {
        display: block;
    }
}

.legal-pre {
    white-space: pre-wrap;
    overflow-x: auto;
    word-break: break-word;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    padding: 1rem;
    box-shadow: var(--shadow);
    font-family: var(--font-base);
    line-height: 1.65;
}

main {
    padding-top: clamp(1.2rem, 2.2vw, 2rem);
    padding-bottom: clamp(1.5rem, 2.8vw, 2.2rem);
}

body:not(.home-page) main > article,
body:not(.home-page) main > .container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(161, 181, 226, 0.35);
    border-radius: 1rem;
    box-shadow: 0 12px 28px rgba(17, 39, 92, 0.08);
    padding: clamp(1rem, 2vw, 1.35rem);
}

body:not(.home-page) .entry-content p + p {
    margin-top: 0.8rem;
}

.entry-content ul,
.entry-content ol,
.prose ul,
.prose ol {
    padding-left: 1.3rem;
    margin: 0 0 1rem;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 0.5rem;
    top: 0.5rem;
    z-index: 50;
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.4rem;
    border: 1px solid var(--border);
}

.back-to-top {
    position: fixed;
    right: 1.2rem;
    bottom: 6rem;
    z-index: 58;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 4px;
    background: #3a3a3a;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    display: inline-flex;
}

.back-to-top:hover,
.back-to-top:focus-visible {
    background: #1f1f1f;
}

body.nav-open {
    overflow: hidden;
}

.whatsapp-chat {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    bottom: max(1.1rem, env(safe-area-inset-bottom));
    z-index: 60;
    display: inline-flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 0.35rem;
    pointer-events: none;
}

.whatsapp-label {
    background: #3a3a3a;
    color: #ffffff;
    border-radius: 0.7rem;
    padding: 0.3rem 0.45rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    line-height: 1.2;
    font-size: 0.75rem;
    font-weight: 600;
    max-width: 9rem;
    min-width: 7.25rem;
    text-align: center;
    white-space: normal;
    pointer-events: auto;
}

.whatsapp-label span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.05rem;
    color: #ffffff;
}

.whatsapp-float {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    pointer-events: auto;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #1fa954;
    transform: translateY(-1px);
}

.whatsapp-float svg {
    width: 1.36rem;
    height: 1.36rem;
    display: block;
    fill: currentColor;
}

@media (max-width: 900px) {
    .page-align-services .acme-abouts .row {
        grid-template-columns: 1fr 1fr;
    }

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.85rem;
    }

    .service-feature {
        grid-template-columns: 3.5rem 1fr;
        gap: 0.7rem;
    }

    .service-icon {
        width: 3.25rem;
        height: 3.25rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr 1fr;
    }

    .leader-body h3 {
        font-size: 1rem;
    }

    .leader-body p {
        font-size: 0.82rem;
    }

    .departments-layout {
        grid-template-columns: 1fr;
    }

    .department-preview {
        grid-template-columns: 1fr;
    }

    .department-image {
        height: 16rem;
    }

    .hero-grid,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    body.has-sticky-header {
        padding-top: 0;
    }

    .department-detail-copy h1 {
        font-size: clamp(1.7rem, 7.5vw, 2.2rem);
    }

    .department-detail-copy h2 {
        font-size: clamp(1.05rem, 4.4vw, 1.3rem);
    }
}

@media (max-width: 700px) {
    .page-align-services .acme-abouts .row {
        grid-template-columns: 1fr;
    }

    :root {
        --social-hit: 2rem;
        --social-icon: 0.95rem;
    }

    .top-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.45rem 0 1.3rem;
    }

    .top-social {
        width: 100%;
        justify-content: center;
    }

    .site-header.is-sticky {
        position: static;
        box-shadow: none;
    }

    body.has-sticky-header {
        padding-top: 0;
    }

    .top-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem 0.9rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .info-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.4rem;
        padding: 0.45rem 0;
    }

    .info-icon-box {
        gap: 0;
        justify-content: center;
    }

    .info-icon {
        width: 1.45rem;
        height: 1.45rem;
    }

    .info-icon svg {
        width: 0.95rem;
        height: 0.95rem;
    }

    .info-copy {
        display: none;
    }

    .featured-button {
        order: 2;
        margin-left: auto;
        margin-right: 0;
        font-size: 0.9rem;
        padding: 0.55rem 0.9rem;
    }

    .menu-toggle {
        display: inline-block;
        order: 3;
        margin-left: auto;
    }

    .brand-logo {
        height: 58px;
    }

    .social-link {
        width: var(--social-hit);
        height: var(--social-hit);
    }

    .whatsapp-chat {
        right: 1.875rem;
        bottom: 1.875rem;
        gap: 0;
    }

    .whatsapp-label {
        display: none;
    }

    .whatsapp-label span {
        font-size: 0.76rem;
    }

    .whatsapp-float {
        width: 3.5rem;
        height: 3.5rem;
    }

    .whatsapp-float svg {
        width: 1.62rem;
        height: 1.62rem;
    }

    .site-nav {
        display: none;
        width: 100%;
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 0.7rem;
        padding: 0.35rem 0.4rem 0.5rem;
        order: 4;
        box-shadow: 0 8px 20px rgba(15, 31, 80, 0.12);
    }

    .inner-main-title {
        min-height: 100px;
    }

    .inner-main-title .entry-header {
        padding: 1.2rem 0 0.95rem;
    }

    .inner-main-title .entry-title {
        font-size: 28px;
    }

    .site-nav.open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        padding-top: 0.3rem;
        gap: 0.35rem;
    }

    .site-nav a {
        display: block;
        padding: 0.65rem 0.8rem;
    }

    .nav-wrap {
        flex-wrap: wrap;
    }

    .prose table td,
    .prose table th {
        min-width: 0;
        width: auto;
        padding: 0.5rem;
        overflow-wrap: anywhere;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .hero-showcase-copy h1 {
        font-size: clamp(1.9rem, 8vw, 2.4rem);
    }

    .hero-fade-carousel {
        min-height: 0;
        aspect-ratio: 4 / 5;
        border-radius: 0;
    }

    .home-page .hero-fade-carousel {
        min-height: 0;
        aspect-ratio: 4 / 5;
        background: #0b0b0b;
    }

    .home-page .hero-fade-slide img {
        height: 100%;
        object-fit: contain;
        object-position: center center;
        background: transparent;
    }

    .home-page .hero-fade-slide::after {
        background: linear-gradient(180deg, rgba(8, 14, 40, 0.06) 0%, rgba(8, 14, 40, 0.44) 100%);
    }

    .hero-fade-slide .hero-scroll-caption {
        left: 0;
        right: 0;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        max-width: none;
        padding: 0 1rem 0 1.2rem;
    }

    .hero-fade-slide .hero-scroll-caption strong {
        font-size: clamp(1.2rem, 6.8vw, 1.9rem);
        text-transform: uppercase;
    }

    .hero-fade-slide .hero-scroll-caption a {
        font-size: 0.92rem;
        margin-top: 0.15rem;
    }

    .home-page .hero-fade-slide .hero-scroll-caption {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        width: 100%;
        max-width: none;
        padding: 0.62rem 1rem 0.82rem;
        background: rgba(8, 14, 40, 0.82);
        text-align: center;
    }

    .home-page .hero-fade-slide .hero-scroll-caption strong {
        font-size: clamp(1.02rem, 5.2vw, 1.3rem);
    }

    .home-page .hero-fade-slide .hero-scroll-caption a {
        display: inline-flex;
        width: auto;
        white-space: nowrap;
        justify-self: center;
        font-size: 0.88rem;
        padding: 0.44rem 0.82rem;
    }

    .home-page .hero-arrow {
        top: 37%;
    }

    .home-page .brand-logo {
        height: 70px;
    }

    .hero-arrow {
        width: 1.9rem;
        height: 3.2rem;
        font-size: 1.4rem;
    }

    .back-to-top.visible {
        display: none;
    }

    .site-footer {
        padding: 1.45rem 0 0.95rem;
    }

    .site-footer .footer-grid {
        gap: 0.95rem;
    }

    .site-footer .footer-grid > div {
        padding: 0.72rem 0.8rem;
        border-radius: 0.7rem;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .site-footer .footer-grid h2 {
        margin-bottom: 0.45rem;
        font-size: 0.96rem;
    }

    .site-footer .footer-grid p,
    .site-footer .footer-grid li,
    .site-footer .footer-grid a {
        font-size: 0.86rem;
        line-height: 1.58;
    }

    .site-footer .important-links li {
        padding: 0.38rem 0;
    }

    .site-footer .copyright {
        margin-top: 0.82rem;
        padding-top: 0.76rem;
        border-top: 1px solid rgba(255, 255, 255, 0.24);
        font-size: 0.82rem;
        line-height: 1.5;
        justify-content: center;
        text-align: center;
    }

    .site-footer .copyright a {
        display: inline-block;
        margin: 0 0.2rem;
    }

    .site-footer .footer-grid > div {
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
    }

    .site-footer .footer-grid {
        gap: 1.25rem !important;
    }

    .site-footer .footer-grid h2 {
        margin: 0 0 0.56rem !important;
        font-size: 1.04rem !important;
    }

    .site-footer .footer-grid p,
    .site-footer .footer-grid li,
    .site-footer .footer-grid a {
        font-size: 0.98rem !important;
        line-height: 1.72 !important;
    }

    .site-footer .important-links li {
        padding: 0.52rem 0 !important;
    }

    .site-footer .copyright {
        display: block;
        margin-top: 1.05rem !important;
        padding-top: 1rem !important;
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .site-footer .copyright a {
        display: inline;
        margin: 0 0.18rem 0 0;
    }

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .footer-contact-strip {
        justify-content: flex-start;
    }

    .copyright {
        justify-content: flex-start;
        text-align: left;
    }


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
    .back-to-top {
        right: 0.8rem;
        bottom: 4.8rem;
        width: 2.25rem;
        height: 2.25rem;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .home-services-accent {
        margin-bottom: 1.4rem;
    }

    .service-feature {
        grid-template-columns: 3.3rem 1fr;
        gap: 0.65rem;
    }

    .service-icon {
        width: 3rem;
        height: 3rem;
    }

    .service-feature h3 {
        font-size: 1.05rem;
    }

    .service-feature p {
        font-size: 0.88rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leader-media {
        height: 12.5rem;
    }

    .leader-body h3 {
        font-size: 1.05rem;
    }

    .leader-body p {
        font-size: 0.84rem;
    }

    .department-row {
        padding: 0.65rem 0.75rem;
        min-height: 3.1rem;
        font-size: 0.82rem;
    }

    .department-arrow {
        font-size: 1rem;
    }

    .departments-accent {
        margin-bottom: 1.2rem;
    }

    .department-row {
        min-height: 3.1rem;
        padding: 0.65rem 0.75rem;
        font-size: 0.82rem;
    }

    .department-arrow {
        font-size: 1rem;
    }

    .department-copy h2 {
        font-size: 1.6rem;
    }

    .department-copy p {
        font-size: 1rem;
    }
}

    @media (max-width: 700px) {
        .site-header,
        .site-header.is-sticky {
            position: fixed !important;
            top: 0;
            left: 0;
            right: 0;
            z-index: 80;
            box-shadow: 0 8px 20px rgba(10, 20, 52, 0.22);
        }

        body {
            padding-top: 140px !important;
        }

        .top-header-inner {
            gap: 0.22rem !important;
            padding: 0.34rem 0 0.28rem !important;
        }

        .top-social {
            gap: 0.18rem !important;
        }

        .top-social a {
            width: 1.68rem !important;
            height: 1.68rem !important;
        }

        .top-social svg {
            width: 0.82rem !important;
            height: 0.82rem !important;
        }

        .top-links {
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 auto !important;
            align-self: stretch !important;
            display: flex !important;
            flex-wrap: nowrap !important;
            justify-content: center !important;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            gap: 0.2rem 0.54rem !important;
            font-size: 0.74rem !important;
            line-height: 1.12 !important;
            padding-bottom: 0.04rem;
            scrollbar-width: none;
        }

        .top-links::-webkit-scrollbar {
            display: none;
        }

        .brand-logo {
            height: 39px !important;
        }

        .brand-subtitle,
        .site-branding p {
            font-size: 0.63rem !important;
            line-height: 1.25 !important;
            margin-top: 0.06rem;
        }

        .info-grid {
            padding: 0.26rem 0 !important;
            gap: 0.26rem !important;
        }

        .featured-button {
            font-size: 0.72rem !important;
            padding: 0.32rem 0.58rem !important;
            min-height: 0;
        }

        .inner-main-title {
            min-height: 78px !important;
            margin-top: 42px !important;
        }

        .inner-main-title .entry-header {
            padding: 0.82rem 0 0.68rem !important;
        }

        .inner-main-title .entry-title {
            font-size: 2rem !important;
        }
    }

    @media (max-width: 700px) {
        body .site-footer {
            padding: 1.55rem 0 1.02rem !important;
        }

        body .site-footer .footer-grid {
            grid-template-columns: 1fr !important;
            gap: 1.08rem !important;
        }

        body .site-footer .footer-grid h2 {
            margin: 0 0 0.44rem !important;
            font-size: 1rem !important;
            line-height: 1.3 !important;
        }

        body .site-footer .footer-grid p,
        body .site-footer .footer-grid li,
        body .site-footer .footer-grid a {
            font-size: 0.94rem !important;
            line-height: 1.62 !important;
        }

        body .site-footer .important-links li {
            padding: 0.42rem 0 !important;
        }

        body .site-footer .copyright {
            margin-top: 0.92rem !important;
            padding-top: 0.84rem !important;
            border-top: 1px solid rgba(255, 255, 255, 0.28) !important;
            font-size: 0.86rem !important;
            line-height: 1.58 !important;
            text-align: left !important;
            justify-content: flex-start !important;
        }

        body .site-footer .copyright a {
            display: inline !important;
            margin-right: 0.2rem;
        }
    }

    @media (max-width: 700px) {
        body.home-page .hero-fade-carousel {
            min-height: clamp(220px, 56vw, 340px) !important;
            height: clamp(220px, 56vw, 340px) !important;
            aspect-ratio: auto !important;
            background: #0b0b0b !important;
        }

        body.home-page .hero-fade-slide img {
            width: 100% !important;
            height: 100% !important;
            object-fit: contain !important;
            object-position: center center !important;
            background: #0b0b0b !important;
        }
    }

    @media (max-width: 700px) {
        body .site-footer .copyright {
            width: 100% !important;
            text-align: center !important;
            justify-content: center !important;
        }

        body .site-footer .copyright .copyright-main,
        body .site-footer .copyright .copyright-links {
            display: block !important;
            width: 100% !important;
            text-align: center !important;
        }
    }
