/*
 * Stanrose design system components.
 *
 * These back the layout blocks generated by redesign/build.php. Keeping them in
 * one stylesheet rather than inline <style> blocks avoids repeating the same CSS
 * on every page, and keeps it editable in one place. It also sidesteps KSES,
 * which strips <style> from Elementor HTML widgets when content is written
 * programmatically.
 */

:root {
	--sr-primary: #006D5B;
	--sr-deep:    #00382F;
	--sr-ink:     #12211E;
	--sr-body:    #4A5654;
	--sr-muted:   #6E7B78;
	--sr-line:    #DCE5E3;
	--sr-ground:  #F4F7F6;
	--sr-danger:  #B3261E;
	--sr-red:     #E0100A;   /* logo red, sampled from the wordmark */
}

/* --- Paragraph alignment ---------------------------------------------- */

/*
 * Body paragraphs are justified site-wide. Hyphenation (the page is lang="en-US")
 * keeps word spacing even on narrow phone columns, where plain justification
 * opens wide gaps. The last line of each paragraph stays left-aligned.
 *
 * Scope: page content only — Elementor text blocks, custom HTML blocks
 * (director bios, cards) and classic post content. The header and mobile
 * drawer are excluded: their short blurbs sit in ~270px columns where
 * justification looks worse, not better.
 *
 * This sets text-align on the <p> itself, so it overrides alignment inherited
 * from a widget. To centre a paragraph inside one of these blocks, give the
 * widget the CSS class "sr-text-center" (Advanced → CSS Classes in Elementor).
 */
#content :is(.elementor-widget-text-editor, .elementor-widget-html, .entry-content) p {
	text-align: justify;
	text-justify: inter-word;
	-webkit-hyphens: auto;
	hyphens: auto;
	overflow-wrap: break-word;
}
#content .sr-text-center p { text-align: center; }

/* --- Stat row -------------------------------------------------------- */

.sr-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--sr-line);
	border: 1px solid var(--sr-line);
	border-radius: 6px;
	overflow: hidden;
}
.sr-stats .sr-stat { background: #fff; padding: 32px 20px; text-align: center; }
.sr-stat-v {
	font-size: 38px; font-weight: 700; line-height: 1.1;
	letter-spacing: -.5px; color: var(--sr-primary);
}
.sr-stat-l {
	margin-top: 8px; font-size: 13px; font-weight: 600;
	letter-spacing: .8px; text-transform: uppercase; color: var(--sr-muted);
}
@media (max-width: 880px) { .sr-stats { grid-template-columns: repeat(2, 1fr); } }

/* --- Data tables ------------------------------------------------------ */

.sr-tw {
	overflow-x: auto;
	border: 1px solid var(--sr-line);
	border-radius: 6px;
	background: #fff;
}
.sr-t { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 640px; }
.sr-t th, .sr-t td {
	padding: 13px 16px; text-align: right;
	border-bottom: 1px solid var(--sr-line); white-space: nowrap;
}
.sr-t th:first-child, .sr-t td:first-child { text-align: left; white-space: normal; }
.sr-t thead th {
	background: var(--sr-deep); color: #fff; font-weight: 600;
	font-size: 13px; letter-spacing: .4px; border-bottom: none;
}
.sr-t tbody tr:last-child td { border-bottom: none; }
.sr-t tbody tr:nth-child(even) td { background: var(--sr-ground); }
.sr-t .sr-neg { color: var(--sr-danger); }
.sr-t td a { color: var(--sr-primary); font-weight: 600; text-decoration: none; }
.sr-t td a:hover { text-decoration: underline; }
.sr-note { margin-top: 12px; font-size: 13px; color: var(--sr-muted); line-height: 1.7; }

/* --- Document cards --------------------------------------------------- */

.sr-docs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 14px;
}
.sr-doc {
	display: flex; align-items: center; gap: 12px; padding: 18px;
	border: 1px solid var(--sr-line); border-radius: 6px;
	background: #fff; text-decoration: none; transition: .2s;
}
.sr-doc:hover { border-color: var(--sr-primary); box-shadow: 0 4px 14px rgba(0,109,91,.08); }
/*
 * PDF icon.
 *
 * The company's own PDF glyph (uploads/2025/06/sheet.png on the live site),
 * copied into the theme as pdf-icon.png and referenced relatively — so it
 * travels with the theme to any domain instead of depending on a media-library
 * URL that would need rewriting on migration. Downscaled from 512px to 64px:
 * rendered at ~19px, that stays crisp on 3x displays at a fifth of the weight.
 */
