:root {
    --ink: #102033;
    --muted: #687587;
    --line: #e6ebf2;
    --primary: #0d6efd;
    --primary-dark: #084bb2;
    --teal: #20b486;
    --rose: #f25f5c;
    --violet: #6f42c1;
    --accent: #ffbf3d;
    --soft: #f4f8fc;
    --success: #0f9f6e;
    --radius: 8px;
    --shadow: 0 18px 50px rgba(16, 32, 51, .10);
    --shadow-strong: 0 28px 70px rgba(16, 32, 51, .16);
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background: #fbfdff;
    font-family: "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}

.site-accent-bar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1040;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal), var(--accent));
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 14px;
    color: #fff;
    background: var(--ink);
    border-radius: var(--radius);
    font-weight: 800;
    transform: translateY(-140%);
}

.skip-link:focus {
    color: #fff;
    transform: translateY(0);
}

.site-main {
    min-height: 60vh;
}

.site-alert {
    border: 1px solid rgba(15, 159, 110, .2);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(16, 32, 51, .06);
}

a {
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    transition: box-shadow .2s ease, background-color .2s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .985);
    box-shadow: 0 12px 32px rgba(16, 32, 51, .08);
}

.navbar {
    padding: 14px 0;
}

.navbar-brand {
    color: var(--ink);
    font-weight: 800;
}

.brand-mark {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    box-shadow: 0 10px 24px rgba(13, 110, 253, .22);
}

