/* =========================================================================
   ATVET School theme styles
   Palette comes from CSS custom properties printed by the Customizer:
   --c-primary, --c-primary-dark, --c-primary-soft,
   --c-secondary, --c-secondary-soft, --c-accent, --c-tint, --c-link
   ========================================================================= */

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

:root {
	--font: 'Gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--radius: 12px;
	--radius-lg: 20px;
	--shadow: 0 8px 28px rgba(20, 40, 32, 0.10);
	--text: #26312C;
	--muted: #5A6660;
	--maxw: 1180px;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-link); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
	font-family: var(--font);
	color: var(--c-primary);
	line-height: 1.2;
	margin: 0 0 0.5em;
	letter-spacing: -0.015em;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
}
.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--c-primary); color: #fff; padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 3px solid var(--c-link); outline-offset: 2px; }

/* ---- Buttons and links ------------------------------------------------ */
.btn {
	display: inline-block;
	background: var(--c-primary);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	border: 0;
	border-radius: var(--radius);
	padding: 12px 28px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}
.btn:hover { background: var(--c-primary-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn--sm { padding: 8px 22px; font-size: 14px; border-radius: 10px; }
.btn--wide { min-width: 240px; }
.btn--pill { border-radius: 999px; width: 100%; }

.text-link {
	font-weight: 600;
	color: var(--c-primary);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.text-link--light { color: var(--c-secondary); }
.text-link:hover { text-decoration: underline; }

/* ---- Header ------------------------------------------------------------ */
.site-header {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 50;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 88px;
	padding: 8px 0;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--c-primary);
	font-weight: 700;
}
.brand:hover { text-decoration: none; }
/* Logo size comes from Customize > School Identity > Logo size.
   The GTVET brand manual sets a 70px digital minimum; the control warns
   about it and GTVET sites should stay at or above that value. */
/* !important is deliberate: migrated sites often still have a page-builder
   plugin injecting its own logo sizing, which otherwise wins. */
.brand__logo,
.brand .custom-logo {
	width: auto !important;
	height: var(--logo-size, 72px) !important;
	max-width: 320px;
	object-fit: contain;
	border-radius: 4px;
}
.brand__secondary {
	height: var(--logo-size, 72px) !important;
	width: auto !important;
}
.brand__divider { width: 1.5px; height: calc(var(--logo-size, 72px) * 0.8); background: #d7d7d7; flex: none; }
.brand__secondary { height: var(--logo-size, 72px); width: auto; max-width: 210px; object-fit: contain; }
.brand__name {
	font-size: 15px;
	line-height: 1.25;
	max-width: 190px;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}

.main-nav { margin-left: auto; }
.main-nav__list, .main-nav ul {
	list-style: none;
	display: flex;
	gap: 32px;
	margin: 0;
	padding: 0;
}
.main-nav a {
	color: var(--text);
	font-weight: 500;
	font-size: 15px;
	padding: 6px 0;
}
.main-nav a:hover { color: var(--c-link); text-decoration: none; }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { color: var(--c-link); font-weight: 600; }

.main-nav li { position: relative; }
.main-nav .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 7px; height: 7px;
	margin-left: 7px;
	border-right: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}
.main-nav .sub-menu {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(100% + 8px);
	left: -18px;
	min-width: 230px;
	background: #fff;
	border-radius: 10px;
	box-shadow: var(--shadow);
	padding: 10px 0;
	margin: 0;
	list-style: none;
	flex-direction: column;
	gap: 0;
	transition: opacity 0.15s ease;
	z-index: 60;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu { visibility: visible; opacity: 1; display: flex; }
.main-nav .sub-menu a { display: block; padding: 9px 20px; font-size: 14.5px; }
.main-nav .sub-menu a:hover { background: var(--c-primary-soft); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.search-toggle, .menu-toggle {
	background: none; border: 0; cursor: pointer;
	color: var(--c-link); padding: 8px; border-radius: 8px;
}
.search-toggle:hover { background: var(--c-primary-soft); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; }
.menu-toggle span {
	width: 24px; height: 2.5px; background: var(--c-primary);
	border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.header-search { background: var(--c-primary-soft); padding: 16px 0; }
.search-form { display: flex; gap: 10px; }
.search-form input[type="search"] {
	flex: 1; padding: 10px 16px; border: 1px solid #cfd8d3;
	border-radius: 10px; font-family: var(--font); font-size: 15px;
}

/* ---- Heroes ------------------------------------------------------------ */
.home-hero { position: relative; }
.hero-slide {
	position: relative;
	min-height: var(--home-hero-h, 560px);
	display: flex;
	align-items: flex-end;
	background: var(--c-primary) var(--hero-pos, top center)/cover no-repeat;
	color: #fff;
}
.home-hero--slider { min-height: var(--home-hero-h, 560px); }
.home-hero--slider .hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.7s ease;
	pointer-events: none;
}
.home-hero--slider .hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 9px;
	z-index: 5;
}
.hero-dots button {
	width: 10px; height: 10px; border-radius: 50%;
	border: 0; padding: 0; cursor: pointer;
	background: rgba(255, 255, 255, 0.5);
}
.hero-dots button[aria-current="true"] { background: #fff; }
.btn--hero {
	background: transparent;
	border: 1.6px solid #fff;
	color: #fff;
	margin-top: 24px;
	border-radius: 8px;
}
.btn--hero:hover { background: #fff; color: var(--c-primary); }
.home-hero__overlay,
.page-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(20, 30, 26, 0.25) 0%, rgba(20, 30, 26, 0.55) 100%);
}
.home-hero__content { position: relative; padding-bottom: 64px; max-width: var(--maxw); width: 100%; }
.home-hero__title {
	color: #fff;
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 700;
	text-transform: uppercase;
	/* Uppercase bold glyphs are wider than the ch unit assumes, so keep this
	   generous; use // in the Customizer title to control breaks exactly. */
	max-width: 20ch;
	text-wrap: balance;
	margin-bottom: 18px;
}
.home-hero__rule { display: block; width: 64px; height: 3px; background: #fff; margin-bottom: 22px; }
.home-hero__text {
	max-width: 640px;
	font-size: clamp(16px, 1.3vw, 19px);
	line-height: 1.65;
	opacity: 0.95;
}

.page-hero {
	position: relative;
	min-height: var(--hero-h, 340px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--c-primary) var(--hero-pos, top center)/cover no-repeat;
}
.page-hero .page-hero__overlay {
	background: rgba(15, 25, 20, var(--hero-overlay, 0.45));
}
.page-hero__title {
	position: relative;
	color: #fff;
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	margin: 0;
	text-align: center;
}

/* ---- Home intro band + feature strip ----------------------------------- */
.intro-band {
	background: var(--c-primary);
	color: #fff;
	padding: 118px 0 0;
	margin-bottom: 96px;
}
.intro-band__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 56px;
	padding-bottom: 72px;
}
.intro-band__lead {
	color: var(--c-secondary);
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 700;
	margin: 0;
}
.intro-band__body p { margin-top: 0; font-size: 15px; opacity: 0.92; }

.stats-strip {
	list-style: none;
	margin: 0;
	padding: 40px 20px;
	background: var(--c-secondary);
	border-radius: var(--radius-lg);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	transform: translateY(50%);
	box-shadow: var(--shadow);
	color: var(--c-primary);
}
.stats-strip__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 6px 20px;
	text-align: center;
	border-right: 1.5px solid rgba(30, 60, 48, 0.30);
}
.stats-strip__item:last-child { border-right: 0; }
.stats-strip__value {
	font-size: clamp(38px, 4.6vw, 62px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--c-primary);
}
.stats-strip__label {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--c-primary);
	max-width: 22ch;
}

/* ---- Sections ----------------------------------------------------------- */
.section { padding: 76px 0; }
.section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}
.section__title {
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 700;
	margin: 0 0 24px;
}
.section__head .section__title { margin: 0; }