.sr-doc-i {
	flex: 0 0 34px;
	height: 34px;
	border-radius: 5px;
	background-color: var(--sr-ground);
	background-image: url("pdf-icon.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 19px 19px;
}

/* Screen-reader-only label, so "PDF" is still announced. */
.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.sr-doc-t { display: block; font-size: 14.5px; font-weight: 600; color: var(--sr-ink); line-height: 1.4; }
.sr-doc-s { display: block; font-size: 12px; color: var(--sr-muted); margin-top: 2px; }

/* --- Generic cards ---------------------------------------------------- */

.sr-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.sr-card { padding: 28px; border: 1px solid var(--sr-line); border-radius: 8px; background: #fff; }
.sr-card h4 { margin: 0 0 10px; font-size: 19px; font-weight: 700; color: var(--sr-ink); }
.sr-card p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.75; color: var(--sr-body); }
.sr-card a { font-size: 14px; font-weight: 600; color: var(--sr-primary); text-decoration: none; }
.sr-card a:hover { text-decoration: underline; }
.sr-tag {
	display: inline-block; margin-bottom: 12px; padding: 4px 10px; border-radius: 100px;
	font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
}
.sr-tag-sub { background: var(--sr-ground); color: var(--sr-primary); }
.sr-tag-liq { background: #FBE9E7; color: var(--sr-danger); }

/* --- Governance link tiles -------------------------------------------- */

.sr-gov { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.sr-gov a {
	display: block; padding: 24px; border: 1px solid var(--sr-line);
	border-radius: 6px; background: #fff; text-decoration: none; transition: .2s;
}
.sr-gov a:hover { border-color: var(--sr-primary); }
.sr-gov b { display: block; font-size: 16px; color: var(--sr-ink); margin-bottom: 6px; }
.sr-gov span { font-size: 13.5px; color: var(--sr-muted); line-height: 1.6; }

/* --- People ----------------------------------------------------------- */

.sr-people { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.sr-person {
	padding: 26px; border: 1px solid var(--sr-line); border-radius: 8px;
	background: #fff; transition: .2s;
}
.sr-person:hover { border-color: var(--sr-primary); box-shadow: 0 6px 18px rgba(0,109,91,.07); }
.sr-person .n { font-size: 17px; font-weight: 700; color: var(--sr-ink); margin-bottom: 5px; line-height: 1.35; }
.sr-person .r { font-size: 13px; font-weight: 600; color: var(--sr-primary); letter-spacing: .3px; }
.sr-person .d { margin-top: 10px; font-size: 12.5px; color: var(--sr-muted); }
.sr-person a { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--sr-primary); text-decoration: none; }
.sr-person a:hover { text-decoration: underline; }

/* --- Homepage about visual -------------------------------------------- */

/*
 * Photo with two fact cards overlapping its left edge, reaching toward the
 * text column. Replaces the theme demo's composite image, which had its
 * "45+ Years Of Experience" badge baked in, in off-brand yellow.
 */
.sr-about-visual {
	position: relative;
	isolation: isolate;   /* keeps the z-index:-1 dot grid inside this block */
	max-width: 460px;
	margin: 0 0 0 auto;
	padding: 0 0 36px 36px;
}

.sr-about-photo {
	position: relative;
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--sr-ground);
	box-shadow: 0 24px 48px rgba(0, 56, 47, .14);
}
.sr-about-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* A light brand tint so the photo sits with the green palette. */
.sr-about-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 56, 47, 0) 55%, rgba(0, 56, 47, .28) 100%);
	pointer-events: none;
}