.nav-link {
    color: #314154;
    font-weight: 600;
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    position: absolute;
    right: .5rem;
    bottom: 3px;
    left: .5rem;
    height: 2px;
    content: "";
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

.btn {
    font-weight: 750;
}

.btn-primary {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), #0a58ca);
    box-shadow: 0 12px 24px rgba(13, 110, 253, .2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(13, 110, 253, .28);
}

.hero-section {
    position: relative;
    isolation: isolate;
    padding: 100px 0 84px;
    background:
        linear-gradient(120deg, rgba(13, 110, 253, .14), rgba(32, 180, 134, .13)),
        radial-gradient(circle at 84% 15%, rgba(255, 191, 61, .28), transparent 31%),
        radial-gradient(circle at 8% 80%, rgba(242, 95, 92, .12), transparent 28%),
        #f8fbff;
    overflow: hidden;
}

.hero-section::before {
    position: absolute;
    inset: auto -12% -44% 48%;
    z-index: -1;
    height: 520px;
    content: "";
    background:
        linear-gradient(135deg, rgba(13, 110, 253, .08), rgba(32, 180, 134, .18)),
        url("../images/default-school-cover.svg") center / 220px repeat;
    border-radius: 48px;
    opacity: .6;
    transform: rotate(-8deg);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: .78rem;
}

.hero-section h1,
.inner-hero h1 {
    max-width: 780px;
    margin: 14px 0 16px;
    font-weight: 850;
    line-height: 1.04;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.hero-copy,
.inner-hero p {
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 680px;
}

.hero-search,
.filter-panel,
.detail-card,
.side-card,
.post-card,
.value-card,
.hero-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.hero-search {
    margin-top: 30px;
    padding: 14px;
    transform: translateZ(0);
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    top: 50%;
    left: 14px;
    color: var(--muted);
    transform: translateY(-50%);
}

.input-icon .form-control,
.input-icon .form-select {
    padding-left: 42px;
}

.form-control,
.form-select,
.btn {
    border-radius: var(--radius);
}

.form-control,
.form-select {
    border-color: var(--line);
    min-height: 46px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(13, 110, 253, .58);
    box-shadow: 0 0 0 .22rem rgba(13, 110, 253, .12);
}

.quick-searches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: var(--muted);
    font-weight: 700;
}

.quick-searches a {
    padding: 7px 12px;
    color: #26415f;
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.quick-searches a:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #314154;
    font-weight: 700;
}

.hero-panel {
    position: relative;
    padding: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.hero-card-glow {
    position: absolute;
    top: -55px;
    right: -55px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(255, 191, 61, .55), rgba(32, 180, 134, .35));
    border-radius: 50%;
    filter: blur(4px);
    opacity: .75;
    pointer-events: none;
}

.hero-panel-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.hero-panel-top span {
    color: var(--muted);
    font-weight: 700;
}

.hero-panel-top strong {
    font-size: 2rem;
    color: var(--primary);
}

.mini-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.mini-list a {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 700;
    padding: 8px;
    border-radius: var(--radius);
}

.mini-list a:hover {
    background: var(--soft);
    transform: translateX(4px);
}

.mini-list img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.hero-score {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.hero-score div {
    padding: 14px 10px;
    text-align: center;
    background: var(--soft);
    border-radius: var(--radius);
}

.hero-score strong,
.hero-score span {
    display: block;
}

.hero-score strong {
    color: var(--primary);
    font-size: 1.35rem;
}

.hero-score span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.home-stats {
    position: relative;
    z-index: 2;
    margin-top: -38px;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stats-strip div {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 6px 14px;
    padding: 22px;
    background: #fff;
}

.stats-strip i {
    grid-row: span 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-radius: var(--radius);
}

.stats-strip strong {
    font-size: 1.45rem;
    line-height: 1;
}

.stats-strip span {
    color: var(--muted);
    font-weight: 700;
}

.section-pad {
    padding: 72px 0;
}

.soft-bg {
    background: var(--soft);
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-title a {
    color: var(--primary);
    font-weight: 800;
}

.section-title a:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.section-title span,
.content-block span {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
}

.section-title h2,
.content-block h2 {
    margin: 4px 0 0;
    font-weight: 820;
}

.school-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(16, 32, 51, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.school-card:hover {
    border-color: rgba(13, 110, 253, .22);
    transform: translateY(-7px);
    box-shadow: var(--shadow-strong);
}

.school-card-media {
    position: relative;
    display: block;
    height: 190px;
    background: var(--soft);
}

.school-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.school-card:hover .school-card-media img {
    transform: scale(1.06);
}

.school-card-media .badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.school-card-body {
    padding: 18px;
}

.school-logo {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(16, 32, 51, .12);
}

.school-card h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
    font-weight: 800;
}

.school-card h3 a {
    color: var(--ink);
}

.school-card h3 a:hover {
    color: var(--primary);
}

.school-location {
    display: flex;
    gap: 6px;
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.school-tags,
.facility-list,
.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.school-tags {
    margin: 16px 0 12px;
}

.school-tags span,
.facility-list span,
.detail-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    color: #26415f;
    background: #edf5ff;
    border-radius: var(--radius);
    font-size: .83rem;
    font-weight: 700;
}

.school-excerpt {
    min-height: 64px;
    color: var(--muted);
}

.school-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.open-badge,
.muted-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 800;
}

.open-badge {
    color: var(--success);
}

.muted-badge {
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.feature-chip,
.facility-cloud a {
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature-chip {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 16px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-chip i {
    grid-row: span 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-radius: var(--radius);
}

.feature-chip:hover,
.facility-cloud a:hover,
.city-tile:hover,
.journey-card:hover {
    border-color: rgba(13, 110, 253, .28);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-chip span {
    font-weight: 800;
}

.feature-chip small {
    color: var(--muted);
}

.facility-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.facility-cloud a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    font-weight: 700;
}

.facility-cloud a i {
    color: var(--success);
}

.guide-section {
    background:
        linear-gradient(180deg, #fff, #f8fbff);
}

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

.journey-card {
    min-height: 250px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(16, 32, 51, .05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.journey-card i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--accent));
    border-radius: var(--radius);
}

.journey-card:nth-child(2) i {
    background: linear-gradient(135deg, var(--primary), var(--violet));
}

.journey-card:nth-child(3) i {
    background: linear-gradient(135deg, var(--teal), var(--primary));
}

.journey-card h3 {
    font-size: 1.2rem;
    font-weight: 820;
}

.journey-card p {
    color: var(--muted);
}

.city-section {
    background: #fff;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.city-tile {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 12px;
    align-items: center;
    padding: 18px;
    color: var(--ink);
    background: linear-gradient(180deg, #fff, #f8fbff);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.city-tile i {
    grid-row: span 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: var(--radius);
}

.city-tile span {
    font-weight: 820;
}

.city-tile small {
    color: var(--muted);
    font-weight: 700;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(13, 110, 253, .96), rgba(32, 180, 134, .96)),
        url("../images/default-school-cover.svg") center / 170px repeat;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
}

.cta-band h2 {
    margin: 6px 0 0;
    font-weight: 830;
}

.cta-band p {
    max-width: 650px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .82);
}

.inner-hero {
    padding: 72px 0;
    background: linear-gradient(120deg, #f4f8fc, #eaf7f1);
}

.listing-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(13, 110, 253, .12), rgba(32, 180, 134, .14)),
        radial-gradient(circle at 84% 20%, rgba(255, 191, 61, .28), transparent 30%),
        #f8fbff;
}

.about-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(13, 110, 253, .13), rgba(32, 180, 134, .13)),
        radial-gradient(circle at 85% 14%, rgba(255, 191, 61, .32), transparent 32%),
        radial-gradient(circle at 8% 85%, rgba(242, 95, 92, .12), transparent 28%),
        #f8fbff;
}

.about-hero::before {
    position: absolute;
    inset: auto -10% -42% 54%;
    z-index: -1;
    height: 470px;
    content: "";
    background:
        linear-gradient(135deg, rgba(13, 110, 253, .08), rgba(32, 180, 134, .18)),
        url("../images/default-school-cover.svg") center / 210px repeat;
    border-radius: 48px;
    opacity: .58;
    transform: rotate(-8deg);
}

.about-hero-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(12px);
}

.about-hero-card div {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 3px 14px;
    align-items: center;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.about-hero-card i {
    grid-row: span 2;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-radius: var(--radius);
}

.about-hero-card strong {
    font-weight: 820;
}

.about-hero-card span {
    color: var(--muted);
    font-size: .9rem;
}

.about-stats {
    margin-top: -34px;
}

.about-story-panel {
    display: grid;
    gap: 14px;
}

.story-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(16, 32, 51, .05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.story-step:hover {
    border-color: rgba(13, 110, 253, .24);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.story-step>span {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--accent));
    border-radius: var(--radius);
    font-weight: 850;
}

.story-step:nth-child(2)>span {
    background: linear-gradient(135deg, var(--primary), var(--violet));
}

.story-step:nth-child(3)>span {
    background: linear-gradient(135deg, var(--teal), var(--primary));
}

.story-step h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
    font-weight: 820;
}

.story-step p {
    margin: 0;
    color: var(--muted);
}

.about-process {
    background: linear-gradient(180deg, #fff, #f8fbff);
}

.news-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(13, 110, 253, .12), rgba(32, 180, 134, .13)),
        radial-gradient(circle at 84% 16%, rgba(255, 191, 61, .28), transparent 30%),
        #f8fbff;
}