/* ---- Programme cards ----------------------------------------------------- */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
}
.card__media {
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--c-primary-soft);
	margin-bottom: 16px;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.card__placeholder { display: block; width: 100%; height: 100%; background: var(--c-primary-soft); }
.card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card__title { font-size: 16px; font-weight: 700; margin: 0; }
.card__title a { color: var(--c-primary); }
.card__rating {
	display: inline-flex; align-items: center; gap: 5px;
	color: var(--c-link); font-weight: 600; font-size: 14px; white-space: nowrap;
}
.card__text { font-size: 14px; color: var(--muted); margin: 8px 0 16px; }

/* ---- Impact stories band -------------------------------------------------- */
.impact {
	background: var(--c-accent);
	color: #fff;
	padding: 84px 0;
}
.impact__title { color: #fff; font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; margin-bottom: 36px; }

.impact-carousel { position: relative; }
.impact-carousel__track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 24px;
	scrollbar-width: none;
	border-radius: var(--radius);
}
.impact-carousel__track::-webkit-scrollbar { display: none; }

.impact-slide {
	flex: 0 0 100%;
	scroll-snap-align: start;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	background: #fff;
	color: var(--text);
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 320px;
}
.impact-slide__media { min-height: 260px; background: var(--c-primary-soft); }
.impact-slide__media img { width: 100%; height: 100%; object-fit: cover; }
.impact-slide__body { padding: 40px 44px; }
.impact-slide__name { color: var(--c-accent); font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.impact-slide__role { color: var(--muted); font-size: 14px; margin-top: 0; }
.impact-slide__text { font-size: 15px; }

.impact-carousel__dots {
	display: flex; justify-content: center; gap: 8px; margin-top: 22px;
}
.impact-carousel__dots button {
	width: 9px; height: 9px; border-radius: 50%;
	border: 0; padding: 0; cursor: pointer;
	background: rgba(255, 255, 255, 0.45);
}
.impact-carousel__dots button[aria-current="true"] { background: var(--c-secondary); }

/* ---- News cards ------------------------------------------------------------ */
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.news-card {
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--c-secondary-soft);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.news-card__media { aspect-ratio: 4 / 3; background: var(--c-primary-soft); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 20px 22px 26px; }
.news-card__title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.news-card__title a { color: var(--c-primary); }
.news-card__body p { font-size: 13.5px; color: var(--text); margin: 0; }

/* ---- About page ---------------------------------------------------------- */
.about-intro {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 64px;
	align-items: start;
}
.about-intro__media img { border-radius: var(--radius); aspect-ratio: 1; object-fit: cover; }
.about-intro__title { font-size: clamp(24px, 2.8vw, 32px); font-weight: 700; }

.values-band { background: var(--c-secondary); padding: 84px 0; }
.values-band__title {
	text-align: center;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	margin-bottom: 48px;
}
.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}
.value-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 34px 22px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.value-card__icon {
	width: 62px; height: 62px;
	border-radius: 50%;
	background: var(--c-primary);
	color: #fff;
	display: grid;
	place-items: center;
}
.value-card__icon svg { width: 30px; height: 30px; }
.value-card__label { font-size: 15px; font-weight: 700; margin: 0; }

