2026-02-02 20:34:35 +00:00
|
|
|
|
.container {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
max-width: 100%;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-01 14:48:17 +01:00
|
|
|
|
/* Standalone back link, sits above the header card on the page background. */
|
|
|
|
|
|
.topBack {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
|
margin: 0 0 0.75rem;
|
|
|
|
|
|
padding: 0.25rem 0;
|
|
|
|
|
|
font-size: 1.0625rem;
|
|
|
|
|
|
font-weight: 600;
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-coral-dark, #b04a2e);
|
2026-07-01 14:48:17 +01:00
|
|
|
|
background: none;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
|
transition: color 0.15s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.topBack:hover {
|
|
|
|
|
|
color: var(--accent-coral-dark, #c85a3e);
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
text-underline-offset: 2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-02 20:34:35 +00:00
|
|
|
|
/* Header Section */
|
|
|
|
|
|
.header {
|
2026-07-01 18:12:12 +01:00
|
|
|
|
position: relative;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
border-radius: 10px;
|
2026-07-01 18:12:12 +01:00
|
|
|
|
/* Padding lives on .headerContent so the map band can bleed to the edges. */
|
|
|
|
|
|
padding: 0;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
box-shadow: var(--shadow-soft);
|
2026-07-01 18:12:12 +01:00
|
|
|
|
overflow: hidden;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.headerContent {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
gap: 1.5rem;
|
2026-07-01 18:12:12 +01:00
|
|
|
|
padding: 1.25rem 1.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* With a map band above, slide the title up under the fade so map and title
|
|
|
|
|
|
read as one object; the Compare button floats glassy over the map. */
|
|
|
|
|
|
.headerHasMap .headerContent {
|
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
|
margin-top: -0.5rem;
|
2026-07-02 15:54:49 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* The title (not the whole content row) rises above the map fade. Keeping
|
|
|
|
|
|
.headerContent unpositioned matters: .actions must anchor to .header so it
|
|
|
|
|
|
floats over the map band, not over the title. */
|
|
|
|
|
|
.headerHasMap .titleSection {
|
2026-07-01 18:12:12 +01:00
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 3;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.headerHasMap .actions {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 14px;
|
|
|
|
|
|
right: 14px;
|
|
|
|
|
|
z-index: 6;
|
|
|
|
|
|
margin: 0;
|
2026-07-02 15:54:49 +01:00
|
|
|
|
/* Beat the mobile `.actions { width: 100% }` rule — a floating button
|
|
|
|
|
|
must never stretch across the title. */
|
|
|
|
|
|
width: auto;
|
2026-07-01 18:12:12 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.headerHasMap .actions .btnAdd {
|
|
|
|
|
|
background: rgba(255, 255, 255, 0.9);
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-coral-dark, #b04a2e);
|
2026-07-01 18:12:12 +01:00
|
|
|
|
border-color: transparent;
|
|
|
|
|
|
-webkit-backdrop-filter: blur(6px);
|
|
|
|
|
|
backdrop-filter: blur(6px);
|
|
|
|
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.headerHasMap .actions .btnAdd:hover {
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-02 16:17:12 +01:00
|
|
|
|
/* Full label by default; phones over the map get an icon-only button
|
|
|
|
|
|
(same compact treatment as the section-nav compare icon). */
|
|
|
|
|
|
.btnCompareGlyph {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
|
.headerHasMap .actions .btnCompareLabel {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.headerHasMap .actions .btnCompareGlyph {
|
|
|
|
|
|
display: inline;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.headerHasMap .actions .btnAdd,
|
|
|
|
|
|
.headerHasMap .actions .btnRemove {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
flex: none;
|
|
|
|
|
|
width: 40px;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
font-size: 1.375rem;
|
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-01 18:12:12 +01:00
|
|
|
|
/* Inline "View on map ↗" trigger next to the address. */
|
|
|
|
|
|
.mapLink {
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
background: none;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
font: inherit;
|
|
|
|
|
|
font-weight: 600;
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-coral-dark, #b04a2e);
|
2026-07-01 18:12:12 +01:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mapLink:hover {
|
|
|
|
|
|
color: var(--accent-coral-dark, #c45a3f);
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
text-underline-offset: 2px;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.titleSection {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
flex: 1;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.schoolName {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: clamp(2rem, 5vw, 3.25rem);
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
|
line-height: 1.1;
|
|
|
|
|
|
letter-spacing: -0.01em;
|
|
|
|
|
|
font-family: var(--font-playfair), "Playfair Display", serif;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.meta {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
margin-bottom: 0.5rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metaItem {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
|
|
|
|
|
padding: 0.125rem 0.5rem;
|
|
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
border-radius: 3px;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.address {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
|
color: var(--text-muted, #8a847a);
|
|
|
|
|
|
margin: 0 0 0.75rem;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Expanded header details (headteacher, website, trust, pupils) */
|
|
|
|
|
|
.headerDetails {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
gap: 0.5rem 1.25rem;
|
|
|
|
|
|
margin-top: 0.5rem;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.headerDetail {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.headerDetail strong {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
font-weight: 600;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.headerDetail a {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
text-decoration: none;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.headerDetail a:hover {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
text-decoration: underline;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-17 22:52:59 +01:00
|
|
|
|
/* Gender split card — sits in the Pupils & Inclusion heroStatGrid */
|
|
|
|
|
|
.genderSplitValue {
|
2026-04-17 22:36:33 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: baseline;
|
2026-04-17 22:52:59 +01:00
|
|
|
|
gap: 0.3rem;
|
|
|
|
|
|
font-family: var(--font-playfair), "Playfair Display", Georgia, serif;
|
|
|
|
|
|
font-size: 1.55rem;
|
|
|
|
|
|
font-weight: 700;
|
2026-04-17 22:36:33 +01:00
|
|
|
|
line-height: 1;
|
2026-04-17 22:52:59 +01:00
|
|
|
|
flex-wrap: wrap;
|
2026-04-17 22:36:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-17 22:52:59 +01:00
|
|
|
|
.genderSplitGirls {
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: #a04a68;
|
2026-04-17 22:36:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-17 22:52:59 +01:00
|
|
|
|
.genderSplitBoys {
|
2026-04-17 22:36:33 +01:00
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-17 22:52:59 +01:00
|
|
|
|
.genderSplitLabel {
|
|
|
|
|
|
font-family: var(--font-body, inherit);
|
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
|
|
|
|
|
letter-spacing: 0;
|
2026-04-17 22:36:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-17 22:52:59 +01:00
|
|
|
|
.genderSplitSep {
|
|
|
|
|
|
color: var(--border-color, #c8beb0);
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
|
padding: 0 0.1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.genderBar {
|
2026-04-17 22:36:33 +01:00
|
|
|
|
display: flex;
|
2026-04-17 22:52:59 +01:00
|
|
|
|
height: 6px;
|
2026-04-17 22:36:33 +01:00
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
background: var(--border-color, #e5dfd5);
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-17 22:52:59 +01:00
|
|
|
|
.genderBarGirls {
|
2026-07-02 21:33:51 +01:00
|
|
|
|
background: #a04a68;
|
2026-04-17 22:36:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-17 22:52:59 +01:00
|
|
|
|
.genderBarBoys {
|
2026-04-17 22:36:33 +01:00
|
|
|
|
background: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-02 20:34:35 +00:00
|
|
|
|
.actions {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
align-self: center;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btnAdd,
|
|
|
|
|
|
.btnRemove {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
padding: 0.75rem 1.25rem;
|
|
|
|
|
|
font-size: 0.9375rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
box-shadow: var(--shadow-soft, 0 2px 8px rgba(26, 22, 18, 0.08));
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btnAdd {
|
2026-07-02 21:33:51 +01:00
|
|
|
|
background: var(--accent-coral-dark, #b04a2e);
|
2026-04-14 14:01:45 +01:00
|
|
|
|
color: white;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btnAdd:hover {
|
2026-07-02 21:33:51 +01:00
|
|
|
|
background: var(--accent-coral-darker, #9c3f26);
|
2026-04-14 14:01:45 +01:00
|
|
|
|
transform: translateY(-1px);
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btnRemove {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
color: white;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btnRemove:hover {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
opacity: 0.9;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:34:19 +00:00
|
|
|
|
/* ── Sticky Section Navigation ──────────────────────── */
|
2026-06-30 22:39:48 +01:00
|
|
|
|
/* Docks directly under the global header; Back and "All" stay pinned while
|
|
|
|
|
|
only the section links scroll. */
|
2026-03-25 10:34:19 +00:00
|
|
|
|
.sectionNav {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
position: sticky;
|
2026-06-30 22:39:48 +01:00
|
|
|
|
top: 64px; /* global header height on desktop */
|
2026-04-14 14:01:45 +01:00
|
|
|
|
z-index: 10;
|
|
|
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
border-top: none;
|
|
|
|
|
|
border-radius: 0 0 10px 10px;
|
2026-06-30 22:39:48 +01:00
|
|
|
|
padding: 0.5rem 0.75rem;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
|
2026-06-30 22:39:48 +01:00
|
|
|
|
display: flex;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
align-items: center;
|
2026-06-30 22:39:48 +01:00
|
|
|
|
gap: 0.5rem;
|
2026-03-25 11:13:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-18 15:35:17 +01:00
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
|
.sectionNav {
|
2026-06-30 22:39:48 +01:00
|
|
|
|
top: 56px; /* global header is shorter on mobile */
|
|
|
|
|
|
padding: 0.4rem 0.6rem;
|
|
|
|
|
|
gap: 0.375rem;
|
2026-05-18 15:35:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 11:13:55 +00:00
|
|
|
|
.sectionNavBack {
|
2026-06-30 22:39:48 +01:00
|
|
|
|
flex: none;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
2026-06-30 23:27:03 +01:00
|
|
|
|
gap: 0.3rem;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
padding: 0.3rem 0.625rem;
|
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
|
font-weight: 600;
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-coral-dark, #b04a2e);
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: none;
|
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
transition: all 0.15s ease;
|
2026-03-25 11:13:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavBack:hover {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
border-color: var(--accent-coral, #e07256);
|
2026-03-25 11:13:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-30 22:39:48 +01:00
|
|
|
|
/* The scrolling middle: section links only. */
|
|
|
|
|
|
.sectionNavLinks {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.375rem;
|
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
|
scroll-snap-type: x proximity;
|
|
|
|
|
|
scroll-padding-inline: 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavLinks::-webkit-scrollbar {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Right-edge fade so users see there's more to scroll to. */
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
|
.sectionNavLinks {
|
|
|
|
|
|
-webkit-mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
|
|
|
|
|
|
mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* When scrolled to the end, drop the fade so the last item isn't dimmed. */
|
|
|
|
|
|
.sectionNavLinks.atEnd {
|
|
|
|
|
|
-webkit-mask-image: none;
|
|
|
|
|
|
mask-image: none;
|
|
|
|
|
|
}
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:34:19 +00:00
|
|
|
|
.sectionNavLink {
|
2026-05-18 15:35:17 +01:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
padding: 0.3rem 0.625rem;
|
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
|
white-space: nowrap;
|
2026-05-18 15:35:17 +01:00
|
|
|
|
scroll-snap-align: start;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
|
.sectionNavLink,
|
|
|
|
|
|
.sectionNavBack {
|
|
|
|
|
|
min-height: 36px;
|
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
}
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:34:19 +00:00
|
|
|
|
.sectionNavLink:hover {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-08 15:42:20 +01:00
|
|
|
|
.sectionNavLinkActive {
|
2026-07-02 21:33:51 +01:00
|
|
|
|
background: var(--accent-coral-dark, #b04a2e);
|
2026-04-14 14:01:45 +01:00
|
|
|
|
color: white;
|
|
|
|
|
|
font-weight: 600;
|
2026-04-08 15:42:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavLinkActive:hover {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--accent-coral-dark, #c45a3f);
|
|
|
|
|
|
color: white;
|
2026-04-08 15:42:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-30 23:27:03 +01:00
|
|
|
|
/* ── Mobile: the scrolling links collapse into one "section" menu button ──
|
|
|
|
|
|
(hidden on desktop, where the links fit). */
|
|
|
|
|
|
.sectionNavMenu {
|
|
|
|
|
|
display: none; /* shown only ≤640px */
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
min-height: 38px;
|
|
|
|
|
|
padding: 0.34rem 0.7rem;
|
|
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-family: var(--font-dm-sans), "DM Sans", sans-serif;
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavMenuCur {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.45rem;
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavMenuEyebrow {
|
|
|
|
|
|
flex: none;
|
|
|
|
|
|
font-size: 0.64rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavMenuNow {
|
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavMenuChev {
|
|
|
|
|
|
flex: none;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Compact icon version of the Compare CTA, used on mobile. */
|
|
|
|
|
|
.sectionNavCompareIcon {
|
|
|
|
|
|
display: none; /* shown only ≤640px */
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
flex: none;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
width: 38px;
|
|
|
|
|
|
height: 38px;
|
|
|
|
|
|
border-radius: 9px;
|
2026-07-02 21:33:51 +01:00
|
|
|
|
border: 1px solid var(--accent-coral-dark, #b04a2e);
|
|
|
|
|
|
background: var(--accent-coral-dark, #b04a2e);
|
2026-06-30 23:27:03 +01:00
|
|
|
|
color: white;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background 0.15s ease, border-color 0.15s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavCompareIcon svg {
|
|
|
|
|
|
width: 19px;
|
|
|
|
|
|
height: 19px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavCompareBadge {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: -5px;
|
|
|
|
|
|
right: -5px;
|
|
|
|
|
|
width: 16px;
|
|
|
|
|
|
height: 16px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
|
color: var(--accent-coral-dark, #c45a3f);
|
|
|
|
|
|
border: 1.5px solid var(--accent-coral, #e07256);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavCompareIconIn {
|
|
|
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
|
border-color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-30 22:39:48 +01:00
|
|
|
|
/* Compare CTA carried into the bar once the hero's button scrolls away. */
|
|
|
|
|
|
.sectionNavCompare {
|
|
|
|
|
|
flex: none;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 0.34rem 0.7rem;
|
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: white;
|
2026-07-02 21:33:51 +01:00
|
|
|
|
background: var(--accent-coral-dark, #b04a2e);
|
|
|
|
|
|
border: 1px solid var(--accent-coral-dark, #b04a2e);
|
2026-06-30 22:39:48 +01:00
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavCompare:hover {
|
2026-07-02 21:33:51 +01:00
|
|
|
|
background: var(--accent-coral-darker, #9c3f26);
|
|
|
|
|
|
border-color: var(--accent-coral-darker, #9c3f26);
|
2026-06-30 22:39:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavCompareIn {
|
|
|
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
border-color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavCompareIn:hover {
|
|
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
border-color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
|
.sectionNavCompare {
|
|
|
|
|
|
min-height: 36px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-30 23:27:03 +01:00
|
|
|
|
/* "All ▾" jump menu (desktop). */
|
2026-06-30 22:39:48 +01:00
|
|
|
|
.sectionNavAll {
|
2026-06-30 23:27:03 +01:00
|
|
|
|
flex: none;
|
2026-06-30 22:39:48 +01:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
|
padding: 0.34rem 0.65rem;
|
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
transition: background 0.15s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavAll:hover {
|
|
|
|
|
|
background: var(--border-color, #e5dfd5);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
|
.sectionNavAll {
|
|
|
|
|
|
min-height: 36px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionsBackdrop {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
inset: 0;
|
|
|
|
|
|
z-index: 1500;
|
|
|
|
|
|
background: rgba(26, 22, 18, 0.28);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionsPanel {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: calc(100% + 6px);
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
z-index: 1600;
|
|
|
|
|
|
width: 230px;
|
|
|
|
|
|
max-height: min(70vh, 460px);
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
box-shadow: 0 18px 44px rgba(26, 22, 18, 0.2);
|
|
|
|
|
|
padding: 0.35rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionsPanelHead {
|
|
|
|
|
|
font-family: var(--font-playfair), "Playfair Display", Georgia, serif;
|
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
padding: 0.4rem 0.6rem 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionsItem {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
padding: 0.55rem 0.6rem;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
transition: background 0.12s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionsItem:hover {
|
|
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionsItemActive {
|
|
|
|
|
|
background: var(--accent-coral-bg, rgba(224, 114, 86, 0.12));
|
|
|
|
|
|
color: var(--accent-coral-dark, #c45a3f);
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionsTick {
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-coral-dark, #b04a2e);
|
2026-06-30 22:39:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* On phones the menu becomes a bottom sheet. */
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
|
.sectionsPanel {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: auto;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
max-height: 74vh;
|
|
|
|
|
|
border-radius: 16px 16px 0 0;
|
|
|
|
|
|
padding: 0.5rem 0.6rem calc(0.8rem + env(safe-area-inset-bottom, 0));
|
|
|
|
|
|
box-shadow: 0 -10px 40px rgba(26, 22, 18, 0.25);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionsItem {
|
|
|
|
|
|
padding: 0.7rem 0.6rem;
|
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-01 06:38:21 +01:00
|
|
|
|
/* Swap which controls show at the mobile breakpoint. Declared last so these
|
|
|
|
|
|
display rules win over the base (equal-specificity) declarations above. */
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
|
.sectionNavLinks,
|
|
|
|
|
|
.sectionNavCompare,
|
|
|
|
|
|
.sectionNavAll,
|
|
|
|
|
|
.sectionNavBackLabel {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavMenu {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sectionNavCompareIcon {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:34:19 +00:00
|
|
|
|
/* Unified card for all content sections */
|
2026-03-25 10:06:36 +00:00
|
|
|
|
.card {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
padding: 1.25rem 1.5rem;
|
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
|
box-shadow: var(--shadow-soft);
|
|
|
|
|
|
scroll-margin-top: 6rem;
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
max-width: 100%;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-04 12:14:28 +00:00
|
|
|
|
/* Section Title */
|
|
|
|
|
|
.sectionTitle {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 1.125rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
margin-bottom: 0.875rem;
|
|
|
|
|
|
padding-bottom: 0.5rem;
|
|
|
|
|
|
border-bottom: 2px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
font-family: var(--font-playfair), "Playfair Display", serif;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.375rem;
|
|
|
|
|
|
flex-wrap: wrap;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-04 12:14:28 +00:00
|
|
|
|
.sectionTitle::before {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
content: "";
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
width: 3px;
|
|
|
|
|
|
height: 1em;
|
|
|
|
|
|
background: var(--accent-coral, #e07256);
|
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
|
flex-shrink: 0;
|
2026-02-04 12:14:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:06:36 +00:00
|
|
|
|
.sectionSubtitle {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
|
color: var(--text-muted, #8a847a);
|
|
|
|
|
|
margin: -0.5rem 0 1rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:06:36 +00:00
|
|
|
|
.subSectionTitle {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
|
|
|
|
|
margin: 1.25rem 0 0.75rem;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Metrics Grid & Cards */
|
2026-02-02 20:34:35 +00:00
|
|
|
|
.metricsGrid {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
|
|
|
|
|
|
gap: 0.75rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metricCard {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
|
text-align: center;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metricLabel {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.6875rem;
|
|
|
|
|
|
color: var(--text-muted, #8a847a);
|
|
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.03em;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metricValue {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
gap: 0.25rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:06:36 +00:00
|
|
|
|
.metricHint {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
|
color: var(--text-muted, #8a847a);
|
|
|
|
|
|
margin-top: 0.3rem;
|
|
|
|
|
|
font-style: italic;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 14:31:31 +01:00
|
|
|
|
/* ── Hero stat cards (RWM combined, Pupils & Inclusion, etc.) ── */
|
|
|
|
|
|
/* Larger teal-tinted cards with Playfair serif numbers — reserved for
|
|
|
|
|
|
the top-of-section headline metrics. Use .metricCard for denser
|
|
|
|
|
|
secondary metrics. */
|
|
|
|
|
|
.heroStatGrid {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: grid;
|
2026-04-14 14:31:31 +01:00
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
2026-04-14 14:01:45 +01:00
|
|
|
|
gap: 0.85rem;
|
|
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 14:31:31 +01:00
|
|
|
|
.heroStatCard {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--accent-teal-bg, rgba(45, 125, 125, 0.12));
|
|
|
|
|
|
border: 1px solid rgba(45, 125, 125, 0.2);
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
padding: 1rem 1.1rem;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 14:31:31 +01:00
|
|
|
|
.heroStatLabel {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.6rem;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.3rem;
|
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 14:31:31 +01:00
|
|
|
|
.heroStatValue {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-family: var(--font-playfair), "Playfair Display", Georgia, serif;
|
|
|
|
|
|
font-size: 2.1rem;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 14:31:31 +01:00
|
|
|
|
.heroStatHint {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
|
|
|
|
|
font-style: normal;
|
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 480px) {
|
2026-04-14 14:31:31 +01:00
|
|
|
|
.heroStatGrid {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 14:31:31 +01:00
|
|
|
|
.heroStatValue {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 1.85rem;
|
|
|
|
|
|
}
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Progress score colour coding */
|
|
|
|
|
|
.progressPositive {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
font-weight: 700;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:06:36 +00:00
|
|
|
|
.progressNegative {
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-coral-dark, #b04a2e);
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-weight: 700;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:34:19 +00:00
|
|
|
|
/* ── Semantic status colours (unified) ────────────── */
|
|
|
|
|
|
.statusGood {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--accent-teal-bg);
|
|
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
2026-03-25 10:34:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.statusWarn {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--accent-gold-bg);
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-gold-text, #7a6800);
|
2026-03-25 10:34:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.statusBad {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--accent-coral-bg);
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-coral-dark, #b04a2e);
|
2026-03-25 10:34:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:06:36 +00:00
|
|
|
|
/* Charts Section */
|
2026-02-02 20:34:35 +00:00
|
|
|
|
.chartContainer {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 280px;
|
|
|
|
|
|
position: relative;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-04 12:14:28 +00:00
|
|
|
|
/* Detailed Metrics - Compact Grid Layout */
|
|
|
|
|
|
.metricGroupsGrid {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
|
gap: 1rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metricGroup {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
margin-bottom: 0;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metricGroupTitle {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
|
padding-bottom: 0.375rem;
|
|
|
|
|
|
border-bottom: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.375rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metricTable {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 0.375rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metricRow {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 0.375rem 0.625rem;
|
|
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
border-radius: 4px;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metricName {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metricRow .metricValue {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:06:36 +00:00
|
|
|
|
/* History Table */
|
2026-02-02 20:34:35 +00:00
|
|
|
|
.tableWrapper {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:34:19 +00:00
|
|
|
|
.historicalSubtitle {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
|
color: var(--text-muted, #8a847a);
|
|
|
|
|
|
margin: 1.25rem 0 0.25rem;
|
2026-03-25 10:34:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-02 20:34:35 +00:00
|
|
|
|
.dataTable {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
font-size: 0.8125rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.dataTable thead {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.dataTable th {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
padding: 0.625rem 0.75rem;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 0.6875rem;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.03em;
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
border-bottom: 2px solid var(--border-color, #e5dfd5);
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.dataTable td {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
|
border-bottom: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.dataTable tbody tr:last-child td {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
border-bottom: none;
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.dataTable tbody tr:hover {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.yearCell {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--accent-gold, #c9a227);
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:06:36 +00:00
|
|
|
|
/* Ofsted */
|
|
|
|
|
|
.ofstedHeader {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
|
margin-bottom: 1rem;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ofstedGrade {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: inline-block;
|
|
|
|
|
|
padding: 0.35rem 0.75rem;
|
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
white-space: nowrap;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.ofstedGrade1 {
|
|
|
|
|
|
background: var(--accent-teal-bg);
|
|
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
}
|
|
|
|
|
|
.ofstedGrade2 {
|
|
|
|
|
|
background: rgba(60, 140, 60, 0.12);
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: #2f7a2f;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
.ofstedGrade3 {
|
|
|
|
|
|
background: var(--accent-gold-bg);
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-gold-text, #7a6800);
|
2026-04-14 14:01:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
.ofstedGrade4 {
|
|
|
|
|
|
background: var(--accent-coral-bg);
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-coral-dark, #b04a2e);
|
2026-04-14 14:01:45 +01:00
|
|
|
|
}
|
2026-03-25 10:06:36 +00:00
|
|
|
|
|
2026-03-25 13:03:04 +00:00
|
|
|
|
/* Report Card grade colours (5-level scale, lower = better) */
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.rcGrade1 {
|
|
|
|
|
|
background: var(--accent-teal-bg);
|
|
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
} /* Exceptional */
|
|
|
|
|
|
.rcGrade2 {
|
|
|
|
|
|
background: rgba(60, 140, 60, 0.12);
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: #2f7a2f;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
} /* Strong */
|
|
|
|
|
|
.rcGrade3 {
|
|
|
|
|
|
background: var(--accent-gold-bg);
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-gold-text, #7a6800);
|
2026-04-14 14:01:45 +01:00
|
|
|
|
} /* Expected standard */
|
|
|
|
|
|
.rcGrade4 {
|
|
|
|
|
|
background: rgba(249, 115, 22, 0.12);
|
|
|
|
|
|
color: #c2410c;
|
|
|
|
|
|
} /* Needs attention */
|
|
|
|
|
|
.rcGrade5 {
|
|
|
|
|
|
background: var(--accent-coral-bg);
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-coral-dark, #b04a2e);
|
2026-04-14 14:01:45 +01:00
|
|
|
|
} /* Urgent improvement */
|
2026-03-25 13:03:04 +00:00
|
|
|
|
|
2026-03-25 15:17:45 +00:00
|
|
|
|
/* Safeguarding value (used inside a standard metricCard) */
|
2026-03-25 13:03:04 +00:00
|
|
|
|
.safeguardingMet {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: inline-block;
|
|
|
|
|
|
padding: 0.2rem 0.6rem;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
background: var(--accent-teal-bg);
|
|
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
2026-03-25 13:03:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
.safeguardingNotMet {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: inline-block;
|
|
|
|
|
|
padding: 0.2rem 0.6rem;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
background: var(--accent-coral-bg);
|
2026-07-02 21:33:51 +01:00
|
|
|
|
color: var(--accent-coral-dark, #b04a2e);
|
2026-03-25 13:03:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 12:00:12 +00:00
|
|
|
|
.ofstedDisclaimer {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
|
color: var(--text-muted, #8a847a);
|
|
|
|
|
|
font-style: italic;
|
|
|
|
|
|
margin: 0 0 1rem;
|
2026-03-25 12:00:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:06:36 +00:00
|
|
|
|
.ofstedDate {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
|
color: var(--text-muted, #8a847a);
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ofstedPrevious {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
color: var(--text-muted, #8a847a);
|
|
|
|
|
|
font-style: italic;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ofstedReportLink {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
white-space: nowrap;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ofstedReportLink:hover {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
text-decoration: underline;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:34:19 +00:00
|
|
|
|
/* Admissions badge — uses unified status colours */
|
2026-03-25 10:06:36 +00:00
|
|
|
|
.admissionsBadge {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.35rem;
|
|
|
|
|
|
padding: 0.3rem 0.75rem;
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
margin-top: 0.75rem;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Deprivation dot scale */
|
|
|
|
|
|
.deprivationDots {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 0.375rem;
|
|
|
|
|
|
margin: 0.75rem 0 0.5rem;
|
|
|
|
|
|
align-items: center;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.deprivationDot {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
width: 1.25rem;
|
|
|
|
|
|
height: 1.25rem;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
border: 2px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
flex-shrink: 0;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.deprivationDotFilled {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
background: var(--accent-teal, #2d7d7d);
|
|
|
|
|
|
border-color: var(--accent-teal, #2d7d7d);
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.deprivationDesc {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
|
margin: 0;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.deprivationScaleLabel {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
|
color: var(--text-muted, #8a847a);
|
|
|
|
|
|
margin-top: 0.25rem;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Progress note */
|
2026-04-08 15:13:13 +01:00
|
|
|
|
.ofstedAllSame {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.9375rem;
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
|
|
|
|
|
margin: 0.5rem 0 0;
|
|
|
|
|
|
line-height: 1.5;
|
2026-04-08 15:13:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ofstedAllSame strong {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
color: var(--text-primary, #1a1612);
|
2026-04-08 15:13:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 10:06:36 +00:00
|
|
|
|
.progressNote {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
margin-top: 0.75rem;
|
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
font-style: italic;
|
2026-03-25 10:06:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Responsive ──────────────────────────────────────── */
|
2026-02-02 20:34:35 +00:00
|
|
|
|
@media (max-width: 768px) {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.headerContent {
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
|
}
|
2026-02-02 20:34:35 +00:00
|
|
|
|
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.actions {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
2026-02-02 20:34:35 +00:00
|
|
|
|
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.btnAdd,
|
|
|
|
|
|
.btnRemove {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
}
|
2026-02-02 20:34:35 +00:00
|
|
|
|
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.schoolName {
|
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
|
}
|
2026-02-02 20:34:35 +00:00
|
|
|
|
|
2026-05-19 09:20:35 +01:00
|
|
|
|
/* Pills wrap horizontally instead of stacking — short tokens like
|
|
|
|
|
|
"Manchester" / "Voluntary aided" fit 2 per row instead of 3 full
|
|
|
|
|
|
rows of empty horizontal space. */
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.meta {
|
2026-05-19 09:20:35 +01:00
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
flex-wrap: wrap;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
gap: 0.375rem;
|
|
|
|
|
|
}
|
2026-02-02 20:34:35 +00:00
|
|
|
|
|
2026-05-19 09:20:35 +01:00
|
|
|
|
/* Secondary header info (headteacher, website, pupil count, trust)
|
|
|
|
|
|
isn't needed above the fold on phones — pupil count lives in the
|
|
|
|
|
|
Pupils & Inclusion section, website is one scroll away. Reclaim
|
|
|
|
|
|
the ~3 vertical lines so the actual metrics surface sooner. */
|
|
|
|
|
|
.headerDetails {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.metricsGrid {
|
|
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
|
|
}
|
2026-02-04 12:14:28 +00:00
|
|
|
|
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.metricGroupsGrid {
|
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
|
}
|
2026-02-02 20:34:35 +00:00
|
|
|
|
|
2026-05-19 13:40:11 +01:00
|
|
|
|
/* PerformanceChart on mobile now stacks: trend banner → chip subtitle →
|
|
|
|
|
|
chip row → canvas → mini-legend → COVID footnote. The container must
|
|
|
|
|
|
flow naturally instead of clipping to a fixed 220px — PerformanceChart's
|
|
|
|
|
|
own .chartWrapper carries the canvas height. */
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.chartContainer {
|
2026-05-19 13:40:11 +01:00
|
|
|
|
height: auto;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
}
|
2026-02-02 20:34:35 +00:00
|
|
|
|
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.dataTable {
|
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
|
}
|
2026-02-02 20:34:35 +00:00
|
|
|
|
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.dataTable th,
|
|
|
|
|
|
.dataTable td {
|
|
|
|
|
|
padding: 0.5rem 0.375rem;
|
|
|
|
|
|
}
|
2026-02-02 20:34:35 +00:00
|
|
|
|
}
|
2026-03-23 21:31:28 +00:00
|
|
|
|
|
2026-03-25 10:06:36 +00:00
|
|
|
|
@media (max-width: 480px) {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.card {
|
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
|
}
|
2026-03-24 11:44:04 +00:00
|
|
|
|
}
|
2026-04-08 10:32:33 +01:00
|
|
|
|
|
2026-07-01 18:12:12 +01:00
|
|
|
|
/* .heroStatLabel is shared by the SATs / Pupils stat cards below. */
|
2026-04-08 10:32:33 +01:00
|
|
|
|
.heroStatLabel {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.6875rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-04-08 10:32:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
.heroSummary {
|
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
|
}
|
2026-04-08 10:32:33 +01:00
|
|
|
|
}
|
2026-04-13 21:22:24 +01:00
|
|
|
|
|
2026-04-14 13:30:11 +01:00
|
|
|
|
/* ── RWM bridge ("Why is combined lower?") ── */
|
|
|
|
|
|
.rwmBridge {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
|
margin: 0.5rem 0 1.5rem;
|
|
|
|
|
|
padding: 0.9rem 1rem;
|
|
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
border-radius: 8px;
|
2026-04-14 13:30:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rwmBridgeIcon {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
width: 22px;
|
|
|
|
|
|
height: 22px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: var(--accent-coral, #e07256);
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
|
font-family: var(--font-playfair), "Playfair Display", Georgia, serif;
|
|
|
|
|
|
margin-top: 0.05rem;
|
2026-04-14 13:30:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rwmBridgeBody {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
flex: 1;
|
|
|
|
|
|
min-width: 0;
|
2026-04-14 13:30:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rwmBridgeText {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
|
|
|
|
|
line-height: 1.5;
|
2026-04-14 13:30:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rwmBridgeText strong {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
font-weight: 700;
|
2026-04-14 13:30:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rwmBridgeMath {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 0.35rem;
|
|
|
|
|
|
margin-top: 0.35rem;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
font-family: var(--font-playfair), "Playfair Display", Georgia, serif;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
|
font-style: italic;
|
|
|
|
|
|
align-items: baseline;
|
2026-04-14 13:30:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rwmBridgeMath strong {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
font-style: normal;
|
2026-04-14 13:30:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rwmBridgeMathSep {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
opacity: 0.5;
|
2026-04-14 13:30:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-13 21:22:24 +01:00
|
|
|
|
/* ── Progress scores row (below SatsChart) ── */
|
|
|
|
|
|
.progressScoresRow {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
margin-top: 1.25rem;
|
|
|
|
|
|
padding-top: 1rem;
|
|
|
|
|
|
border-top: 1px solid var(--border-color, #e5dfd5);
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.progressScoresGrid {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
|
flex-wrap: wrap;
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.progressScoreItem {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
|
gap: 0.4rem;
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.progressScoreLabel {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.progressScoreValue {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
font-variant-numeric: tabular-nums;
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 10:01:19 +01:00
|
|
|
|
/* ── Admissions Q&A list ── */
|
2026-06-30 16:07:54 +01:00
|
|
|
|
/* 2×2 stat tiles — number and label grouped together so the eye
|
|
|
|
|
|
doesn't travel the full card width. Hairline grid via gap + bg. */
|
|
|
|
|
|
.admissionsTiles {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
|
gap: 1px;
|
|
|
|
|
|
background: var(--border-color, #e5dfd5);
|
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsTile {
|
|
|
|
|
|
background: var(--bg-card, #fff);
|
|
|
|
|
|
padding: 1.15rem 1.25rem;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-30 16:07:54 +01:00
|
|
|
|
.admissionsTileNum {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-family: var(--font-playfair), "Playfair Display", Georgia, serif;
|
2026-06-30 16:07:54 +01:00
|
|
|
|
font-size: 2.4rem;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
line-height: 1;
|
2026-06-30 16:07:54 +01:00
|
|
|
|
color: var(--text-primary, #1a1612);
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-variant-numeric: tabular-nums;
|
|
|
|
|
|
margin: 0;
|
2026-06-30 16:07:54 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
|
flex-wrap: wrap;
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-30 16:07:54 +01:00
|
|
|
|
.admissionsTileSub {
|
|
|
|
|
|
font-family: var(--font-dm-sans), "DM Sans", sans-serif;
|
|
|
|
|
|
font-size: 0.85rem;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
2026-06-30 16:07:54 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsTileLabel {
|
|
|
|
|
|
margin: 0.55rem 0 0;
|
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsTileAccent .admissionsTileNum {
|
|
|
|
|
|
color: var(--accent-coral-dark, #c45a3f);
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 10:01:19 +01:00
|
|
|
|
.admissionsVerdict {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
margin-top: 0.75rem;
|
|
|
|
|
|
margin-bottom: 0.25rem;
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 11:03:57 +01:00
|
|
|
|
.admissionsVerdictHeadline {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-family: var(--font-playfair), "Playfair Display", Georgia, serif;
|
|
|
|
|
|
font-size: 1.35rem;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
2026-04-14 11:03:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsVerdictOver {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
color: var(--accent-coral-dark, #c45a3f);
|
2026-04-14 11:03:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsVerdictUnder {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
color: var(--accent-teal, #2d7d7d);
|
2026-04-14 11:03:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsVerdictSub {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
|
margin-top: 0.2rem;
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-14 10:01:19 +01:00
|
|
|
|
@media (max-width: 480px) {
|
2026-06-30 16:07:54 +01:00
|
|
|
|
.admissionsTile {
|
|
|
|
|
|
padding: 0.95rem 1rem;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
}
|
2026-04-14 10:01:19 +01:00
|
|
|
|
|
2026-06-30 16:07:54 +01:00
|
|
|
|
.admissionsTileNum {
|
|
|
|
|
|
font-size: 2rem;
|
2026-04-14 14:01:45 +01:00
|
|
|
|
}
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-19 18:41:03 +01:00
|
|
|
|
/* ── Admissions: header + view toggle ── */
|
|
|
|
|
|
.admissionsHeader {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
margin-bottom: 1.25rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsHeader .sectionTitle {
|
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsSeg {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
padding: 3px;
|
|
|
|
|
|
gap: 2px;
|
|
|
|
|
|
flex: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsSeg button {
|
|
|
|
|
|
appearance: none;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
background: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font: inherit;
|
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
|
|
|
|
|
padding: 0.4rem 0.9rem;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
transition: background 0.15s ease, color 0.15s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsSeg button[aria-pressed="true"] {
|
|
|
|
|
|
background: var(--bg-card, #fff);
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
box-shadow: var(--shadow-soft, 0 2px 8px rgba(26, 22, 18, 0.06));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsSeg button:hover[aria-pressed="false"] {
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Stack both views in one grid cell so the card sizes to the taller view —
|
|
|
|
|
|
toggling modes never shifts layout. */
|
|
|
|
|
|
.admissionsViewport {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsViewYear,
|
|
|
|
|
|
.admissionsViewTrend {
|
|
|
|
|
|
grid-area: 1 / 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsViewYear[hidden],
|
|
|
|
|
|
.admissionsViewTrend[hidden] {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-30 16:07:54 +01:00
|
|
|
|
/* The tile grid fills the height reserved by the taller (trend) view. */
|
2026-06-19 18:41:03 +01:00
|
|
|
|
.admissionsViewYear {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-30 16:07:54 +01:00
|
|
|
|
.admissionsViewYear .admissionsTiles {
|
2026-06-19 18:41:03 +01:00
|
|
|
|
flex: 1;
|
2026-06-30 16:07:54 +01:00
|
|
|
|
grid-template-rows: 1fr 1fr;
|
2026-06-19 18:41:03 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsChartCap {
|
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsTrendSummary {
|
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
|
|
|
|
|
margin: 1.25rem 0 0;
|
|
|
|
|
|
padding-top: 1.1rem;
|
|
|
|
|
|
border-top: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admissionsTrendSummary strong {
|
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-13 21:22:24 +01:00
|
|
|
|
/* ── History accordion ── */
|
|
|
|
|
|
.historyDisclosure {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
margin-top: 1rem;
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.historyToggle {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--text-muted, #6d685f);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
padding: 0.5rem 0;
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.4rem;
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.historyToggle::-webkit-details-marker {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
display: none;
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.historyToggle::before {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
content: "▸";
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
transition: transform 0.2s ease;
|
|
|
|
|
|
font-size: 0.7rem;
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.historyDisclosure[open] > .historyToggle::before {
|
2026-04-14 14:01:45 +01:00
|
|
|
|
transform: rotate(90deg);
|
2026-04-13 21:22:24 +01:00
|
|
|
|
}
|