.blog-hero {
    background:
        linear-gradient(120deg, rgba(111, 66, 193, .12), rgba(32, 180, 134, .12)),
        radial-gradient(circle at 84% 16%, rgba(255, 191, 61, .26), transparent 30%),
        #f8fbff;
}

.blog-card .news-card-media span {
    background: rgba(111, 66, 193, .86);
}

.blog-detail-hero .news-meta span {
    background: rgba(111, 66, 193, .22);
}

.contact-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(13, 110, 253, .13), rgba(32, 180, 134, .13)),
        radial-gradient(circle at 84% 16%, rgba(255, 191, 61, .28), transparent 30%),
        radial-gradient(circle at 10% 86%, rgba(242, 95, 92, .12), transparent 28%),
        #f8fbff;
}

.contact-hero::before {
    position: absolute;
    inset: auto -10% -42% 54%;
    z-index: -1;
    height: 470px;
    content: "";
    background:
        linear-gradient(135deg, rgba(13, 110, 253, .08), rgba(32, 180, 134, .18)),
        url("../images/default-school-cover.svg") center / 210px repeat;
    border-radius: 48px;
    opacity: .58;
    transform: rotate(-8deg);
}

.contact-stats {
    margin-top: -34px;
}

.contact-detail-card,
.contact-search-card {
    height: 100%;
}

.contact-search-card {
    position: relative;
    overflow: hidden;
}

.contact-search-card::after {
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    content: "";
    background: linear-gradient(135deg, rgba(255, 191, 61, .3), rgba(32, 180, 134, .18));
    border-radius: 50%;
    pointer-events: none;
}

.contact-help-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.contact-help-strip span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: #26415f;
    background: #edf5ff;
    border-radius: var(--radius);
    font-size: .86rem;
    font-weight: 800;
}

.contact-service-card {
    min-height: 230px;
}