/* Dot grid peeking out from behind the photo, bottom right. */
.sr-about-dots {
	position: absolute;
	right: -22px;
	bottom: 8px;
	width: 132px;
	height: 132px;
	background-image: radial-gradient(var(--sr-primary) 1.6px, transparent 1.6px);
	background-size: 16px 16px;
	opacity: .28;
	z-index: -1;
}

.sr-about-badge {
	position: absolute;
	top: 34px;
	left: 0;
	display: flex;
	flex-direction: column;
	padding: 16px 22px 16px 20px;
	border-radius: 10px;
	background: var(--sr-deep);
	color: #fff;
	box-shadow: 0 14px 30px rgba(0, 56, 47, .25);
	border-left: 4px solid var(--sr-red);
}
.sr-about-badge-v {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.3px;
}
.sr-about-badge-l {
	margin-top: 4px;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .9px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .78);
}

.sr-about-stats {
	position: absolute;
	left: 0;
	bottom: 0;
	display: grid;
	grid-auto-flow: column;
	gap: 0;
	margin: 0;
	padding: 0;
	border-radius: 10px;
	background: #fff;
	border: 1px solid var(--sr-line);
	box-shadow: 0 16px 36px rgba(0, 56, 47, .14);
	overflow: hidden;
}
.sr-about-stats > div {
	display: flex;
	flex-direction: column-reverse;   /* value above label, dt still first in source */
	padding: 16px 22px;
}
.sr-about-stats > div + div { border-left: 1px solid var(--sr-line); }
.sr-about-stats dd {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--sr-primary);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
.sr-about-stats dt {
	margin-top: 4px;
	font-size: 12px;
	font-weight: 600;
	color: var(--sr-muted);
	white-space: nowrap;
}

/* 58% + 38% columns plus the 48px gap overflow below ~1280px and the image
   drops under the text on ordinary laptop widths. Above tablet, keep the two
   columns on one row and let them shrink instead. */
@media (min-width: 1025px) {
	.e-con:has(> .e-con .sr-about-visual),
	.e-con:has(> .e-con-inner > .e-con .sr-about-visual) {
		flex-wrap: nowrap;
	}
	.e-con-inner:has(> .e-con .sr-about-visual) { flex-wrap: nowrap; }
}

@media (max-width: 1024px) {
	.sr-about-visual { margin: 8px auto 0; }
	/* Once the row wraps, the image column keeps its 38% desktop width and
	   sits flush left. Let the innermost container holding the visual span the
	   row so the visual can centre. */
	.e-con:has(.sr-about-visual):not(:has(.e-con .sr-about-visual)) {
		--width: 100%;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.sr-about-visual { padding: 0 0 28px 20px; max-width: 420px; }
	.sr-about-badge { top: 22px; padding: 12px 16px 12px 14px; }
	.sr-about-badge-v { font-size: 22px; }
	.sr-about-stats > div { padding: 12px 16px; }
	.sr-about-stats dd { font-size: 18px; }
	.sr-about-dots { right: -10px; width: 96px; height: 96px; }
}

/* --- Board of Directors cards ----------------------------------------- */

.sr-directors {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
	margin-top: 8px;
}

.sr-director {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 180px;
	padding: 24px 24px 0;
	background: #fff;
	border: 1px solid var(--sr-line);
	border-radius: 10px;
	transition: border-color .2s, box-shadow .2s, transform .2s;
}
/* A thin brand rule that appears on hover/focus, instead of a heavy border. */
.sr-director::before {
	content: "";
	position: absolute;
	inset: -1px -1px auto -1px;
	height: 3px;
	border-radius: 10px 10px 0 0;
	background: var(--sr-red);
	opacity: 0;
	transition: opacity .2s;
}
.sr-director:hover,
.sr-director:focus-within {
	border-color: #F3C3C0;
	box-shadow: 0 10px 28px rgba(224, 16, 10, .09);
	transform: translateY(-2px);
}
.sr-director:hover::before,
.sr-director:focus-within::before { opacity: 1; }

/* Cards without a profile page (Management Team): same red hover, but no
   lift, and no empty footer space, since they are not links. */
.sr-director--static { min-height: 0; padding-bottom: 24px; }
.sr-director--static:hover { transform: none; }
.sr-director--static .sr-director-top { margin-bottom: 0; }

/* Stacked: monogram, then name and role at the card's full width, so long
   names and "Director & Chief Executive Officer" stay on one line. */
.sr-director-top { margin-bottom: 22px; }
.sr-director-top .sr-monogram { margin-bottom: 16px; }

.sr-monogram {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--sr-ground);
	border: 1px solid var(--sr-line);
	color: var(--sr-primary);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .5px;
}

