:root {
    --pf-color-primary: #163a5f;
    --pf-color-primary-dark: #102b46;
    --pf-color-primary-soft: #eaf1f8;

    --pf-color-secondary: #d6a84b;
    --pf-color-secondary-dark: #b98e36;
    --pf-color-secondary-soft: #fbf4e5;

    --pf-color-text: #1e293b;
    --pf-color-heading: #0f2740;
    --pf-color-muted: #64748b;
    --pf-color-border: #dce3ea;

    --pf-color-bg: #f7f9fc;
    --pf-color-surface: #ffffff;
    --pf-color-surface-soft: #f1f5f9;

    --pf-color-white: #ffffff;
    --pf-color-black: #0f172a;

    --pf-shadow-soft: 0 12px 35px rgb(15 23 42 / 0.08);
    --pf-shadow-medium: 0 18px 48px rgb(15 23 42 / 0.12);

    --pf-radius-sm: 8px;
    --pf-radius-md: 14px;
    --pf-radius-lg: 22px;

    --pf-container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--pf-color-text);
    background: var(--pf-color-bg);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.pf-school-template--01 {
    min-height: 100vh;
    background: var(--pf-color-bg);
    color: var(--pf-color-text);
}

::selection {
    background: var(--pf-color-primary);
    color: var(--pf-color-white);
}

.pf-container {
    width: min(100% - 40px, var(--pf-container));
    margin-inline: auto;
}

.pf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.pf-btn-primary {
    background: var(--pf-color-primary);
    color: var(--pf-color-white);
    border: 1px solid var(--pf-color-primary);
    box-shadow: 0 8px 20px rgb(22 58 95 / 0.18);
}

.pf-btn-primary:hover {
    background: var(--pf-color-primary-dark);
    border-color: var(--pf-color-primary-dark);
    color: var(--pf-color-white);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgb(22 58 95 / 0.24);
}

.pf-btn-outline {
    background: transparent;
    color: var(--pf-color-primary);
    border: 1px solid var(--pf-color-primary);
}

.pf-btn-outline:hover {
    background: var(--pf-color-primary);
    border-color: var(--pf-color-primary);
    color: var(--pf-color-white);
}

.pf-btn-lg {
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
}

.pf-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.pf-badge-primary {
    background: rgb(255 255 255 / 0.15);
    color: #ffffff;
    border: 1px solid rgb(255 255 255 / 0.28);
}

/*
|--------------------------------------------------------------------------
| School 01 — Main
|--------------------------------------------------------------------------
*/

.pf-school-main {
    width: 100%;
}

/*
|--------------------------------------------------------------------------
| School 01 — About 01
|--------------------------------------------------------------------------
*/

.pf-school-about {
    position: relative;
    width: 100%;
    padding: 88px 0;
    background: #ffffff;
}

.pf-school-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.pf-school-about__media {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 20px;
    background: var(--pf-color-surface);
    box-shadow: 0 18px 44px rgb(15 23 42 / 0.10);
}