.contact-trust-section {
    background: linear-gradient(180deg, #fff, #f8fbff);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.trust-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 5px 14px;
    align-items: center;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(16, 32, 51, .05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.trust-card:hover {
    border-color: rgba(13, 110, 253, .24);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.trust-card i {
    grid-row: span 2;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-radius: var(--radius);
}

.trust-card strong {
    font-weight: 820;
}

.trust-card span {
    color: var(--muted);
    font-size: .92rem;
}

.news-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(16, 32, 51, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.news-card:hover {
    border-color: rgba(13, 110, 253, .24);
    box-shadow: var(--shadow-strong);
    transform: translateY(-7px);
}

.news-card-media {
    position: relative;
    display: block;
    height: 210px;
    overflow: hidden;
    background: var(--soft);
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.news-card:hover .news-card-media img {
    transform: scale(1.06);
}

.news-card-media span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    color: #fff;
    background: rgba(7, 24, 44, .82);
    border-radius: var(--radius);
    font-size: .78rem;
    font-weight: 800;
}

.news-card-body {
    padding: 20px;
}

.news-card-body small,
.news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 750;
}

.news-card-body h3 {
    margin: 12px 0 10px;
    font-size: 1.18rem;
    font-weight: 820;
    line-height: 1.28;
}

.news-card-body h3 a {
    color: var(--ink);
}

.news-card-body h3 a:hover {
    color: var(--primary);
}

.news-card-body p {
    color: var(--muted);
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-weight: 850;
}

.news-read-more:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.featured-news-card {
    border-color: rgba(255, 191, 61, .45);
}

.news-detail-hero {
    min-height: 520px;
    display: flex;
    align-items: end;
    padding: 112px 0 62px;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.news-detail-hero h1 {
    max-width: 900px;
    margin: 16px 0;
    font-size: clamp(2.1rem, 5vw, 4.5rem);
    font-weight: 850;
    line-height: 1.05;
}

.news-detail-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.12rem;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.news-detail-card {
    padding: 24px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
    backdrop-filter: blur(14px);
}

.news-detail-card span,
.news-detail-card strong {
    display: block;
}

.news-detail-card span {
    color: rgba(255, 255, 255, .72);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
}

.news-detail-card strong {
    margin-top: 4px;
    color: #fff;
    font-size: 1.4rem;
}

.news-detail-card p {
    margin: 12px 0 18px;
    color: rgba(255, 255, 255, .78);
}

.news-article {
    color: #314154;
    font-size: 1.04rem;
    line-height: 1.78;
}

.news-article h2,
.news-article h3,
.news-article h4 {
    color: var(--ink);
    font-weight: 820;
}

.news-article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.related-news-list {
    display: grid;
    gap: 12px;
}

.related-news-list a {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    color: var(--ink);
    font-weight: 800;
}

.related-news-list a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.related-news-list img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius);
}

.listing-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.listing-summary div {
    padding: 18px 12px;
    text-align: center;
    background: rgba(255, 255, 255, .88);
}

.listing-summary strong,
.listing-summary span {
    display: block;
}

.listing-summary strong {
    color: var(--primary);
    font-size: 1.45rem;
}

.listing-summary span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 750;
}

.filter-panel {
    padding: 18px;
    margin-bottom: 22px;
}

.school-filter-panel {
    padding: 22px;
}

.filter-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.filter-heading span,
.enquiry-card>span,
.contact-side-card>span,
.detail-card-heading span {
    color: var(--primary);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.filter-heading h2,
.detail-card-heading h2 {
    margin: 4px 0 0;
    font-weight: 820;
}

.filter-heading a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-weight: 800;
}

.active-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.active-filter-chips span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    color: #26415f;
    background: #edf5ff;
    border-radius: var(--radius);
    font-size: .84rem;
    font-weight: 750;
}

.result-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--muted);
}

.result-toolbar {
    align-items: center;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(16, 32, 51, .05);
}

.result-toolbar div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.result-toolbar strong {
    color: var(--ink);
    font-size: 1.35rem;
}

.result-toolbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-weight: 800;
}

.search-empty i {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin: 0 auto 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-radius: var(--radius);
}

.search-empty h2 {
    font-weight: 820;
}

.search-empty p {
    color: var(--muted);
}