.vm-stack { display: grid; gap: 36px; max-width: 860px; }
.vm-card {
	border-radius: var(--radius);
	padding: 60px 48px 44px;
	text-align: center;
	position: relative;
}
.vm-card--vision { background: var(--c-primary-soft); }
.vm-card--mission { background: var(--c-tint); }
.vm-card__tag {
	position: absolute;
	top: 0; left: 50%;
	transform: translate(-50%, -50%);
	background: var(--c-primary);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	padding: 10px 34px;
	border-radius: 4px;
}
.vm-card__tag::before, .vm-card__tag::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 26px; height: 1.5px;
	background: var(--c-link);
}
.vm-card__tag::before { right: 100%; }
.vm-card__tag::after { left: 100%; }
.vm-card__text { font-weight: 700; font-size: clamp(16px, 2vw, 20px); margin: 0; color: #1c1c1c; }
.vm-hint { color: var(--muted); font-style: italic; }

/* ---- Resources band ---------------------------------------------------------- */
.resources-band { background: var(--c-tint); padding: 76px 0; }
.resource-list { list-style: none; margin: 0; padding: 0; }
.resource-list__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 4px;
	border-bottom: 1.5px solid var(--c-secondary);
	font-weight: 500;
}
.resource-list__link { font-weight: 700; color: var(--c-primary); }

/* ---- Forms --------------------------------------------------------------------- */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.field input:not([type="checkbox"]):not([type="file"]),
.field select,
.field textarea {
	width: 100%;
	font-family: var(--font);
	font-size: 15px;
	color: var(--text);
	border: 0;
	background: var(--c-tint);
	border-radius: 8px;
	padding: 15px 18px;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--c-primary) 50%), linear-gradient(135deg, var(--c-primary) 50%, transparent 50%); background-position: calc(100% - 24px) 50%, calc(100% - 18px) 50%; background-size: 6px 6px; background-repeat: no-repeat; cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: #5b5b45; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--c-link); }

.app-form { max-width: 900px; margin: 32px auto 0; }
.app-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 40px;
	margin-bottom: 36px;
}
.field--inline { display: flex; align-items: center; gap: 16px; }
.field--inline label { white-space: nowrap; font-size: 15px; }

.confirm { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; cursor: pointer; }
.confirm input {
	width: 34px; height: 34px;
	accent-color: var(--c-primary);
	background: var(--c-secondary);
	flex: none;
	cursor: pointer;
}

.field--upload input[type="file"] { display: none; }
.upload-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: var(--c-tint);
	border-radius: 8px;
	padding: 22px 20px;
	cursor: pointer;
	color: var(--text);
	transition: background 0.2s ease;
}
.upload-label:hover { background: var(--c-secondary-soft); }
.upload-label small { color: var(--muted); }
.field--upload.has-file .upload-label { outline: 2px solid var(--c-link); }