.sr-role {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: .2px;
}
.sr-role--chair       { background: var(--sr-deep); color: #fff; }
.sr-role--executive   { background: #E3F0ED; color: var(--sr-deep); }
.sr-role--independent { background: #fff; color: var(--sr-primary); box-shadow: inset 0 0 0 1px #B9CFCA; }
.sr-role--director    { background: var(--sr-ground); color: var(--sr-body); }

.sr-director-name {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--sr-ink);
}
.sr-director-name a { color: inherit; text-decoration: none; }
/* Whole card is the link target. */
.sr-director-name a::after { content: ""; position: absolute; inset: 0; border-radius: 10px; }
.sr-director-name a:focus-visible { outline: none; }
.sr-director:focus-within { outline: 2px solid var(--sr-red); outline-offset: 2px; }

.sr-director-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding: 14px 0 16px;
	border-top: 1px solid var(--sr-line);
}

.sr-din {
	font-size: 12.5px;
	color: var(--sr-body);
	font-variant-numeric: tabular-nums;
	letter-spacing: .3px;
}
.sr-din span {
	margin-right: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .8px;
	color: var(--sr-muted);
}

.sr-director-cta {
	margin-left: auto;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--sr-primary);
	white-space: nowrap;
	transition: color .2s;
}
.sr-director:hover .sr-director-cta,
.sr-director:focus-within .sr-director-cta { color: var(--sr-red); }
.sr-arrow { display: inline-block; transition: transform .2s; }
.sr-director:hover .sr-arrow { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
	.sr-director, .sr-arrow { transition: none; }
	.sr-director:hover { transform: none; }
	.sr-director:hover .sr-arrow { transform: none; }
}

@media (max-width: 767px) {
	.sr-directors { grid-template-columns: 1fr; gap: 14px; }
	.sr-director { min-height: 0; padding: 20px 20px 0; }
	.sr-director--static { padding-bottom: 20px; }
	.sr-director-name { font-size: 17px; }
	.sr-director-top { margin-bottom: 18px; }
}

/* --- Committees ------------------------------------------------------- */