.school-detail-hero {
    min-height: 430px;
    display: flex;
    align-items: end;
    padding: 96px 0 56px;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.profile-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.profile-hero::after {
    position: absolute;
    right: -90px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    content: "";
    background: linear-gradient(135deg, rgba(255, 191, 61, .34), rgba(32, 180, 134, .2));
    border-radius: 50%;
    pointer-events: none;
}

.detail-hero-content {
    display: grid;
    grid-template-columns: 108px 1fr;
    align-items: center;
    gap: 24px;
}

.profile-hero-content {
    position: relative;
    z-index: 1;
}

.detail-hero-content>img {
    width: 108px;
    height: 108px;
    object-fit: cover;
    border: 4px solid #fff;
    border-radius: var(--radius);
}

.detail-hero-content h1 {
    margin: 12px 0 10px;
    font-weight: 850;
    font-size: clamp(2rem, 5vw, 4rem);
}

.detail-hero-content p {
    display: flex;
    gap: 8px;
    max-width: 850px;
    color: rgba(255, 255, 255, .86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.profile-quick-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
    backdrop-filter: blur(14px);
}

.profile-quick-card div {
    padding: 18px;
    background: rgba(255, 255, 255, .12);
}

.profile-quick-card span,
.profile-quick-card strong {
    display: block;
}

.profile-quick-card span {
    color: rgba(255, 255, 255, .68);
    font-size: .8rem;
    font-weight: 750;
}

.profile-quick-card strong {
    color: #fff;
    margin-top: 4px;
    text-transform: capitalize;
}

.profile-tabs {
    position: sticky;
    top: 75px;
    z-index: 10;
    padding: 14px 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.profile-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.profile-nav::-webkit-scrollbar {
    display: none;
}

.profile-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    color: #314154;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
}

.profile-nav a:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.detail-card,
.side-card,
.post-card,
.value-card {
    padding: 24px;
    margin-bottom: 22px;
}

.profile-card,
.enquiry-card,
.contact-side-card,
.mini-gallery-card {
    box-shadow: 0 12px 34px rgba(16, 32, 51, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.profile-card:hover,
.enquiry-card:hover,
.contact-side-card:hover,
.mini-gallery-card:hover {
    border-color: rgba(13, 110, 253, .2);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.detail-card-heading {
    margin-bottom: 16px;
}

.detail-card h2,
.side-card h3,
.value-card h3,
.post-card h2 {
    font-weight: 820;
}

.info-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.info-grid div,
.stats-grid div,
.admission-box div {
    padding: 16px;
    background: var(--soft);
    border-radius: var(--radius);
}

.info-grid div,
.admission-box div {
    border: 1px solid transparent;
}

.info-grid div:hover,
.admission-box div:hover {
    border-color: rgba(13, 110, 253, .16);
    background: #fff;
}

.info-grid span,
.admission-box span {
    display: block;
    color: var(--muted);
    font-size: .85rem;
    margin-bottom: 4px;
}

.principal-card i {
    color: var(--accent);
    font-size: 2rem;
}

.principal-card strong,
.principal-card span {
    display: block;
}

.principal-card span {
    color: var(--muted);
}

.admission-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-grid a:hover img {
    transform: scale(1.07);
    box-shadow: var(--shadow);
}

.document-list {
    display: grid;
    gap: 10px;
}

.document-list a {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.detail-sidebar {
    position: sticky;
    top: 92px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.contact-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    color: var(--muted);
}

.contact-list i {
    color: var(--primary);
}

.contact-list a {
    color: var(--ink);
    font-weight: 750;
    word-break: break-word;
}

.map-card iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: var(--radius);
}

.enquiry-card {
    border-top: 4px solid var(--primary);
}

.enquiry-card p {
    color: var(--muted);
}

.mini-gallery-card div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mini-gallery-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
}

.content-block p,
.value-card p,
.post-card p,
.detail-card p {
    color: var(--muted);
}

.stats-grid strong {
    display: block;
    color: var(--primary);
    font-size: 2.4rem;
}

.value-card i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 16px;
    color: #fff;
    background: var(--primary);
    border-radius: var(--radius);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.post-card span {
    color: var(--primary);
    font-weight: 800;
}

.empty-state {
    padding: 38px;
    color: var(--muted);
    text-align: center;
    border: 1px dashed #b8c4d2;
    border-radius: var(--radius);
    background: #fff;
}

.simple-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.simple-pagination a,
.simple-pagination span {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.simple-pagination .disabled {
    color: #a0aab7;
}

.site-footer {
    padding: 56px 0 24px;
    color: #fff;
    background: #07182c;
}

.site-footer h6 {
    color: #fff;
    font-weight: 800;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, .72);
}

.site-footer a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-trust-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 750;
}

.footer-muted,
.footer-note {
    color: rgba(255, 255, 255, .58);
}

.footer-note {
    margin: 12px 0 0;
    font-size: .9rem;
}

.footer-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 38px;
    padding-top: 20px;
    color: rgba(255, 255, 255, .62);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-2px);
}

.legal-hero {
    background:
        linear-gradient(120deg, rgba(13, 110, 253, .12), rgba(32, 180, 134, .12)),
        radial-gradient(circle at 84% 16%, rgba(255, 191, 61, .28), transparent 30%),
        #f8fbff;
}

.legal-content {
    color: #314154;
    font-size: 1.04rem;
    line-height: 1.78;
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
    color: var(--ink);
    font-weight: 820;
}

.legal-content h3 {
    margin-top: 24px;
}

@media (max-width: 991px) {

    .section-title,
    .cta-band,
    .filter-heading,
    .result-toolbar,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-sidebar {
        position: static;
    }

    .stats-strip,
    .city-grid,
    .listing-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 767px) {

    .hero-section,
    .section-pad,
    .inner-hero {
        padding: 48px 0;
    }

    .home-stats {
        margin-top: 0;
        padding-top: 20px;
    }

    .hero-section h1,
    .inner-hero h1 {
        font-size: 2.25rem;
    }

    .detail-hero-content {
        grid-template-columns: 1fr;
    }

    .profile-hero {
        min-height: auto;
        padding: 72px 0 48px;
    }

    .news-detail-hero {
        min-height: auto;
        padding: 72px 0 48px;
    }

    .profile-quick-card,
    .listing-summary {
        grid-template-columns: 1fr;
    }

    .profile-tabs {
        top: 68px;
    }

    .profile-nav {
        margin-right: -12px;
        padding-bottom: 2px;
    }

    .about-stats {
        margin-top: 0;
        padding-top: 20px;
    }

    .contact-stats {
        margin-top: 0;
        padding-top: 20px;
    }

    .feature-grid,
    .info-grid,
    .stats-grid,
    .admission-box,
    .stats-strip,
    .city-grid,
    .trust-grid,
    .hero-score {
        grid-template-columns: 1fr;
    }

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

    .school-card-actions,
    .document-list a {
        align-items: flex-start;
        flex-direction: column;
        display: flex;
    }

    .stats-strip div {
        padding: 18px;
    }

    .hero-search {
        padding: 12px;
    }

    .school-filter-panel {
        padding: 16px;
    }

    .result-toolbar div {
        align-items: flex-start;
        flex-direction: column;
    }

    .story-step,
    .about-hero-card div,
    .trust-card {
        grid-template-columns: 1fr;
    }

    .news-card-media {
        height: 190px;
    }

    .related-news-list a {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}



.compare-bar {

    position: fixed;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%);

    width: 700px;

    max-width: 95%;

    background: #fff;

    padding: 15px;

    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .15);

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 99999;

}