/* Contact page */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 72px;
	align-items: start;
}
.contact-details { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 18px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; font-weight: 700; color: var(--c-primary); }
.contact-details svg { flex: none; margin-top: 4px; color: var(--c-primary); }
.contact-details a { color: var(--c-primary); }

.contact-form { display: grid; gap: 18px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field--outline input, .field--outline textarea {
	background: #fff;
	border: 1.5px solid #cfd4d1;
	border-radius: 10px;
}
.field--outline input:focus, .field--outline textarea:focus { border-color: var(--c-link); outline: none; box-shadow: 0 0 0 3px var(--c-primary-soft); }

.form-notice { border-radius: 10px; padding: 14px 18px; margin: 20px 0; font-weight: 500; }
.form-notice--ok { background: var(--c-primary-soft); color: var(--c-primary); }
.form-notice--err { background: #FBE3E1; color: #A02A24; }

/* ---- Single / misc --------------------------------------------------------------- */
.entry-content--lead { max-width: 760px; margin-bottom: 8px; }
.single-meta { margin-bottom: 16px; }
.single-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.post-meta { color: var(--muted); font-size: 14px; }
.search-result { padding: 18px 0; border-bottom: 1px solid #e6e9e7; }

.pagination, .nav-links { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.nav-links .page-numbers {
	padding: 8px 14px; border-radius: 8px; background: var(--c-primary-soft);
	color: var(--c-primary); font-weight: 600;
}
.nav-links .page-numbers.current { background: var(--c-primary); color: #fff; }

/* ---- Footer --------------------------------------------------------------------- */
.site-footer { padding: 24px 0 48px; }
.site-footer__rule { border: 0; border-top: 1.5px solid var(--c-link); margin-bottom: 40px; }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.2fr;
	gap: 40px;
	align-items: start;
	color: var(--c-primary);
}
.site-footer__copy { font-size: 14px; color: var(--text); margin-top: 24px; }
.site-footer__address { font-size: 15px; line-height: 1.8; }
.site-footer__label { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.site-footer__contact { display: grid; gap: 8px; justify-items: start; font-size: 15px; }
.site-footer__contact a { color: var(--c-primary); font-weight: 500; }

.social-row { display: flex; align-items: center; gap: 14px; margin-top: 14px; font-size: 15px; }
.social-link { color: var(--c-primary); display: inline-flex; }
.social-link:hover { color: var(--c-link); }

.footer-nav { list-style: none; display: flex; gap: 24px; padding: 0; margin: 32px 0 0; flex-wrap: wrap; }
.footer-nav a { color: var(--muted); font-size: 14px; }

/* ---- Responsive --------------------------------------------------------------------- */
@media (max-width: 960px) {
	.card-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
	.values-grid { grid-template-columns: repeat(2, 1fr); }
	.intro-band__grid, .about-intro, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
	.impact-slide { grid-template-columns: 1fr; }
	.stats-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 0; padding: 32px 16px; }
	.stats-strip__item:nth-child(2) { border-right: 0; }
	.stats-strip__item:nth-child(-n+2) { border-bottom: 1.5px solid rgba(30, 60, 48, 0.20); padding-bottom: 24px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
	.menu-toggle { display: flex; }
	.main-nav {
		display: none;
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #fff;
		box-shadow: var(--shadow);
		padding: 20px 24px 28px;
	}
	.main-nav.is-open { display: block; }
	.main-nav__list, .main-nav ul { flex-direction: column; gap: 16px; }

	.section { padding: 56px 0; }
	.card-grid, .news-grid, .values-grid { grid-template-columns: 1fr; }
	.app-form__grid, .contact-form__row { grid-template-columns: 1fr; }
	.hero-slide, .home-hero--slider { min-height: min(var(--home-hero-h, 460px), 620px); }
	.intro-band { padding-top: 72px; }
	.main-nav .sub-menu {
		visibility: visible; opacity: 1;
		position: static; box-shadow: none;
		padding: 6px 0 0 16px; min-width: 0; display: flex;
	}
	.intro-band { margin-bottom: 140px; }
	.stats-strip { transform: translateY(35%); }
	.impact-slide__body { padding: 28px 24px; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
	.single-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---- Staff grid (Management & Staff template) --------------------------- */
.section--tight { padding-bottom: 0; }
.staff-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 36px 28px;
}
.staff-card { text-align: center; }
.staff-card__photo {
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--c-primary-soft);
	margin-bottom: 14px;
}
.staff-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-card__placeholder { display: block; width: 100%; height: 100%; background: var(--c-primary-soft); }
.staff-card__name { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.staff-card__role { color: var(--c-link); font-weight: 600; font-size: 14px; margin: 0 0 8px; }
.staff-card__bio { font-size: 13.5px; color: var(--muted); }

/* ---- News card date ------------------------------------------------------ */
.news-card__date { font-size: 12.5px; color: var(--muted); margin: 0 0 4px; font-weight: 500; }

/* ---- Rendering hardening (review feedback: distorted display) ------------ */
body { overflow-x: hidden; }
.home-hero__title, .page-hero__title, .section__title { overflow-wrap: normal; word-break: normal; }
.home-hero__title, .page-hero__title { text-wrap: balance; }
.container { min-width: 0; }
.card-grid > *, .news-grid > *, .staff-grid > * { min-width: 0; }
img { object-fit: cover; }

@media (max-width: 960px) {
	.staff-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
	.staff-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}
@media (max-width: 420px) {
	.staff-grid { grid-template-columns: 1fr; }
}

/* ---- About page v2 (Ohawu layout), brand font stack throughout ---------- */
/* Brand manual weight mapping: headings Gotham Bold (700), subheadings
   Gotham Medium (500), body Gotham Light (400 for on-screen legibility). */

.eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 10px;
}
.eyebrow::before {
	content: "";
	width: 26px; height: 1.5px;
	background: currentColor;
}
.eyebrow--plain::before { display: none; }
.eyebrow--plain { justify-content: flex-start; }
.eyebrow--left { justify-content: flex-start; margin-bottom: 6px; }

.section__title--center { text-align: center; }
.title-rule {
	display: block;
	width: 44px; height: 2px;
	background: var(--c-primary);
	margin: 0 auto 28px;
}

.about-story { text-align: center; }
.about-story__text { max-width: 720px; margin: 0 auto; }
.about-story__text p { margin-top: 0; }

.about-welcome {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 64px;
	align-items: start;
}
.about-welcome__media { position: relative; }
.about-welcome__media img {
	border-radius: var(--radius);
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}
.about-welcome__title {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	margin-bottom: 18px;
}
.about-welcome .eyebrow { justify-content: flex-start; }

.est-badge {
	position: absolute;
	top: 18px; left: -14px;
	z-index: 2;
	background: var(--c-primary);
	color: #fff;
	border-radius: 10px;
	padding: 10px 16px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.1;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow);
}
.est-badge small {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
}

.motto-box {
	background: var(--c-tint);
	border-left: 3px solid var(--c-primary);
	border-radius: 8px;
	padding: 18px 24px;
	margin-top: 26px;
}
.motto-box__text {
	font-size: 19px;
	font-weight: 700;
	color: var(--c-primary);
	margin: 4px 0 0;
}

/* Values grid grows with the number of values (Ohawu has five) */
.values-grid--flow {
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.value-card__icon--outline {
	background: transparent;
	border: 1.6px solid var(--c-primary);
	color: var(--c-primary);
}
.value-card__desc {
	font-size: 13.5px;
	color: var(--muted);
	margin: 0;
	line-height: 1.55;
}

.partner-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-top: 40px;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}
.partner-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: var(--radius);
	padding: 30px 32px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}
.partner-card__name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.partner-card__desc { font-size: 14.5px; color: var(--text); margin: 0; }

@media (max-width: 960px) {
	.about-welcome { grid-template-columns: 1fr; gap: 36px; }
	.est-badge { left: 12px; }
}
@media (max-width: 720px) {
	.partner-grid { grid-template-columns: 1fr; }
}

/* ---- Boxed card style (Ohawu design) ------------------------------------ */
/* Activated by Customizer > Color Scheme > Card & section style = Boxed.
   Cards become white shadowed panels, programme bands go grey, resources
   sit in a white rounded container, headings centre. */

.style-boxed .programmes-band { background: #F5F5F5; }

.style-boxed .card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
	display: flex;
	flex-direction: column;
	padding-bottom: 24px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.style-boxed .card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10); }
.style-boxed .card__media {
	border-radius: 0;
	margin: 0 0 18px;
	aspect-ratio: 16 / 10;
}
.style-boxed .card__head,
.style-boxed .card__text { padding: 0 24px; }
.style-boxed .card__text { margin-bottom: 20px; }
.style-boxed .card .btn { margin: auto 24px 0; align-self: flex-start; }

.style-boxed .resources-band { background: #F5F5F5; }
.style-boxed .resource-list {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	padding: 8px 28px;
}
.style-boxed .resource-list__item { border-bottom: 1px solid #E8E8E8; padding: 17px 0; }
.style-boxed .resource-list__item:last-child { border-bottom: 0; }

/* Homepage cards get the same treatment for consistency */
.style-boxed .news-card { background: #fff; box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07); }

/* ---- Page hero badge (e.g. "Ministry of Food and Agriculture Admission Portal") */
.page-hero__stack {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 0 24px;
	text-align: center;
}
.page-hero__badge {
	background: rgba(10, 10, 10, 0.85);
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 9px 20px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

/* ---- Form labels: hidden in flat mode, visible with asterisks in boxed --- */
.field { position: relative; }
.style-flat .field__label {
	position: absolute !important;
	width: 1px; height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
}
.style-boxed .field__label,
.field__label--visible {
	display: block;
	position: static !important;
	width: auto; height: auto;
	clip: auto;
	overflow: visible;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 7px;
}
.req { color: #D0342C; margin-left: 3px; }
.style-flat .app-form .req,
.style-flat .contact-form .req { display: none; }

/* Boxed mode: outlined white inputs, stacked date field, outlined upload */
.style-boxed .app-form .field input:not([type="checkbox"]):not([type="file"]),
.style-boxed .app-form .field select,
.style-boxed .app-form .field textarea {
	background: #fff;
	border: 1px solid #C9CDCB;
	border-radius: 7px;
}
.style-boxed .app-form .field input:focus,
.style-boxed .app-form .field select:focus,
.style-boxed .app-form .field textarea:focus {
	border-color: var(--c-primary);
	outline: none;
	box-shadow: 0 0 0 3px var(--c-primary-soft);
}
.style-boxed .field--inline { display: block; }
.style-boxed .upload-label { background: #fff; border: 1px solid #C9CDCB; }
.style-boxed .upload-label:hover { background: var(--c-primary-soft); }
.style-boxed .confirm input { background: #fff; }

.h-captcha { margin: 6px 0 20px; }

/* ---- Programme detail (enhanced Ohawu layout) ---------------------------- */
.prog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 36px;
	align-items: start;
}
.prog-main { display: grid; gap: 26px; min-width: 0; }

.prog-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 34px 38px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}
.prog-card--soft { background: #F5F5F5; box-shadow: none; }
.prog-title { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin-bottom: 12px; }
.prog-intro { color: var(--text); margin: 0 0 18px; }
.prog-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.prog-badge {
	background: var(--c-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 18px;
	border-radius: 999px;
}
.prog-card__heading { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.prog-card__intro { margin-top: 0; }
.prog-card__note { color: var(--muted); font-size: 14px; margin-bottom: 0; }

.chip-list {
	list-style: none;
	margin: 14px 0 6px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.chip {
	background: #fff;
	border: 1px solid #E4E4E4;
	border-radius: 9px;
	padding: 12px 16px 12px 34px;
	font-size: 14px;
	font-weight: 600;
	position: relative;
}
.chip::before {
	content: "";
	position: absolute;
	left: 15px; top: 50%;
	transform: translateY(-50%);
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--c-primary);
}

.prog-cta {
	background: var(--c-primary);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 44px 40px;
	text-align: center;
}
.prog-cta__title { color: #fff; font-size: clamp(24px, 3vw, 32px); font-weight: 800; margin-bottom: 10px; }
.prog-cta__text { max-width: 560px; margin: 0 auto 22px; font-size: 15px; opacity: 0.92; }
.btn--invert { background: #fff; color: var(--c-primary); }
.btn--invert:hover { background: var(--c-secondary-soft); color: var(--c-primary); }

.prog-side { display: grid; gap: 24px; position: sticky; top: 116px; }
.prog-summary {
	background: var(--c-primary);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 28px 26px;
}
.prog-summary__title { color: #fff; font-size: 19px; font-weight: 700; margin-bottom: 16px; }
.prog-summary__row { padding: 11px 0; border-top: 1px solid rgba(255, 255, 255, 0.18); display: grid; gap: 3px; }
.prog-summary__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.7;
}
.prog-summary__value { font-size: 14.5px; font-weight: 600; line-height: 1.45; }

.prog-register {
	background: #F5F5F5;
	border-radius: var(--radius-lg);
	padding: 28px 26px;
}
.prog-register__title { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.prog-register p { font-size: 14.5px; margin-top: 0; }
.prog-register .btn { width: 100%; text-align: center; }

@media (max-width: 960px) {
	.prog-layout { grid-template-columns: 1fr; }
	.prog-side { position: static; }
	.chip-list { grid-template-columns: 1fr; }
	.prog-card { padding: 26px 24px; }
}

/* ---- Programme detail: requirement rows and numbered steps -------------- */
.req-list { display: grid; gap: 14px; margin-top: 16px; }
.req-row {
	background: #fff;
	border: 1px solid #E7E7E7;
	border-left: 4px solid var(--c-primary);
	border-radius: 10px;
	padding: 16px 22px;
}
.req-row__title { font-size: 15.5px; font-weight: 700; margin: 0 0 4px; }
.req-row__desc { font-size: 14px; color: var(--text); margin: 0; }

.step-list {
	list-style: none;
	counter-reset: atvet-step;
	margin: 18px 0 0;
	padding: 0;
	display: grid;
	gap: 16px;
}
.step {
	counter-increment: atvet-step;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid #E7E7E7;
	border-radius: 10px;
	padding: 18px 22px;
}
.step__num {
	flex: none;
	width: 34px; height: 34px;
	border-radius: 50%;
	background: var(--c-primary);
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: 15px;
}
.step__num::before { content: counter(atvet-step); }
.step__title { font-size: 15.5px; font-weight: 700; margin: 5px 0 4px; }
.step__desc { font-size: 14px; margin: 0; line-height: 1.7; }
.step__desc a { font-weight: 600; text-decoration: underline; }

/* Full-width single-column chip list (e.g. Further Education Opportunities) */
.chip-list--wide { grid-template-columns: 1fr; }

/* ---- Contact page labelled blocks --------------------------------------- */
.contact-blocks { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 26px; }
.contact-block { display: flex; gap: 18px; align-items: flex-start; }
.contact-block__icon { flex: none; color: var(--c-primary); margin-top: 3px; }
.contact-block__body { min-width: 0; }
.contact-block__label {
	font-size: 17px;
	font-weight: 700;
	color: var(--c-primary);
	margin: 0;
}
.contact-block__label + .contact-block__label { margin-top: 12px; }
.contact-block__value { font-size: 15px; margin: 2px 0 0; color: var(--text); }
.contact-block__value a { color: var(--text); }
.contact-block__value a:hover { color: var(--c-link); }

/* Message field character counter */
.field--message { position: relative; }
.char-count {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 13px;
	color: var(--muted);
}

/* ---- Brand layout hardening --------------------------------------------- */
/* Two logos plus a long school name can crowd the nav on mid-size screens.
   Keep the name from squashing the menu, and drop it below 1200px when a
   secondary logo is present since the marks already carry the names. */
.brand { min-width: 0; flex-shrink: 1; }
.brand__name { flex: 0 1 auto; }
.site-header__inner .main-nav { flex-shrink: 0; }

@media (max-width: 1200px) {
	.brand--dual .brand__name { display: none; }
}
@media (max-width: 1080px) {
	.brand .custom-logo { width: 60px; }
	.brand__secondary { height: 56px; max-width: 150px; }
	.brand__divider { height: 44px; }
	.main-nav__list, .main-nav ul { gap: 22px; }
}

/* ---- Header width modes -------------------------------------------------- */
/* Full width sits the logo near the left edge, as in the approved designs.
   Contained keeps the header aligned with the page content column. */
.site-header__inner--wide {
	max-width: none;
	padding-left: clamp(20px, 3vw, 56px);
	padding-right: clamp(20px, 3vw, 56px);
}
.site-header__inner--contained { max-width: var(--maxw); }

/* Scale the mid-size logo reductions off the same variable */
@media (max-width: 1080px) {
	.brand__logo,
	.brand .custom-logo { height: calc(var(--logo-size, 72px) * 0.85); width: auto; max-width: 240px; }
	.brand__secondary { height: calc(var(--logo-size, 72px) * 0.85); max-width: 150px; }
	.brand__divider { height: calc(var(--logo-size, 72px) * 0.68); }
}

/* =========================================================================
   Motion layer
   Reveals only apply when JS has flagged the document with .has-anim, so
   without JS (or with reduced motion) everything renders fully visible.
   The global prefers-reduced-motion rule near the top of this file still
   overrides every transition below.
   ========================================================================= */

.has-anim .reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.65s cubic-bezier(0.22, 0.7, 0.3, 1),
	            transform 0.65s cubic-bezier(0.22, 0.7, 0.3, 1);
	will-change: opacity, transform;
}
.has-anim .reveal.is-visible {
	opacity: 1;
	transform: none;
	will-change: auto;
}
/* Side panels drift in from their own edge for a little variety */
.has-anim .about-welcome__media.reveal { transform: translateY(20px) translateX(-16px); }
.has-anim .about-welcome__body.reveal { transform: translateY(20px) translateX(16px); }
.has-anim .about-welcome__media.is-visible,
.has-anim .about-welcome__body.is-visible { transform: none; }

/* ---- Header condensing on scroll ---------------------------------------- */
.site-header { transition: box-shadow 0.3s ease, background 0.3s ease; }
.site-header__inner { transition: min-height 0.3s ease; }
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10); }
.site-header.is-scrolled .site-header__inner { min-height: 72px; }
.site-header.is-scrolled .brand__logo,
.site-header.is-scrolled .brand__secondary {
	height: calc(var(--logo-size, 72px) * 0.86) !important;
}
.brand__logo, .brand__secondary, .brand__divider { transition: height 0.3s ease; }

/* ---- Navigation ---------------------------------------------------------- */
.main-nav > ul > li > a,
.main-nav__list > li > a { position: relative; }
.main-nav > ul > li > a::before,
.main-nav__list > li > a::before {
	content: "";
	position: absolute;
	left: 0; right: 100%;
	bottom: -2px;
	height: 2px;
	background: var(--c-link);
	transition: right 0.28s cubic-bezier(0.22, 0.7, 0.3, 1);
}
.main-nav > ul > li > a:hover::before,
.main-nav__list > li > a:hover::before,
.main-nav .current-menu-item > a::before,
.main-nav .current_page_item > a::before { right: 0; }
.main-nav a:hover { text-decoration: none; }
.main-nav .sub-menu a { transition: background 0.2s ease, padding-left 0.2s ease; }
.main-nav .sub-menu a:hover { padding-left: 26px; }
.main-nav .sub-menu li { transition: none; }
.main-nav .menu-item-has-children > a::after { transition: transform 0.25s ease; }
.main-nav .menu-item-has-children:hover > a::after { transform: rotate(45deg) translateY(1px) scale(1.05); }

/* ---- Buttons and links --------------------------------------------------- */
.btn {
	transition: background 0.25s ease, color 0.25s ease,
	            transform 0.2s cubic-bezier(0.22, 0.7, 0.3, 1),
	            box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn--hero { transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, border-color 0.3s ease; }

.text-link span { display: inline-block; transition: transform 0.25s cubic-bezier(0.22, 0.7, 0.3, 1); }
.text-link:hover span { transform: translateX(5px); }

/* ---- Cards --------------------------------------------------------------- */
.card { transition: transform 0.28s cubic-bezier(0.22, 0.7, 0.3, 1), box-shadow 0.28s ease; }
.card:hover { transform: translateY(-5px); }
.style-flat .card:hover { box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10); }
.card__title a { transition: color 0.2s ease; }
.card:hover .card__title a { color: var(--c-link); }

.news-card__media img,
.staff-card__photo img,
.impact-slide__media img { transition: transform 0.5s cubic-bezier(0.22, 0.7, 0.3, 1); }
.news-card:hover .news-card__media img,
.staff-card:hover .staff-card__photo img { transform: scale(1.05); }

.value-card { transition: transform 0.28s ease, box-shadow 0.28s ease; }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12); }
.value-card__icon { transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease; }
.value-card:hover .value-card__icon--outline {
	background: var(--c-primary);
	color: #fff;
	transform: scale(1.08);
}

.partner-card { transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease; }
.partner-card:hover {
	transform: translateY(-4px);
	border-color: var(--c-primary);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
}

/* ---- Programme detail elements ------------------------------------------- */
.chip { transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
.chip:hover {
	transform: translateY(-2px);
	border-color: var(--c-primary);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);
}
.req-row { transition: box-shadow 0.25s ease, transform 0.25s ease; }
.req-row:hover { transform: translateX(3px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07); }
.step { transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.step:hover { border-color: var(--c-primary); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07); }
.step__num { transition: transform 0.25s ease; }
.step:hover .step__num { transform: scale(1.08); }
.prog-badge { transition: transform 0.22s ease; }
.prog-badge:hover { transform: translateY(-2px); }

/* ---- Lists and rows ------------------------------------------------------ */
.resource-list__item { transition: background 0.22s ease, padding-left 0.22s ease; }
.resource-list__item:hover { background: rgba(0, 0, 0, 0.03); padding-left: 12px; }
.resource-list__link { transition: transform 0.22s ease; display: inline-block; }
.resource-list__item:hover .resource-list__link { transform: translateX(4px); }

.contact-block__icon { transition: transform 0.25s ease; }
.contact-block:hover .contact-block__icon { transform: translateY(-3px); }

/* ---- Dots and small controls --------------------------------------------- */
.hero-dots button,
.impact-carousel__dots button { transition: transform 0.22s ease, background 0.22s ease; }
.hero-dots button:hover,
.impact-carousel__dots button:hover { transform: scale(1.35); }

.social-link { transition: transform 0.22s ease, color 0.22s ease; }
.social-link:hover { transform: translateY(-3px); }

.search-toggle svg { transition: transform 0.25s ease; }
.search-toggle:hover svg { transform: scale(1.12); }

/* ---- Stats --------------------------------------------------------------- */
.stats-strip__item { transition: transform 0.28s ease; }
.stats-strip__item:hover { transform: translateY(-4px); }
.stats-strip__value { transition: transform 0.28s ease; }
.stats-strip__item:hover .stats-strip__value { transform: scale(1.04); }