.sr-comms { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.sr-comm { border: 1px solid var(--sr-line); border-radius: 8px; overflow: hidden; background: #fff; }
.sr-comm h4 {
	margin: 0; padding: 18px 22px; background: var(--sr-deep); color: #fff;
	font-size: 15.5px; font-weight: 600; letter-spacing: .3px;
}
.sr-comm ul { margin: 0; padding: 8px 0; list-style: none; }
.sr-comm li {
	display: flex; justify-content: space-between; align-items: center; gap: 14px;
	padding: 13px 22px; border-bottom: 1px solid var(--sr-line);
	font-size: 14.5px; color: var(--sr-ink);
}
.sr-comm li:last-child { border-bottom: none; }
.sr-comm .role {
	flex: 0 0 auto; font-size: 11.5px; font-weight: 700; letter-spacing: .6px;
	text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
}
.sr-comm .chair { background: var(--sr-primary); color: #fff; }
.sr-comm .memb { background: var(--sr-ground); color: var(--sr-muted); }

/* --- News ------------------------------------------------------------- */

.sr-news { display: flex; flex-direction: column; gap: 16px; }
.sr-item {
	padding: 26px 28px; background: #fff; border: 1px solid var(--sr-line);
	border-left: 3px solid var(--sr-primary); border-radius: 6px;
}
.sr-item h4 { margin: 0 0 10px; font-size: 18px; font-weight: 700; color: var(--sr-ink); }
.sr-item p { margin: 0; font-size: 15px; line-height: 1.8; color: var(--sr-body); }

/* --- Offices ---------------------------------------------------------- */

.sr-off { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.sr-o { padding: 28px; border: 1px solid var(--sr-line); border-radius: 8px; background: #fff; }
.sr-o h4 { margin: 0 0 14px; font-size: 17px; font-weight: 700; color: var(--sr-ink); }
.sr-o dt {
	font-size: 11.5px; font-weight: 700; letter-spacing: .7px;
	text-transform: uppercase; color: var(--sr-muted); margin-top: 14px;
}
.sr-o dd { margin: 4px 0 0; font-size: 14.5px; line-height: 1.7; color: var(--sr-body); }
.sr-o a { color: var(--sr-primary); text-decoration: none; }
.sr-o a:hover { text-decoration: underline; }

/* --- Company facts panel ---------------------------------------------- */

.sr-facts { padding: 26px; border: 1px solid var(--sr-line); border-radius: 8px; background: var(--sr-ground); }
.sr-facts-h {
	font-size: 12px; font-weight: 700; letter-spacing: 1px;
	text-transform: uppercase; color: var(--sr-primary); margin-bottom: 14px;
}
.sr-facts dl { margin: 0; font-size: 14.5px; line-height: 1.7; }
.sr-facts dt { color: var(--sr-muted); font-size: 12.5px; }
.sr-facts dd { margin: 4px 0 12px; color: var(--sr-ink); font-weight: 600; }
.sr-facts dd:last-child { margin-bottom: 0; }

/* --- Misc ------------------------------------------------------------- */

.sr-badge {
	display: inline-block; padding: 5px 12px; border-radius: 100px;
	background: var(--sr-ground); color: var(--sr-primary);
	font-size: 12px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase;
}
.sr-hero-badge {
	display: inline-block; padding: 7px 14px; border-radius: 100px;
	border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.9);
	font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
}
.sr-crumb { text-align: center; font-size: 14px; color: rgba(255,255,255,.72); letter-spacing: .3px; }
.sr-crumb a { color: rgba(255,255,255,.72); text-decoration: none; }
.sr-crumb a:hover { color: #fff; }
.sr-back { margin-top: 26px; font-size: 14px; font-weight: 600; color: var(--sr-primary); text-decoration: none; }
.sr-back:hover { text-decoration: underline; }

/* --- Header ----------------------------------------------------------- */

/*
 * The rt-menu-icons widget renders two off-canvas triggers: .desktop-hamburg
 * (shown at >=1024px) and .mobile-hamburg (below it). The widget has to stay —
 * it is the only thing that opens the drawer, and the main nav is hidden below
 * 1024px — but on desktop the full menu is already visible, so the hamburger
 * beside it is redundant. Hide that one only.
 */
.finwave-header-builder .ham-burger.desktop-hamburg {
	display: none;
}

/*
 * Topbar height. The social icons (removed — they pointed at generic
 * facebook.com / x.com homepages) were 50px-tall boxes and were what gave the
 * topbar its height. Without them it collapsed to 28px, which crowds the
 * contact line and shifts every --sr-header-h offset below. Hold the original
 * 50px and centre the contact details in it.
 */
.finwave-header-builder .elementor-element-af62755 {
	--min-height: 50px;
	min-height: 50px;
	align-items: center;
}

/* --- Document lists --------------------------------------------------- */

/*
 * Card grids stop scanning well past about eight items, and some disclosure
 * pages carry twenty. Long lists use rows instead: title left, action right.
 */
.sr-dl { border: 1px solid var(--sr-line); border-radius: 6px; background: #fff; overflow: hidden; }
.sr-dl a {
	display: flex; align-items: center; justify-content: space-between; gap: 18px;
	padding: 15px 20px; border-bottom: 1px solid var(--sr-line);
	text-decoration: none; transition: background .15s;
}
.sr-dl a:last-child { border-bottom: none; }
.sr-dl a:hover { background: var(--sr-ground); }
.sr-dl .t { font-size: 14.5px; color: var(--sr-ink); line-height: 1.5; }
.sr-dl .g {
	flex: 0 0 24px;
	height: 24px;
	background-color: transparent;
	background-size: 19px 19px;
	border-radius: 0;
}

/* Year-grouped blocks (AGM papers, quarterly results). */
.sr-group { margin-bottom: 26px; }
.sr-group:last-child { margin-bottom: 0; }
.sr-group h4 {
	margin: 0 0 12px; font-size: 16px; font-weight: 700; color: var(--sr-ink);
	padding-bottom: 8px; border-bottom: 2px solid var(--sr-primary); display: inline-block;
}

/* --- Section index tiles ---------------------------------------------- */

.sr-index { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.sr-index a {
	display: block; padding: 22px 24px; border: 1px solid var(--sr-line);
	border-radius: 8px; background: #fff; text-decoration: none; transition: .2s;
}
.sr-index a:hover { border-color: var(--sr-primary); box-shadow: 0 6px 18px rgba(0,109,91,.07); }
.sr-index b { display: block; font-size: 16px; font-weight: 700; color: var(--sr-ink); margin-bottom: 6px; }
.sr-index span { display: block; font-size: 13.5px; color: var(--sr-muted); line-height: 1.6; }
.sr-index em { display: block; margin-top: 10px; font-size: 12px; font-style: normal; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--sr-primary); }

/*
 * Keep the primary nav on a single line.
 *
 * Top-level items are inline-block, so they wrap onto a second row once they
 * exceed the nav column. Six items at the theme's 32px/16px padding fit the
 * ~955px column at the 1364px container, but between 1025px and the full
 * container width there is less room — so tighten the item padding there rather
 * than let it wrap.
 */
.finwave-navigation ul.finwave-navbar {
	white-space: nowrap;
}
.finwave-navigation ul.finwave-navbar > li > ul {
	white-space: normal;
}

@media (min-width: 1025px) and (max-width: 1366px) {
	.finwave-navigation ul li a {
		padding-left: 12px;
		padding-right: 12px;
		font-size: 15px;
	}
}

/* --- Page banner / breadcrumb ----------------------------------------- */

/*
 * The sticky header is `position: fixed`, so it overlays the top of the page.
 * The theme clears it with `padding-top: 250px` on the banner — that padding is
 * structural, not decorative: remove it and the title and breadcrumb disappear
 * behind the header.
 *
 * So the clearance is expressed as "header height + band" rather than a flat
 * value. --sr-band is the visible strip above and below the text; the header
 * height is measured from the rendered header (topbar + nav row) per breakpoint.
 */
:root {
	--sr-header-h: 136px;   /* topbar 50 + nav row 86, measured */
	--sr-band: 34px;
}
@media (max-width: 1024px) { :root { --sr-header-h: 98px; } }
@media (max-width: 767px)  { :root { --sr-header-h: 90px; --sr-band: 26px; } }

.has-sticky-header .finwave-breadcrumb-wrapper,
.has-sticky-header .finwave-breadcrumb-wrapper.has-bg,
.has-sticky-header .finwave-breadcrumb-wrapper.has-color,
.has-sticky-header.has-top-bar .finwave-breadcrumb-wrapper,
.has-sticky-header.has-top-bar .finwave-breadcrumb-wrapper.has-bg,
.has-sticky-header.has-top-bar .finwave-breadcrumb-wrapper.has-color {
	padding-top: calc(var(--sr-header-h) + var(--sr-band));
	padding-bottom: var(--sr-band);
}

/* Without the sticky header nothing overlaps, so the band stands alone. */
body:not(.has-sticky-header) .finwave-breadcrumb-wrapper {
	padding-top: var(--sr-band);
	padding-bottom: var(--sr-band);
}

/* Compact type for a strip rather than a hero. */
.finwave-breadcrumb-wrapper .entry-title {
	font-size: 30px;
	line-height: 1.25;
	margin-bottom: 6px;
}
@media (max-width: 767px) {
	.finwave-breadcrumb-wrapper .entry-title { font-size: 24px; }
}
.finwave-breadcrumb-wrapper .breadcrumb-area,
.finwave-breadcrumb-wrapper .entry-breadcrumb {
	font-size: 13.5px;
	line-height: 1.6;
}

/* --- Investor Relations mega menu -------------------------------------- */

/*
 * Fifteen disclosure pages don't fit one dropdown column — the flat list ran
 * past the bottom of the viewport with no sense of what belonged together.
 * Finwave's mega-menu markup gives column headings (the direct children) with
 * their links nested beneath; this lays those out as a four-column grid.
 *
 * Several theme defaults have to be undone inside the panel: dropdown links
 * carry a dashed bottom border and shift 15px right on hover, both of which
 * read as clutter when there are four columns of them.
 */

/*
 * The panel sizes itself to its columns rather than to a fixed width. `1fr`
 * cannot shrink below its content's min-content width, and these links are
 * nowrap — so equal fractions grew unequally and the widest column (Governance)
 * spilled past the panel's right edge. max-content columns plus a max-content
 * panel keep the two in agreement at any content length.
 */
.finwave-navigation ul li.mega-menu.sr-mega-ir > ul.dropdown-menu {
	width: max-content !important;
	max-width: calc(100vw - 48px);
	display: grid;
	grid-template-columns: repeat(4, max-content);
	align-content: start;
	justify-content: start;
	gap: 0 34px;
	padding: 28px 32px 30px;
	left: 50%;
	right: auto;
	transform: translateX(-50%) translateY(2rem);
}
.finwave-navigation ul li.mega-menu.sr-mega-ir:hover > ul.dropdown-menu {
	transform: translateX(-50%) translateY(0);
}

.finwave-navigation ul li.mega-menu.sr-mega-ir > ul.dropdown-menu > li {
	display: block;
	width: auto;
}

/*
 * Each group's list is a normal dropdown elsewhere in the theme — 240px wide,
 * absolutely positioned at `left: 100%` so it flies out sideways. Inside the
 * grid it has to sit in its own cell instead, or the widest column (Governance)
 * spills out past the panel edge.
 */
.finwave-navigation ul li.mega-menu.sr-mega-ir > ul.dropdown-menu > li > ul {
	position: static;
	left: auto;
	width: 100%;
	min-width: 0;
	padding: 0;
	box-shadow: none;
	border: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	pointer-events: auto;
}

/* Column heading — a label above its group. */
.finwave-navigation ul li.mega-menu.sr-mega-ir > ul.dropdown-menu > li > a {
	display: block;
	padding: 0 0 9px;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: var(--sr-primary);
	border-bottom: 1px solid var(--sr-line);
	white-space: nowrap;
}

/* Links inside a group: no dashed rules, no hover indent. */
.finwave-navigation ul li.mega-menu.sr-mega-ir > ul.dropdown-menu > li ul > li > a {
	display: block;
	padding: 7px 0;
	border-bottom: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	white-space: nowrap;
	color: var(--sr-body);
}
.finwave-navigation ul li.mega-menu.sr-mega-ir > ul.dropdown-menu > li ul > li:hover > a {
	padding-left: 0;
	color: var(--sr-primary);
}
.finwave-navigation ul li.mega-menu.sr-mega-ir > ul.dropdown-menu > li ul > li > a:before {
	display: none;
}

/* Two columns once there isn't room for four. */
@media (max-width: 1290px) {
	.finwave-navigation ul li.mega-menu.sr-mega-ir > ul.dropdown-menu {
		grid-template-columns: repeat(2, max-content);
		gap: 22px 34px;
	}
}

/*
 * The mobile drawer reuses the same menu, where the grid does not apply — the
 * group headings just read as section labels above their links.
 */
.finwave-offcanvas-drawer .menu > li > ul > li > a {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12.5px;
	letter-spacing: .6px;
}

/* --- Section sidebar --------------------------------------------------- */

/*
 * Used on the Company Overview pages, whose four siblings have no obvious
 * reading order — the sidebar shows where you are and what else is in the
 * section. The current item is marked server-side at build time.
 */
.sr-side {
	border: 1px solid var(--sr-line);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}
.sr-side-h {
	padding: 15px 18px;
	background: var(--sr-deep);
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .7px;
	text-transform: uppercase;
}
.sr-side ul { margin: 0; padding: 0; list-style: none; }
.sr-side > ul > li { border-bottom: 1px solid var(--sr-line); }
.sr-side > ul > li:last-child { border-bottom: none; }

.sr-side a {
	display: block;
	padding: 12px 18px;
	font-size: 14.5px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--sr-ink);
	text-decoration: none;
	border-left: 3px solid transparent;
	transition: background .15s, border-color .15s, color .15s;
}
.sr-side a:hover { background: var(--sr-ground); color: var(--sr-primary); }
.sr-side a.is-current {
	background: var(--sr-ground);
	border-left-color: var(--sr-primary);
	color: var(--sr-primary);
	font-weight: 700;
}

/* Director profiles nested under Board of Directors. */
.sr-side-sub {
	border-top: 1px solid var(--sr-line);
	background: #FAFCFB;
}
.sr-side-sub li + li { border-top: 1px solid var(--sr-line); }
.sr-side-sub a {
	padding: 10px 18px 10px 30px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--sr-body);
	border-left: 3px solid transparent;
}
.sr-side-sub a.is-current {
	font-weight: 700;
	background: var(--sr-ground);
}

/* Stacks above the content on narrow screens, so keep it compact there. */
@media (max-width: 767px) {
	.sr-side-h { padding: 13px 16px; }
	.sr-side a { padding: 11px 16px; }
}

/* --- Grouped section sidebar ------------------------------------------- */

/*
 * The Investor Relations sidebar carries 19 pages, so it is grouped under the
 * same four headings as the header mega menu — one information architecture,
 * not two that can drift apart.
 */
/*
 * The grouped sidebar's header is an <a> so it can link to the section index —
 * which means the theme's link colour applies and wins over .sr-side-h's white.
 * State the colour on the anchor itself.
 */
.sr-side-grouped a.sr-side-h,
.sr-side-grouped a.sr-side-h:visited {
	display: block;
	color: #fff;
	text-decoration: none;
	transition: background .15s;
}
.sr-side-grouped a.sr-side-h:hover,
.sr-side-grouped a.sr-side-h:focus { background: #00463A; color: #fff; }

.sr-side-g {
	padding: 12px 18px 6px;
	background: var(--sr-ground);
	border-top: 1px solid var(--sr-line);
	border-bottom: 1px solid var(--sr-line);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	color: var(--sr-muted);
}
.sr-side-grouped > ul > li { border-bottom: 1px solid var(--sr-line); }
.sr-side-grouped > ul > li:last-child { border-bottom: none; }
.sr-side-grouped a { font-size: 14px; padding: 10px 18px; }
.sr-side-grouped .sr-side-sub a { font-size: 13px; padding: 9px 18px 9px 30px; }

/* A rule between stacked blocks in one content column. */
.sr-rule {
	height: 1px;
	background: var(--sr-line);
	margin: 34px 0 30px;
}

/* --- Year-led document cards ------------------------------------------- */

/*
 * Annual reports are scanned by year, and every card is the same document type —
 * so the year leads and the type sits beneath it with the icon.
 */
.sr-docs-yr { grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); }

.sr-doc.sr-doc-yr {
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding: 20px 22px;
}
.sr-doc-y {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.2px;
	color: var(--sr-ink);
}
.sr-doc-r {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--sr-primary);
}
.sr-doc-r .sr-doc-i {
	flex: 0 0 22px;
	height: 22px;
	background-color: transparent;
	border-radius: 0;
	background-size: 18px 18px;
}

/* --- Bio lists ---------------------------------------------------------- */

/* Bulleted points inside a director profile. */
.sr-bio-list {
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}
.sr-bio-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.8;
	color: var(--sr-body);
}
.sr-bio-list li:last-child { margin-bottom: 0; }
.sr-bio-list li:before {
	content: "";
	position: absolute;
	left: 3px;
	top: 12px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sr-primary);
}