.compare-item {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 10px;

}

.compare-item img {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    object-fit: cover;

}

.compare-remove {

    cursor: pointer;

    color: red;

    font-size: 18px;

    margin-left: 8px;

}

.compare-table th {

    background: #f8f9fa;

    font-weight: 600;

    width: 220px;

    vertical-align: middle;

}

.compare-table td {

    min-width: 260px;

    vertical-align: top;

}

.compare-table img {

    object-fit: cover;

    border: 1px solid #ddd;

}

.compare-table .badge {

    margin-right: 5px;

    margin-bottom: 5px;

}

.compare-hero { padding-bottom: 72px; }
.compare-page { background: #f7f9fc; }
.compare-toolbar { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:24px; }
.compare-toolbar h2 { margin:0 0 4px; font-weight:800; color:var(--ink, #172033); }
.compare-toolbar p { margin:0; color:var(--muted, #687386); }
.compare-table-wrap { background:#fff; border:1px solid #e7ebf2; border-radius:18px; box-shadow:0 14px 40px rgba(30,49,80,.07); }
.compare-table { border-collapse:separate; border-spacing:0; }
.compare-table th, .compare-table td { padding:18px 20px; border:0; border-bottom:1px solid #edf0f5; }
.compare-table th { min-width:190px; width:190px; position:sticky; left:0; z-index:2; background:#f8fafc; color:#445066; }
.compare-table td { min-width:245px; color:#263247; }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom:0; }
.compare-table .compare-different th { background:#fff8e6; color:#76550a; }
.compare-table .compare-different td { background:#fffcf4; font-weight:600; }
.compare-school-row th { vertical-align:middle; }
.compare-school-row td { position:relative; text-align:center; padding:26px 22px; }
.compare-school-row img { display:block; width:76px; height:76px; margin:0 auto 12px; border-radius:18px; object-fit:cover; background:#f5f7fa; }
.compare-school-row strong, .compare-school-row span, .compare-school-row a { display:block; }
.compare-school-row strong { font-size:1rem; color:#172033; margin-bottom:6px; }
.compare-school-row span { color:#798397; font-size:.85rem; margin-bottom:10px; }
.compare-school-row a { font-weight:700; font-size:.85rem; text-decoration:none; }
.compare-card-remove { position:absolute; top:10px; right:10px; width:30px; height:30px; border:0; border-radius:50%; background:#fff0f0; color:#d63d3d; }
.compare-card-remove:hover { background:#d63d3d; color:#fff; }
.compare-empty { background:#fff; border:1px solid #e7ebf2; border-radius:18px; padding:64px 24px; }
.school-search-results { display:grid; gap:8px; margin-top:16px; max-height:340px; overflow:auto; }
.school-result { width:100%; display:flex; align-items:center; gap:12px; padding:11px; text-align:left; border:1px solid #e5eaf1; border-radius:12px; background:#fff; color:#273349; }
.school-result:hover { border-color:#0d6efd; background:#f6f9ff; }
.school-result img { width:46px; height:46px; border-radius:10px; object-fit:cover; }
.school-result span { flex:1; }
.school-result strong, .school-result small { display:block; }
.school-result small { color:#7b8699; margin-top:2px; }

@media (max-width: 767.98px) {
    .compare-toolbar { align-items:flex-start; flex-direction:column; }
    .compare-bar { bottom:10px; padding:12px; align-items:flex-end; }
    .compare-left { min-width:0; }
    #compareItems { max-height:130px; overflow:auto; }
    .compare-item span { max-width:125px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
    .compare-table th { min-width:145px; width:145px; padding:14px; }
    .compare-table td { min-width:210px; padding:14px; }
}

.review-summary-card,.write-review-card,.review-card,.review-empty{background:#fff;border:1px solid #e7ebf2;border-radius:18px;box-shadow:0 12px 34px rgba(30,49,80,.06)}
.review-summary-card{padding:28px;position:sticky;top:110px}.review-average{display:flex;align-items:end;gap:10px}.review-average strong{font-size:3.2rem;line-height:1;color:#172033}.review-average span{color:#798397;margin-bottom:7px}.review-stars{color:#ffad0d;display:flex;gap:3px}.review-summary-card>p{color:#798397;margin:8px 0 22px}.rating-bars{display:grid;gap:9px}.rating-bars>div{display:grid;grid-template-columns:42px 1fr 25px;gap:9px;align-items:center;font-size:.85rem}.rating-bars>div>div{height:7px;background:#edf0f5;border-radius:20px;overflow:hidden}.rating-bars b{height:100%;display:block;background:#ffad0d;border-radius:20px}.rating-bars i{color:#ffad0d;font-size:.7rem}.review-list{display:grid;gap:16px}.review-card{padding:22px}.review-card-head{display:flex;align-items:center;gap:11px;margin-bottom:15px}.review-card-head small{display:block;color:#8a94a6}.reviewer-avatar{width:44px;height:44px;border-radius:50%;display:grid;place-items:center;background:#eef2ff;color:#4f56c8;font-weight:800}.review-card h3{font-size:1rem;margin-bottom:7px}.review-card p{color:#596579;margin:0;white-space:pre-line}.review-empty{text-align:center;padding:50px 20px}.review-empty>i{font-size:2.5rem;color:#8a94a6}.write-review-card{padding:30px}.write-review-card h2{margin:12px 0}.write-review-card p{color:#687386}.rating-input{display:inline-flex;flex-direction:row-reverse;gap:5px}.rating-input input{position:absolute;opacity:0;pointer-events:none}.rating-input label{font-size:1.8rem;color:#dce1e8;cursor:pointer;transition:.15s}.rating-input label:hover,.rating-input label:hover~label,.rating-input input:checked~label{color:#ffad0d}.rating-input label:focus-within{outline:2px solid #0d6efd}@media(max-width:991px){.review-summary-card{position:static}}