.pf-school-about__image {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.pf-school-about__content {
    min-width: 0;
    max-width: 620px;
}

.pf-school-about__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eaf1f8;
    color: var(--pf-color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.pf-school-about__title {
    margin: 0;
    color: var(--pf-color-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.pf-school-about__description {
    margin-top: 22px;
    color: var(--pf-color-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.pf-school-about__description p {
    margin: 0 0 16px;
}

.pf-school-about__description p:last-child {
    margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {
    .pf-school-about {
        padding: 64px 0;
    }

    .pf-school-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pf-school-about__content {
        max-width: none;
    }

    .pf-school-about__media,
    .pf-school-about__image {
        min-height: 360px;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .pf-container {
        width: min(100% - 24px, var(--pf-container));
    }
}

@media (max-width: 600px) {
    .pf-school-about {
        padding: 48px 0;
    }

    .pf-school-about__grid {
        gap: 28px;
    }

    .pf-school-about__media {
        min-height: 280px;
        border-radius: 14px;
    }

    .pf-school-about__image {
        height: 280px;
        min-height: 280px;
    }

    .pf-school-about__title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .pf-school-about__description {
        margin-top: 18px;
        font-size: 0.95rem;
        line-height: 1.7;
    }
}


/*
|--------------------------------------------------------------------------
| School 01 — Services 01
|--------------------------------------------------------------------------
*/

.pf-school-services {
    width: 100%;
    padding: 88px 0;
    background: var(--pf-color-surface, #f7f9fc);
}

.pf-school-services__header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.pf-school-services__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--pf-color-primary, #163a5f);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pf-school-services__title {
    margin: 0;
    color: var(--pf-color-heading, #1e293b);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.pf-school-services__description {
    margin-top: 18px;
    color: var(--pf-color-muted, #64748b);
    font-size: 1rem;
    line-height: 1.75;
}

.pf-school-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pf-school-services__card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--pf-color-border, #dce3ea);
    border-radius: 18px;
    box-shadow: var(--pf-shadow-soft);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.pf-school-services__card:hover {
    transform: translateY(-5px);
    border-color: rgb(22 58 95 / 0.28);
    box-shadow: var(--pf-shadow-medium);
}

.pf-school-services__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: #eaf1f8;
    color: var(--pf-color-primary, #163a5f);
    font-size: 1.25rem;
}

.pf-school-services__card-title {
    margin: 0;
    color: var(--pf-color-text, #1e293b);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
}

.pf-school-services__card-description {
    margin: 12px 0 0;
    color: var(--pf-color-muted, #64748b);
    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 980px) {
    .pf-school-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pf-school-services {
        padding: 56px 0;
    }

    .pf-school-services__header {
        margin-bottom: 32px;
        text-align: left;
    }

    .pf-school-services__grid {
        grid-template-columns: 1fr;
    }

    .pf-school-services__card {
        padding: 24px;
    }
}


/*
|--------------------------------------------------------------------------
| School 01 — Gallery 01
|--------------------------------------------------------------------------
*/

.pf-school-gallery {
    width: 100%;
    padding: 88px 0;
    background: #ffffff;
}

.pf-school-gallery__header {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.pf-school-gallery__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eaf1f8;
    color: var(--pf-color-primary, #163a5f);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pf-school-gallery__title {
    margin: 0;
    color: var(--pf-color-heading, #1e293b);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.pf-school-gallery__description {
    margin-top: 18px;
    color: var(--pf-color-muted, #64748b);
    font-size: 1rem;
    line-height: 1.75;
}

.pf-school-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 18px;
}

.pf-school-gallery__item {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 16px;
    background: var(--pf-color-surface, #f7f9fc);
}

.pf-school-gallery__item--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.pf-school-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 300ms ease,
        filter 300ms ease;
}

.pf-school-gallery__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgb(15 23 42 / 0.24) 100%
        );
    pointer-events: none;
}

.pf-school-gallery__item:hover
.pf-school-gallery__image {
    transform: scale(1.045);
}

.pf-school-gallery__empty {
    padding: 42px;
    border: 1px dashed var(--pf-color-border, #dce3ea);
    border-radius: 16px;
    background: var(--pf-color-surface, #f7f9fc);
    color: var(--pf-color-muted, #64748b);
    text-align: center;
}

@media (max-width: 980px) {

    .pf-school-gallery__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {

    .pf-school-gallery {
        padding: 56px 0;
    }

    .pf-school-gallery__header {
        margin-bottom: 32px;
        text-align: left;
    }

    .pf-school-gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .pf-school-gallery__item--featured {
        grid-column: auto;
        grid-row: auto;
    }
}

/*
|--------------------------------------------------------------------------
| School 01 — Testimonials 01
|--------------------------------------------------------------------------
*/

.pf-school-testimonials {
    width: 100%;
    padding: 88px 0;
    background: var(--pf-color-surface, #f7f9fc);
}

.pf-school-testimonials__header {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.pf-school-testimonials__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--pf-color-primary, #163a5f);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pf-school-testimonials__title {
    margin: 0;
    color: var(--pf-color-heading, #1e293b);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.pf-school-testimonials__description {
    margin-top: 18px;
    color: var(--pf-color-muted, #64748b);
    font-size: 1rem;
    line-height: 1.75;
}

.pf-school-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pf-school-testimonials__card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--pf-color-border, #dce3ea);
    border-radius: 18px;
    box-shadow: var(--pf-shadow-soft);
}

.pf-school-testimonials__quote {
    margin-bottom: 18px;
    color: var(--pf-color-primary, #163a5f);
    font-size: 1.4rem;
}

.pf-school-testimonials__text {
    margin: 0;
    color: var(--pf-color-text, #1e293b);
    font-size: 0.95rem;
    line-height: 1.75;
}

.pf-school-testimonials__person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.pf-school-testimonials__avatar,
.pf-school-testimonials__avatar-placeholder {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
}

.pf-school-testimonials__avatar {
    object-fit: cover;
}

.pf-school-testimonials__avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf1f8;
    color: var(--pf-color-primary, #163a5f);
    font-weight: 800;
}

.pf-school-testimonials__person-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.pf-school-testimonials__name {
    color: var(--pf-color-text, #1e293b);
    font-size: 0.92rem;
}

.pf-school-testimonials__role {
    color: var(--pf-color-muted, #64748b);
    font-size: 0.78rem;
}

.pf-school-testimonials__empty {
    padding: 40px;
    border: 1px dashed var(--pf-color-border, #dce3ea);
    border-radius: 16px;
    background: #ffffff;
    color: var(--pf-color-muted, #64748b);
    text-align: center;
}

@media (max-width: 980px) {
    .pf-school-testimonials__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pf-school-testimonials {
        padding: 56px 0;
    }

    .pf-school-testimonials__header {
        margin-bottom: 32px;
        text-align: left;
    }

    .pf-school-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/*
|--------------------------------------------------------------------------
| School 01 — Contact 01
|--------------------------------------------------------------------------
*/

.pf-school-contact {
    width: 100%;
    padding: 88px 0;
    background: #ffffff;
}

.pf-school-contact__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 48px;
    align-items: stretch;
    padding: 48px;
    border: 1px solid var(--pf-color-border, #dce3ea);
    border-radius: 22px;
    background: var(--pf-color-surface, #f7f9fc);
}

.pf-school-contact__content {
    min-width: 0;
}

.pf-school-contact__eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--pf-color-primary, #163a5f);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pf-school-contact__title {
    margin: 0;
    color: var(--pf-color-heading, #1e293b);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.pf-school-contact__description {
    max-width: 640px;
    margin-top: 18px;
    color: var(--pf-color-muted, #64748b);
    font-size: 1rem;
    line-height: 1.75;
}

.pf-school-contact__details {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.pf-school-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pf-school-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--pf-color-primary, #163a5f);
}

.pf-school-contact__item > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pf-school-contact__label {
    color: var(--pf-color-muted, #64748b);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pf-school-contact__item a,
.pf-school-contact__item span {
    color: var(--pf-color-text, #1e293b);
    text-decoration: none;
}

.pf-school-contact__action {
    display: flex;
}

.pf-school-contact__action-card {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 34px;
    border-radius: 18px;
    background: #1e293b;
    color: #ffffff;
}

.pf-school-contact__action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: rgb(255 255 255 / 0.10);
    font-size: 1.25rem;
}

.pf-school-contact__action-card h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
}

.pf-school-contact__action-card p {
    margin: 12px 0 24px;
    color: rgb(255 255 255 / 0.72);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .pf-school-contact__panel {
        grid-template-columns: 1fr;
        padding: 36px;
    }
}

@media (max-width: 600px) {
    .pf-school-contact {
        padding: 56px 0;
    }

    .pf-school-contact__panel {
        gap: 30px;
        padding: 24px;
        border-radius: 16px;
    }

    .pf-school-contact__action-card {
        padding: 26px;
    }
}

/*
|--------------------------------------------------------------------------
| School 01 — Hero 01
|--------------------------------------------------------------------------
*/

.pf-school-hero-section {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    background: #1e293b;
}

.pf-school-hero-section__media,
.pf-school-hero-section__overlay {
    position: absolute;
    inset: 0;
}

.pf-school-hero-section__media {
    z-index: 0;
}

.pf-school-hero-section__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center;
}

.pf-school-hero-section__overlay {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgb(8 30 50 / 0.88) 0%,
            rgb(13 46 76 / 0.72) 42%,
            rgb(22 58 95 / 0.28) 75%,
            rgb(22 58 95 / 0.06) 100%
        );
}

.pf-school-hero-section .pf-container {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 620px;
    align-items: center;
}

.pf-school-hero-section__content {
    width: min(100%, 720px);
    padding: 90px 0;
    color: #ffffff;
}

.pf-school-hero-section__eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgb(255 255 255 / 0.28);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.10);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.pf-school-hero-section__title {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.pf-school-hero-section__description {
    max-width: 620px;
    margin-top: 22px;
    color: rgb(255 255 255 / 0.84);
    font-size: 1.08rem;
    line-height: 1.75;
}

.pf-school-hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .pf-school-hero-section,
    .pf-school-hero-section__image,
    .pf-school-hero-section .pf-container {
        min-height: 560px;
    }

    .pf-school-hero-section__content {
        padding: 70px 0;
    }
}

@media (max-width: 600px) {
    .pf-school-hero-section,
    .pf-school-hero-section__image,
    .pf-school-hero-section .pf-container {
        min-height: 520px;
    }

    .pf-school-hero-section__overlay {
        background: rgb(8 30 50 / 0.72);
    }

    .pf-school-hero-section__content {
        padding: 60px 0;
    }

    .pf-school-hero-section__title {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .pf-school-hero-section__description {
        font-size: 0.98rem;
    }

    .pf-school-hero-section__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/*
|--------------------------------------------------------------------------
| School 01 — Academic Blue/Gold Upgrade Layer
|--------------------------------------------------------------------------
*/

.pf-school-about,
.pf-school-gallery,
.pf-school-contact {
    background: var(--pf-color-white);
}

.pf-school-services,
.pf-school-testimonials {
    background:
        linear-gradient(
            180deg,
            #f4f7fb 0%,
            var(--pf-color-bg) 100%
        );
}

.pf-school-about__eyebrow,
.pf-school-services__eyebrow,
.pf-school-gallery__eyebrow,
.pf-school-testimonials__eyebrow,
.pf-school-contact__eyebrow {
    background: var(--pf-color-secondary-soft);
    color: var(--pf-color-primary);
    border: 1px solid rgb(214 168 75 / 0.22);
}

.pf-school-services__card,
.pf-school-testimonials__card {
    border-color: var(--pf-color-border);
    border-radius: var(--pf-radius-lg);
    box-shadow: var(--pf-shadow-soft);
}

.pf-school-services__card:hover,
.pf-school-testimonials__card:hover {
    border-color: rgb(22 58 95 / 0.24);
    box-shadow: var(--pf-shadow-medium);
}

.pf-school-services__icon,
.pf-school-testimonials__avatar-placeholder {
    background: var(--pf-color-primary-soft);
    color: var(--pf-color-primary);
}

.pf-school-gallery__item {
    border: 1px solid var(--pf-color-border);
    box-shadow: var(--pf-shadow-soft);
}

.pf-school-contact__panel {
    border-color: var(--pf-color-border);
    background:
        linear-gradient(
            135deg,
            #f7f9fc 0%,
            #eef3f8 100%
        );
    box-shadow: var(--pf-shadow-soft);
}

.pf-school-contact__action-card {
    background:
        linear-gradient(
            145deg,
            var(--pf-color-primary-dark),
            var(--pf-color-primary)
        );
    box-shadow: 0 20px 50px rgb(22 58 95 / 0.20);
}

.pf-school-contact__action-icon {
    color: var(--pf-color-secondary);
}

.pf-school-contact__action-card .pf-btn-primary,
.pf-school-hero-section .pf-btn-primary {
    background: var(--pf-color-secondary);
    border-color: var(--pf-color-secondary);
    color: #172033;
}

.pf-school-contact__action-card .pf-btn-primary:hover,
.pf-school-hero-section .pf-btn-primary:hover {
    background: var(--pf-color-secondary-dark);
    border-color: var(--pf-color-secondary-dark);
    color: #172033;
}

.pf-school-hero-section .pf-btn-outline {
    color: var(--pf-color-white);
    border-color: rgb(255 255 255 / 0.62);
    background: rgb(255 255 255 / 0.04);
}

.pf-school-hero-section .pf-btn-outline:hover {
    color: var(--pf-color-primary-dark);
    background: var(--pf-color-white);
    border-color: var(--pf-color-white);
}

.pf-school-hero-section__eyebrow {
    border-color: rgb(255 255 255 / 0.24);
    background: rgb(255 255 255 / 0.10);
}

.pf-school-hero-section__eyebrow::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--pf-color-secondary);
    box-shadow: 0 0 0 4px rgb(214 168 75 / 0.18);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}

