/**
 * Rotary District 2475 — design system.
 *
 * Ported from the approved Claude Design comp. Brand tokens follow
 * brandcenter.rotary.org: Royal Blue for headings and depth, Azure as the main
 * interactive blue, Sky as accent/hover, and Gold strictly as an accent — never
 * as text or as a filled button, which would fail WCAG AA at ~1.9:1.
 */

/* ============================================================ 1. TOKENS === */

:root {
	/* Brand */
	--rd-royal: #17458F;
	--rd-azure: #0067C8;
	--rd-azure-dark: #0056A8;
	--rd-sky: #00A2E0;
	--rd-gold: #F7A81B;
	--rd-deep: #0F2E63;

	/* Neutrals */
	--rd-ink: #3A3F4A;
	--rd-muted: #5A6270;
	/* The comp's faint grey was #9AA6B6, which only reaches 2.5:1 on white and
	   fails AA everywhere it is used as a label. Darkened to the nearest tone
	   that clears 4.5:1 on white, off-white and pale-azure alike. */
	--rd-faint: #5F6E82;
	--rd-line: #E7EBF0;
	--rd-line-2: #E1EAF4;
	--rd-line-3: #D6E2F0;
	--rd-pale: #EAF3FB;
	--rd-offwhite: #F5F8FC;
	--rd-mist: #DCE6F2;
	--rd-canvas: #EEF1F5;
	--rd-white: #FFFFFF;
	--rd-success: #0A7A3C;
	--rd-error: #B3261E;

	/* Spacing scale — 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 96 */
	--rd-1: 4px;
	--rd-2: 8px;
	--rd-3: 12px;
	--rd-4: 16px;
	--rd-5: 24px;
	--rd-6: 32px;
	--rd-7: 48px;
	--rd-8: 64px;
	--rd-9: 96px;

	/* Radii */
	--rd-r-sm: 8px;
	--rd-r-md: 12px;
	--rd-r-lg: 16px;
	--rd-r-xl: 22px;
	--rd-r-2xl: 28px;
	--rd-r-frame: 20px;

	/* Shadows */
	--rd-shadow-frame: 0 30px 80px -30px rgba(23, 69, 143, .35);
	--rd-shadow-card: 0 1px 2px rgba(23, 69, 143, .04);
	--rd-shadow-lift: 0 22px 40px -20px rgba(0, 103, 200, .5);
	--rd-shadow-panel: 0 30px 70px -40px rgba(23, 69, 143, .4);

	/* Horizontal breathing room inside the frame; overridden per breakpoint. */
	--cx: 4em;
}

/* ============================================================== 2. BASE === */

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

html {
	scroll-behavior: smooth;
	/* Keeps in-page anchors clear of the sticky header. */
	scroll-padding-top: 120px;
}

body {
	margin: 0;
	font-family: 'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
	font-size: 17px;
	line-height: 1.6;
	color: var(--rd-ink);
	background: var(--rd-canvas);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--rd-azure);
	text-decoration: none;
}

a:hover {
	color: var(--rd-sky);
}

h1, h2, h3, h4 {
	margin: 0 0 var(--rd-4);
	color: var(--rd-royal);
	letter-spacing: -.01em;
	text-wrap: balance;
}

p {
	margin: 0 0 var(--rd-4);
}

p:last-child {
	margin-bottom: 0;
}

/* Every interactive element gets the same visible focus ring. */
:focus-visible {
	outline: 3px solid var(--rd-sky);
	outline-offset: 2px;
	border-radius: 4px;
}

.rd-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	padding: var(--rd-3) var(--rd-5);
	background: var(--rd-white);
	color: var(--rd-royal);
	font-weight: 700;
	border-radius: 0 0 var(--rd-r-md) 0;
}

.rd-skip:focus {
	left: 0;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ============================================================ 3. LAYOUT === */

.rd-page {
	width: 100%;
	background: var(--rd-canvas);
	padding-bottom: 2em;
}

/* The rounded white "sheet" the whole site sits on. */
.rd-frame {
	position: relative;
	margin: 2em;
	background: var(--rd-white);
	border-radius: var(--rd-r-frame);
	overflow: hidden;
	box-shadow: var(--rd-shadow-frame);
}

.rd-shell {
	max-width: 1600px;
	margin: 0 auto;
	padding-left: var(--cx);
	padding-right: var(--cx);
}

.rd-shell--narrow {
	max-width: 1500px;
}

.rd-shell--tight {
	max-width: 1200px;
}

.rd-shell--prose {
	max-width: 900px;
}

.rd-section {
	padding-top: var(--rd-9);
	padding-bottom: var(--rd-9);
}

.rd-section--tight {
	padding-top: var(--rd-8);
	padding-bottom: var(--rd-8);
}

.rd-section--flush-top {
	padding-top: 0;
}

.rd-section--flush-bottom {
	padding-bottom: 0;
}

.rd-section--pale {
	background: var(--rd-pale);
	border-top: 1px solid var(--rd-line-3);
}

.rd-section--offwhite {
	background: var(--rd-offwhite);
	border-top: 1px solid var(--rd-line);
}

/* Act 2 — «ΕΜΠΝΕΟΜΑΙ». A gentle pale-azure wash so the page reads as three
   breaths rather than eleven identical boxes. */
.rd-act2 {
	background: linear-gradient(180deg, var(--rd-offwhite) 0%, var(--rd-pale) 18%, var(--rd-pale) 82%, var(--rd-offwhite) 100%);
}

.rd-actlabel {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: var(--rd-8);
}

.rd-actlabel span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .24em;
	color: var(--rd-royal);
}

.rd-actlabel::before {
	content: "";
	width: 36px;
	height: 2px;
	background: var(--rd-gold);
	flex-shrink: 0;
}

.rd-centered {
	margin-top: 44px;
	text-align: center;
}

.rd-rule {
	display: inline-block;
	width: 44px;
	height: 3px;
	background: var(--rd-gold);
	margin-bottom: var(--rd-5);
}

/* ========================================================= 4. TYPOGRAPHY === */

.rd-kicker {
	display: block;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .16em;
	color: var(--rd-azure);
	text-transform: uppercase;
}

.rd-sectionhead {
	margin-bottom: var(--rd-7);
}

.rd-sectionhead--center {
	text-align: center;
	max-width: 660px;
	margin-left: auto;
	margin-right: auto;
}

.rd-sectionhead__title {
	margin: 14px 0 0;
	font-size: clamp(28px, 3.4vw, 40px);
	line-height: 1.12;
	font-weight: 800;
}

.rd-sectionhead__lead {
	margin: var(--rd-3) 0 0;
	font-size: 18px;
	line-height: 1.6;
	color: var(--rd-muted);
	max-width: 60ch;
}

.rd-sectionhead--center .rd-sectionhead__lead {
	margin-left: auto;
	margin-right: auto;
}

.rd-sectionhead__row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--rd-5);
	flex-wrap: wrap;
	margin-bottom: var(--rd-7);
}

.rd-sectionhead__row .rd-sectionhead {
	margin-bottom: 0;
	max-width: 620px;
}

.rd-tag {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--rd-azure);
	text-transform: uppercase;
}

.rd-intro {
	max-width: 900px;
}

.rd-intro__title {
	margin: var(--rd-4) 0 0;
	font-size: clamp(32px, 5.2vw, 52px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -.02em;
}

.rd-intro__para {
	margin: var(--rd-5) 0 0;
	font-size: 19px;
	line-height: 1.7;
	color: var(--rd-ink);
}

/* Long-form body copy (legal pages, articles). */
.rd-prose {
	font-size: 17px;
	line-height: 1.75;
	color: var(--rd-ink);
}

.rd-prose h2 {
	margin: var(--rd-7) 0 var(--rd-3);
	font-size: 26px;
	font-weight: 800;
}

.rd-prose h3 {
	margin: var(--rd-6) 0 var(--rd-2);
	font-size: 20px;
	font-weight: 700;
}

.rd-prose ul,
.rd-prose ol {
	margin: 0 0 var(--rd-4);
	padding-left: 1.25em;
}

.rd-prose li {
	margin-bottom: var(--rd-2);
}

.rd-prose blockquote {
	margin: var(--rd-6) 0;
	padding: var(--rd-4) var(--rd-5);
	border-left: 3px solid var(--rd-gold);
	background: var(--rd-offwhite);
	font-size: 19px;
	line-height: 1.6;
	color: var(--rd-royal);
	font-weight: 600;
}

.rd-prose img {
	border-radius: var(--rd-r-lg);
	margin: var(--rd-5) 0;
}

/* =========================================================== 5. BUTTONS === */

.rd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 28px;
	min-height: 44px;
	border: 0;
	border-radius: var(--rd-r-md);
	font-family: inherit;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	text-align: center;
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}

.rd-btn--primary {
	background: var(--rd-azure);
	color: var(--rd-white);
	box-shadow: 0 12px 28px -10px rgba(0, 103, 200, .8);
}

.rd-btn--primary:hover {
	background: var(--rd-azure-dark);
	color: var(--rd-white);
	transform: translateY(-2px);
}

.rd-btn:active {
	transform: translateY(0) scale(.99);
}

.rd-btn--ghost:active {
	background: rgba(255, 255, 255, .24);
}

.rd-btn--outline:active {
	background: #DCE9F7;
}

/* Ghost / outline over dark imagery. */
.rd-btn--ghost {
	background: rgba(255, 255, 255, .06);
	border: 1.5px solid rgba(255, 255, 255, .8);
	color: var(--rd-white);
}

.rd-btn--ghost:hover {
	background: rgba(255, 255, 255, .16);
	border-color: var(--rd-white);
	color: var(--rd-white);
}

/* Outline on light backgrounds. */
.rd-btn--outline {
	background: var(--rd-white);
	border: 1.5px solid var(--rd-azure);
	color: var(--rd-azure);
}

.rd-btn--outline:hover {
	background: var(--rd-pale);
	color: var(--rd-azure-dark);
}

/* White button sitting on the blue climax band. */
.rd-btn--onblue {
	background: var(--rd-white);
	color: var(--rd-azure);
	padding: 17px 40px;
	font-size: 18px;
	font-weight: 800;
	border-radius: 14px;
	box-shadow: 0 20px 44px -18px rgba(0, 0, 0, .5);
}

.rd-btn--onblue:hover {
	color: var(--rd-azure-dark);
	transform: translateY(-2px);
}

.rd-btn--small {
	padding: 11px 18px;
	font-size: 15px;
}

.rd-btn[disabled],
.rd-btn[aria-disabled="true"] {
	opacity: .5;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.rd-arrowlink {
	display: inline-flex;
	align-items: center;
	gap: var(--rd-2);
	min-height: 44px;
	font-size: 16px;
	font-weight: 700;
	color: var(--rd-azure);
}

.rd-arrowlink .rd-icon {
	transition: transform .2s ease;
}

.rd-arrowlink:hover .rd-icon {
	transform: translateX(3px);
}

/* ============================================================ 6. HEADER === */

.rd-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--rd-white);
	border-bottom: 1px solid var(--rd-line);
	box-shadow: 0 6px 24px -14px rgba(23, 69, 143, .12);
	transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.rd-header__inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: var(--rd-4) var(--cx);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--rd-5);
}

.rd-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.rd-logo img {
	height: 88px;
	width: auto;
}

.rd-logo__white {
	display: none;
}

.rd-nav {
	display: flex;
	align-items: center;
	gap: var(--rd-2);
}

.rd-navlink {
	padding: 10px 14px;
	white-space: nowrap;
	border-radius: var(--rd-r-sm);
	font-size: 15px;
	font-weight: 600;
	color: var(--rd-ink);
	transition: color .2s ease, background .2s ease;
}

.rd-navlink:hover,
.rd-navlink:focus-visible {
	color: var(--rd-azure);
	background: var(--rd-pale);
}

.rd-navlink.is-current {
	color: var(--rd-royal);
}

.rd-navlink.is-current::after {
	content: "";
	display: block;
	height: 2px;
	margin-top: 4px;
	border-radius: 2px;
	background: var(--rd-gold);
}

/* The members-only documents entry, marked with a padlock. */
.rd-navdocs {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	gap: 7px;
	margin-left: var(--rd-1);
	padding: 10px 14px;
	min-height: 44px;
	border: 1px solid var(--rd-line);
	border-radius: var(--rd-r-sm);
	font-size: 15px;
	font-weight: 600;
	color: var(--rd-ink);
	transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.rd-navdocs:hover {
	color: var(--rd-azure);
	border-color: var(--rd-azure);
}

.rd-navjoin {
	white-space: nowrap;
	margin-left: var(--rd-1);
	padding: 11px 20px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	border-radius: 10px;
	background: var(--rd-azure);
	color: var(--rd-white);
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 6px 16px -6px rgba(0, 103, 200, .6);
	transition: background .2s ease, transform .15s ease;
}

.rd-navjoin:hover {
	background: var(--rd-azure-dark);
	color: var(--rd-white);
	transform: translateY(-1px);
}

/* -- Transparent-over-hero variant, homepage only. */
.rd-has-transparent-header .rd-header {
	background: transparent;
	border-bottom-color: transparent;
	box-shadow: none;
}

/* A soft scrim under the transparent header keeps the white nav readable even
   if the hero photo happens to be bright at the top. */
.rd-has-transparent-header .rd-header::before {
	content: "";
	position: absolute;
	inset: 0;
	/* Behind the header's own background but still inside its stacking context,
	   so it sits over the hero without covering the nav. */
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(15, 46, 99, .55), rgba(15, 46, 99, 0));
	transition: opacity .3s ease;
}

.rd-has-transparent-header .rd-header.is-scrolled::before {
	opacity: 0;
}

.rd-has-transparent-header .rd-header .rd-navlink,
.rd-has-transparent-header .rd-header .rd-navdocs {
	color: var(--rd-white);
	border-color: rgba(255, 255, 255, .35);
}

.rd-has-transparent-header .rd-header .rd-navlink:hover,
.rd-has-transparent-header .rd-header .rd-navdocs:hover {
	color: var(--rd-white);
	background: rgba(255, 255, 255, .14);
}

.rd-has-transparent-header .rd-header .rd-logo__white {
	display: block;
}

.rd-has-transparent-header .rd-header .rd-logo__royal {
	display: none;
}

.rd-has-transparent-header .rd-header.is-scrolled {
	background: var(--rd-white);
	border-bottom-color: var(--rd-line);
	box-shadow: 0 6px 24px -14px rgba(23, 69, 143, .4);
}

.rd-has-transparent-header .rd-header.is-scrolled .rd-navlink,
.rd-has-transparent-header .rd-header.is-scrolled .rd-navdocs {
	color: var(--rd-royal);
	border-color: var(--rd-line);
}

.rd-has-transparent-header .rd-header.is-scrolled .rd-logo__white {
	display: none;
}

.rd-has-transparent-header .rd-header.is-scrolled .rd-logo__royal {
	display: block;
}

/* -- Mobile menu.
   The comp simply hid the nav links below 820px. That leaves a visitor with no
   way to reach the other pages, so the links move into a disclosure panel
   instead — same visual language, navigation intact. */
.rd-navtoggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--rd-line);
	border-radius: 10px;
	background: var(--rd-white);
	color: var(--rd-royal);
	cursor: pointer;
}

.rd-navtoggle__bars,
.rd-navtoggle__bars::before,
.rd-navtoggle__bars::after {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

.rd-navtoggle__bars::before,
.rd-navtoggle__bars::after {
	content: "";
	position: relative;
}

.rd-navtoggle__bars::before {
	top: -6px;
}

.rd-navtoggle__bars::after {
	top: 4px;
}

.rd-navtoggle[aria-expanded="true"] .rd-navtoggle__bars {
	background: transparent;
}

.rd-navtoggle[aria-expanded="true"] .rd-navtoggle__bars::before {
	transform: translateY(6px) rotate(45deg);
}

.rd-navtoggle[aria-expanded="true"] .rd-navtoggle__bars::after {
	transform: translateY(-6px) rotate(-45deg);
}

.rd-has-transparent-header .rd-header:not(.is-scrolled) .rd-navtoggle {
	background: rgba(255, 255, 255, .12);
	border-color: rgba(255, 255, 255, .45);
	color: var(--rd-white);
}

/* ============================================================== 7. HERO === */

.rd-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 660px;
	overflow: hidden;
	background: var(--rd-deep);
	/* Pulled under the sticky header so the dark field covers the frame's top
	   corners evenly — no white notch. */
	margin-top: -124px;
	padding-top: 124px;
}

.rd-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.rd-hero__bg img,
.rd-hero__bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rd-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	/* 30–40% overlay, deepening top and bottom for text legibility. */
	background: linear-gradient(180deg, rgba(15, 46, 99, .55) 0%, rgba(15, 46, 99, .32) 45%, rgba(15, 46, 99, .62) 100%);
}

.rd-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: var(--rd-9);
	padding-bottom: var(--rd-9);
}

.rd-hero__content {
	max-width: 760px;
}

.rd-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: var(--rd-2);
	padding: 7px 14px;
	border-radius: 100px;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(247, 168, 27, .6);
	color: var(--rd-white);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	backdrop-filter: blur(4px);
}

.rd-hero__title {
	margin: var(--rd-5) 0 0;
	color: var(--rd-white);
	font-size: clamp(30px, 6.4vw, 60px);
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: -.02em;
	text-shadow: 0 2px 24px rgba(15, 46, 99, .4);
}

.rd-hero__tagline {
	margin: 18px 0 0;
	/* Gold is legible here as a large 700-weight display line over a deep-blue
	   scrim, and it is never used at body size or as a control. */
	color: var(--rd-gold);
	font-size: 19px;
	font-weight: 700;
	text-shadow: 0 1px 12px rgba(15, 46, 99, .5);
}

.rd-hero__text {
	margin: 18px 0 0;
	max-width: 600px;
	color: rgba(255, 255, 255, .94);
	font-size: 20px;
	line-height: 1.6;
	text-shadow: 0 1px 12px rgba(15, 46, 99, .5);
}

.rd-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--rd-4);
	margin-top: 40px;
}

.rd-hero__scroll {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, .8);
	font-size: 11px;
	letter-spacing: .18em;
	font-weight: 600;
}

/* ============================================================= 8. MEDIA === */

.rd-media {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: var(--rd-mist);
}

.rd-media__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Stand-in for an unfilled photo slot — the comp's drop zones. */
.rd-media--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--rd-4);
	background: repeating-linear-gradient(135deg, var(--rd-mist), var(--rd-mist) 12px, #D3DFEE 12px, #D3DFEE 24px);
}

/*
 * Where a placeholder sits *behind* page content — the hero, the feature-video
 * poster — the label moves into a corner. Centred, it lands straight on top of
 * the headline for as long as the real photograph is missing.
 */
.rd-hero .rd-media--empty,
.rd-videobtn .rd-media--empty {
	align-items: flex-end;
	justify-content: flex-end;
	padding: var(--rd-5);
}

/* Clear of the scroll cue that sits at the foot of the hero. */
.rd-hero .rd-media--empty {
	padding-bottom: var(--rd-8);
}

.rd-media__label {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	color: var(--rd-royal);
	background: rgba(255, 255, 255, .82);
	padding: var(--rd-2) var(--rd-3);
	border-radius: var(--rd-r-sm);
}

/* ====================================================== 9. ICON SURFACES === */

.rd-iconbox {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: var(--rd-r-lg);
	background: var(--rd-pale);
	border: 1px solid rgba(0, 103, 200, .15);
	color: var(--rd-azure);
	flex-shrink: 0;
}

.rd-iconbox--sm {
	width: 48px;
	height: 48px;
	border-radius: var(--rd-r-md);
}

.rd-iconbox--onblue {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, .14);
	border: 0;
	color: var(--rd-white);
}

/* ====================================================== 10. THREE COLUMNS == */

.rd-g3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--rd-6);
}

.rd-sixty {
	text-align: center;
	padding: var(--rd-4);
}

.rd-sixty .rd-iconbox {
	margin: 0 auto var(--rd-5);
}

.rd-sixty__kicker {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	color: var(--rd-royal);
}

.rd-sixty__text {
	margin: 0;
	font-size: 17px;
	line-height: 1.6;
	color: var(--rd-ink);
}

/* ========================================================= 11. CAUSE CARDS = */

.rd-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--rd-5);
}

.rd-card {
	display: block;
	border-radius: var(--rd-r-lg);
	overflow: hidden;
	background: var(--rd-white);
	border: 1px solid var(--rd-line);
	box-shadow: var(--rd-shadow-card);
	color: inherit;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.rd-card:hover,
.rd-card:focus-visible {
	transform: translateY(-6px);
	box-shadow: var(--rd-shadow-lift);
	border-color: var(--rd-azure);
	color: inherit;
}

.rd-card__media {
	position: relative;
	height: 200px;
	background: var(--rd-mist);
}

.rd-card__icon {
	position: absolute;
	top: 14px;
	left: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--rd-r-md);
	background: rgba(255, 255, 255, .94);
	color: var(--rd-azure);
	box-shadow: 0 6px 16px -8px rgba(23, 69, 143, .5);
}

.rd-card__body {
	padding: 22px 22px 24px;
}

.rd-card__title {
	margin: 0 0 var(--rd-2);
	font-size: 21px;
	font-weight: 800;
}

.rd-card__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: var(--rd-muted);
}

/* Alternating story rows on the About page. */
.rd-story {
	display: flex;
	flex-direction: column;
	gap: var(--rd-5);
}

.rd-story__row {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: var(--rd-7);
	align-items: center;
	padding: var(--rd-3) 0;
}

.rd-story__row:nth-child(even) .rd-story__media {
	order: 2;
}

.rd-story__media {
	height: 320px;
	border-radius: var(--rd-r-xl);
	overflow: hidden;
	background: var(--rd-mist);
}

.rd-story__title {
	margin: 0 0 14px;
	font-size: 26px;
	font-weight: 800;
}

.rd-story__body p {
	margin: 0 0 var(--rd-3);
	font-size: 16px;
	line-height: 1.7;
}

.rd-story__body p:last-child {
	margin-bottom: 0;
	color: var(--rd-muted);
}

.rd-story .rd-iconbox {
	margin-bottom: 18px;
}

/* ========================================================== 12. NEWS CARDS = */

.rd-news {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--rd-5);
}

.rd-news--3 {
	grid-template-columns: repeat(3, 1fr);
}

.rd-newscard {
	display: flex;
	flex-direction: column;
	border-radius: 14px;
	overflow: hidden;
	background: var(--rd-white);
	border: 1px solid var(--rd-line);
	color: inherit;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.rd-newscard:hover,
.rd-newscard:focus-visible {
	transform: translateY(-6px);
	box-shadow: var(--rd-shadow-lift);
	border-color: var(--rd-azure);
	color: inherit;
}

.rd-newscard__media {
	height: 180px;
	background: var(--rd-mist);
}

.rd-newscard__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px 18px 20px;
}

.rd-newscard__title {
	margin: var(--rd-2) 0;
	font-size: 17px;
	line-height: 1.3;
	font-weight: 700;
}

.rd-newscard__excerpt {
	flex: 1;
	margin: 0 0 var(--rd-4);
	font-size: 14px;
	line-height: 1.55;
	color: var(--rd-muted);
}

.rd-newscard__more {
	font-size: 14px;
	font-weight: 700;
	color: var(--rd-azure);
}

/* ============================================================ 13. VIDEO === */

.rd-videobtn {
	position: relative;
	width: 100%;
	border-radius: var(--rd-r-xl);
	overflow: hidden;
	background: var(--rd-deep);
	box-shadow: 0 40px 80px -40px rgba(23, 69, 143, .6);
}

/* The trigger covers the whole poster; the poster itself is plain markup so a
   <div> never ends up inside a <button>. */
.rd-videobtn__trigger {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.rd-videobtn__trigger:focus-visible {
	outline-offset: -6px;
}

.rd-videobtn__media {
	display: block;
	height: 560px;
}

.rd-videobtn__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(15, 46, 99, .15), rgba(15, 46, 99, .45));
}

.rd-videobtn__play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .96);
	color: var(--rd-azure);
	animation: rd-pulse 2.6s infinite;
}

.rd-videobtn__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 28px 32px;
	text-align: left;
	color: var(--rd-white);
	font-size: 22px;
	font-weight: 800;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
	pointer-events: none;
}

@keyframes rd-pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .55); }
	70% { box-shadow: 0 0 0 22px rgba(255, 255, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* A lightweight lightbox for the feature video. */
.rd-lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--rd-5);
	background: rgba(15, 46, 99, .88);
}

.rd-lightbox[hidden] {
	display: none;
}

.rd-lightbox__inner {
	position: relative;
	width: min(1100px, 100%);
	aspect-ratio: 16 / 9;
	border-radius: var(--rd-r-lg);
	overflow: hidden;
	background: #000;
}

.rd-lightbox__inner iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.rd-lightbox__close {
	position: absolute;
	top: -46px;
	right: 0;
	min-height: 44px;
	padding: 8px 16px;
	border: 0;
	border-radius: var(--rd-r-sm);
	background: var(--rd-white);
	color: var(--rd-royal);
	font-family: inherit;
	font-weight: 700;
	cursor: pointer;
}

/* ============================================================ 14. STATS === */

.rd-statgrid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.rd-stat {
	background: var(--rd-white);
	border: 1px solid var(--rd-line-2);
	border-radius: var(--rd-r-lg);
	padding: 28px 22px;
	text-align: center;
	box-shadow: 0 12px 30px -22px rgba(23, 69, 143, .4);
}

.rd-stat__num {
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.02em;
	color: var(--rd-royal);
	font-variant-numeric: tabular-nums;
}

.rd-stat__label {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--rd-muted);
}

/* The "not yet verified" state — designed, and shown to editors only. */
.rd-statplaceholder {
	border: 1.5px dashed #B9CBE2;
	border-radius: var(--rd-r-lg);
	padding: 44px 32px;
	background: rgba(255, 255, 255, .6);
	text-align: center;
}

.rd-statplaceholder .rd-iconbox {
	width: 56px;
	height: 56px;
	margin: 0 auto 18px;
	border-radius: 14px;
}

.rd-statplaceholder h3 {
	margin: 0 0 var(--rd-2);
	font-size: 20px;
	font-weight: 800;
}

.rd-statplaceholder p {
	max-width: 460px;
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.6;
	color: var(--rd-muted);
}

/* ========================================================= 15. GOVERNOR === */

.rd-gov {
	position: relative;
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: var(--rd-7);
	align-items: center;
	background: var(--rd-white);
	border: 1px solid var(--rd-line-2);
	border-radius: 24px;
	padding: 40px;
	box-shadow: var(--rd-shadow-panel);
}

.rd-gov__year {
	position: absolute;
	top: var(--rd-4);
	right: 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--rd-faint);
}

.rd-gov__photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 18px;
	overflow: hidden;
	background: var(--rd-mist);
}

.rd-gov__quote {
	margin: var(--rd-3) 0 18px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 800;
}

.rd-gov__text {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
}

.rd-gov__foot {
	display: flex;
	align-items: center;
	gap: var(--rd-4);
	flex-wrap: wrap;
	margin-top: 22px;
}

.rd-gov__name {
	font-size: 15px;
	font-weight: 700;
	color: var(--rd-royal);
}

/* ============================================================= 16. JOIN === */

.rd-joinband {
	position: relative;
	border-radius: var(--rd-r-2xl);
	overflow: hidden;
	background: linear-gradient(135deg, var(--rd-royal) 0%, var(--rd-azure) 60%, #0A5AB0 100%);
	padding: var(--rd-8) var(--rd-7);
	color: var(--rd-white);
}

.rd-joinband::after {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 162, 224, .5), transparent 70%);
	pointer-events: none;
}

.rd-joinband__head {
	position: relative;
	text-align: center;
	max-width: 640px;
	margin: 0 auto var(--rd-7);
}

.rd-joinband__title {
	margin: 0;
	color: var(--rd-white);
	font-size: clamp(30px, 5.2vw, 44px);
	line-height: 1.1;
	font-weight: 800;
}

.rd-joinband__lead {
	margin: var(--rd-4) 0 0;
	font-size: 19px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .9);
}

.rd-join {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.rd-joincard {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 18px;
	padding: 28px 22px;
	text-align: center;
	color: var(--rd-white);
	transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

a.rd-joincard:hover,
a.rd-joincard:focus-visible {
	background: rgba(255, 255, 255, .16);
	border-color: rgba(255, 255, 255, .45);
	transform: translateY(-4px);
	color: var(--rd-white);
}

.rd-joincard .rd-iconbox {
	margin: 0 auto 18px;
}

.rd-joincard__title {
	margin: 0 0 var(--rd-2);
	color: var(--rd-white);
	font-size: 19px;
	font-weight: 800;
}

.rd-joincard__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .82);
}

.rd-joinband__foot {
	position: relative;
	text-align: center;
}

/* The same gradient band, used as a page-closing CTA. */
.rd-ctaband {
	position: relative;
	border-radius: var(--rd-r-2xl);
	overflow: hidden;
	background: linear-gradient(135deg, var(--rd-royal) 0%, var(--rd-azure) 60%, #0A5AB0 100%);
	padding: var(--rd-8) var(--rd-7);
	color: var(--rd-white);
	text-align: center;
}

.rd-ctaband__title {
	margin: 0;
	color: var(--rd-white);
	font-size: clamp(28px, 4.6vw, 40px);
	line-height: 1.15;
	font-weight: 800;
}

.rd-ctaband__lead {
	max-width: 560px;
	margin: var(--rd-4) auto var(--rd-6);
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .9);
}

/* ============================================================== 17. MAP === */

.rd-map {
	display: grid;
	grid-template-columns: 1.25fr .75fr;
	gap: var(--rd-5);
	border: 1px solid var(--rd-line-2);
	border-radius: var(--rd-r-xl);
	padding: var(--rd-5);
	background: var(--rd-offwhite);
}

.rd-map__canvas {
	position: relative;
	background: var(--rd-white);
	border: 1px solid var(--rd-line-2);
	border-radius: var(--rd-r-frame);
	overflow: hidden;
	min-height: 520px;
}

.rd-map__svg {
	display: block;
	width: 100%;
	height: 100%;
}

.rd-map__hint {
	position: absolute;
	left: var(--rd-4);
	bottom: 14px;
	padding: 5px 10px;
	border-radius: var(--rd-r-sm);
	background: rgba(255, 255, 255, .82);
	font-size: 12px;
	color: var(--rd-muted);
}

.rd-map__land {
	fill: var(--rd-mist);
	stroke: #B9CBE2;
	stroke-width: .7;
	stroke-linejoin: round;
}

.rd-pin {
	cursor: pointer;
}

.rd-pin__dot {
	fill: var(--rd-azure);
	stroke: var(--rd-white);
	stroke-width: 2;
	transition: fill .15s ease;
}

.rd-pin:hover .rd-pin__dot {
	fill: var(--rd-sky);
}

.rd-pin.is-selected .rd-pin__dot {
	fill: var(--rd-royal);
	stroke: var(--rd-gold);
	stroke-width: 3;
}

.rd-pin:focus {
	outline: none;
}

.rd-pin:focus-visible .rd-pin__dot {
	stroke: var(--rd-sky);
	stroke-width: 4;
}

.rd-pin__label {
	font-size: 11px;
	font-weight: 700;
	fill: var(--rd-royal);
	paint-order: stroke;
	stroke: var(--rd-white);
	stroke-width: 3px;
	stroke-linejoin: round;
	pointer-events: none;
	opacity: 0;
	transition: opacity .12s ease;
}

.rd-pin:hover .rd-pin__label,
.rd-pin:focus-visible .rd-pin__label,
.rd-pin.is-selected .rd-pin__label {
	opacity: 1;
}

.rd-mappanel {
	display: flex;
	flex-direction: column;
	min-height: 0;
	background: var(--rd-white);
	border: 1px solid var(--rd-line-2);
	border-radius: var(--rd-r-frame);
	padding: 26px;
	box-shadow: 0 20px 50px -34px rgba(23, 69, 143, .5);
}

.rd-mappanel__city {
	margin: var(--rd-2) 0 var(--rd-1);
	font-size: 26px;
	line-height: 1.1;
	font-weight: 800;
}

.rd-mappanel__sub {
	margin: 0 0 var(--rd-4);
	font-size: 14px;
	font-weight: 700;
	color: var(--rd-muted);
}

.rd-mappanel__sub b {
	color: var(--rd-azure);
}

.rd-mappanel__listlabel {
	margin-bottom: 10px;
	padding-top: var(--rd-4);
	border-top: 1px solid #EDF1F6;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--rd-faint);
	text-transform: uppercase;
}

.rd-mappanel__clubs {
	flex: 1;
	overflow: auto;
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: -4px -6px 0;
	padding: 0 6px;
	max-height: 340px;
}

.rd-club {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: var(--rd-2) 6px;
	border-radius: var(--rd-r-sm);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--rd-royal);
}

.rd-club::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--rd-gold);
	flex-shrink: 0;
}

.rd-club:hover {
	background: var(--rd-offwhite);
}

/* The full club directory on the Όμιλοι page. */
.rd-citygrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--rd-5);
}

.rd-citycard {
	background: var(--rd-white);
	border: 1px solid var(--rd-line-2);
	border-radius: var(--rd-r-lg);
	padding: 26px 24px;
	box-shadow: var(--rd-shadow-card);
}

.rd-citycard__name {
	margin: 0 0 var(--rd-1);
	font-size: 22px;
	font-weight: 800;
}

.rd-citycard__meta {
	margin: 0 0 var(--rd-4);
	font-size: 14px;
	font-weight: 700;
	color: var(--rd-azure);
}

.rd-citycard ul {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--rd-line);
	padding-top: var(--rd-3);
}

/* ========================================================= 18. CALENDAR === */

.rd-events {
	display: flex;
	flex-direction: column;
	gap: var(--rd-3);
}

.rd-event {
	display: flex;
	align-items: center;
	gap: var(--rd-5);
	background: var(--rd-white);
	border: 1px solid var(--rd-line);
	border-radius: 14px;
	padding: 18px 22px;
	transition: box-shadow .2s ease, border-color .2s ease;
}

.rd-event:hover {
	border-color: var(--rd-line-3);
	box-shadow: 0 12px 28px -22px rgba(23, 69, 143, .5);
}

.rd-event__date {
	flex-shrink: 0;
	width: 72px;
	padding: 10px 6px;
	text-align: center;
	background: var(--rd-pale);
	border: 1px solid var(--rd-line-3);
	border-radius: var(--rd-r-md);
}

.rd-event__day {
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
	color: var(--rd-royal);
}

.rd-event__mon {
	margin-top: 2px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	color: var(--rd-azure);
	text-transform: uppercase;
}

.rd-event__body {
	flex: 1;
	min-width: 0;
}

.rd-event__title {
	margin: 0 0 var(--rd-1);
	font-size: 18px;
	font-weight: 700;
}

.rd-event__meta {
	margin: 0;
	font-size: 14px;
	color: var(--rd-muted);
}

.rd-event__add {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: var(--rd-2);
	padding: 11px 16px;
	min-height: 44px;
	border: 1.5px solid var(--rd-line-3);
	border-radius: 10px;
	background: var(--rd-white);
	color: var(--rd-azure);
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	transition: border-color .2s ease, background .2s ease;
}

.rd-event__add:hover {
	background: var(--rd-pale);
	border-color: var(--rd-azure);
}

/* ============================================================ 19. FORMS === */

.rd-form {
	display: grid;
	gap: var(--rd-4);
}

.rd-form--2col {
	grid-template-columns: 1fr 1fr;
}

.rd-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.rd-field--full {
	grid-column: 1 / -1;
}

.rd-field label {
	font-size: 14px;
	font-weight: 700;
	color: var(--rd-royal);
}

.rd-input,
.rd-select,
.rd-textarea {
	width: 100%;
	padding: 14px 16px;
	min-height: 44px;
	border: 1.5px solid #C7D6E8;
	border-radius: 11px;
	background: var(--rd-white);
	color: var(--rd-royal);
	font-family: inherit;
	font-size: 16px;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.rd-textarea {
	min-height: 140px;
	resize: vertical;
	line-height: 1.6;
}

.rd-input:focus,
.rd-select:focus,
.rd-textarea:focus {
	border-color: var(--rd-azure);
	box-shadow: 0 0 0 4px rgba(0, 103, 200, .16);
}

.rd-input:invalid:not(:placeholder-shown) {
	border-color: var(--rd-error);
}

/* Honeypot — hidden from people, visible to naive bots. */
.rd-hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.rd-notice {
	margin-bottom: var(--rd-5);
	padding: var(--rd-4) var(--rd-5);
	border-radius: var(--rd-r-md);
	font-size: 15px;
	font-weight: 600;
}

.rd-notice--ok {
	background: #E7F5ED;
	border: 1px solid #B7E0C9;
	color: var(--rd-success);
}

.rd-notice--error {
	background: #FDECEA;
	border: 1px solid #F3C2BD;
	color: var(--rd-error);
}

/* ------ Newsletter strip. */
.rd-nl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--rd-7);
	align-items: center;
}

.rd-nl__title {
	margin: 0 0 10px;
	font-size: 30px;
	font-weight: 800;
}

.rd-nl__lead {
	margin: 0 0 22px;
	font-size: 17px;
	line-height: 1.6;
	color: var(--rd-muted);
}

.rd-nl__form {
	display: flex;
	gap: var(--rd-3);
	flex-wrap: wrap;
}

.rd-nl__form .rd-input {
	flex: 1;
	min-width: 220px;
}

.rd-nl__msg {
	margin: var(--rd-3) 0 0;
	min-height: 20px;
	font-size: 14px;
	font-weight: 600;
	color: var(--rd-success);
}

.rd-nl__msg.is-error {
	color: var(--rd-error);
}

.rd-social {
	display: flex;
	flex-wrap: wrap;
	gap: var(--rd-3);
}

.rd-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--rd-2);
	min-width: 44px;
	min-height: 44px;
	padding: 0 var(--rd-4);
	border-radius: 14px;
	background: var(--rd-white);
	border: 1px solid var(--rd-line-3);
	color: var(--rd-azure);
	font-size: 14px;
	font-weight: 700;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.rd-social__link:hover {
	background: var(--rd-azure);
	border-color: var(--rd-azure);
	color: var(--rd-white);
}

/* =========================================================== 20. FOOTER === */

.rd-footer {
	background: var(--rd-deep);
	color: var(--rd-white);
}

.rd-footer__inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 56px var(--cx) 32px;
}

.rd-footer__cols {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
}

.rd-footer__logo img {
	height: 96px;
	width: auto;
	margin-bottom: var(--rd-4);
}

.rd-footer__tagline {
	max-width: 280px;
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .72);
}

.rd-footer__head {
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--rd-gold);
	text-transform: uppercase;
}

.rd-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.rd-footer__menu a {
	color: rgba(255, 255, 255, .82);
	font-size: 15px;
}

.rd-footer__menu a:hover {
	color: var(--rd-white);
	text-decoration: underline;
}

.rd-footer__bar {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--rd-3);
	margin-top: 44px;
	padding-top: var(--rd-5);
	border-top: 1px solid rgba(255, 255, 255, .14);
	font-size: 13px;
	color: rgba(255, 255, 255, .6);
}

.rd-footer__legal {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
}

.rd-footer__legal a {
	color: rgba(255, 255, 255, .7);
}

.rd-footer__legal a:hover {
	color: var(--rd-white);
}

.rd-footer__docs {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, .82);
	font-weight: 600;
}

/* ========================================================== 21. ARTICLE === */

.rd-article__hero {
	height: 480px;
	border-radius: var(--rd-r-xl);
	overflow: hidden;
	background: var(--rd-mist);
	margin-bottom: var(--rd-7);
}

.rd-article__meta {
	display: flex;
	align-items: center;
	gap: var(--rd-3);
	flex-wrap: wrap;
	margin-bottom: var(--rd-4);
	font-size: 14px;
	color: var(--rd-muted);
}

.rd-share {
	display: flex;
	align-items: center;
	gap: var(--rd-3);
	flex-wrap: wrap;
	margin-top: var(--rd-7);
	padding-top: var(--rd-5);
	border-top: 1px solid var(--rd-line);
}

.rd-share__label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--rd-faint);
	text-transform: uppercase;
}

/* ========================================================= 21b. COMMENTS === */

.rd-comments {
	margin-top: var(--rd-7);
	padding-top: var(--rd-7);
	border-top: 1px solid var(--rd-line);
}

.rd-comments__title {
	margin: 0 0 var(--rd-5);
	font-size: 24px;
	font-weight: 800;
}

.rd-comments__list,
.rd-comments__list .children {
	list-style: none;
	margin: 0 0 var(--rd-6);
	padding: 0;
}

.rd-comments__list .children {
	margin: var(--rd-4) 0 0 var(--rd-5);
	padding-left: var(--rd-5);
	border-left: 2px solid var(--rd-line);
}

.rd-comments__list .comment-body {
	padding: var(--rd-5);
	margin-bottom: var(--rd-4);
	background: var(--rd-offwhite);
	border: 1px solid var(--rd-line);
	border-radius: 14px;
}

.rd-comments__list .comment-author {
	display: flex;
	align-items: center;
	gap: var(--rd-3);
	font-weight: 700;
	color: var(--rd-royal);
}

.rd-comments__list .comment-author img {
	border-radius: 50%;
}

.rd-comments__list .comment-metadata,
.rd-comments__note,
.rd-comments__closed {
	font-size: 14px;
	color: var(--rd-muted);
}

.rd-comments .comment-reply-link {
	font-weight: 700;
}

.rd-comments .comment-form {
	display: grid;
	gap: var(--rd-4);
}

.rd-comments .comment-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 700;
	color: var(--rd-royal);
}

.rd-comments .comment-form input[type="text"],
.rd-comments .comment-form input[type="email"],
.rd-comments .comment-form input[type="url"] {
	width: 100%;
	padding: 14px 16px;
	min-height: 44px;
	border: 1.5px solid #C7D6E8;
	border-radius: 11px;
	font-family: inherit;
	font-size: 16px;
	color: var(--rd-royal);
}

.rd-comments .comment-form input:focus,
.rd-comments .comment-form textarea:focus {
	border-color: var(--rd-azure);
	box-shadow: 0 0 0 4px rgba(0, 103, 200, .16);
	outline: none;
}

/* ======================================================== 22. DOCUMENTS === */

.rd-locknote {
	display: flex;
	align-items: flex-start;
	gap: var(--rd-4);
	padding: var(--rd-5);
	border: 1px solid var(--rd-line-3);
	border-radius: var(--rd-r-lg);
	background: var(--rd-pale);
	color: var(--rd-royal);
}

.rd-locknote__icon {
	flex-shrink: 0;
	color: var(--rd-azure);
}

.rd-doclist {
	display: flex;
	flex-direction: column;
	gap: var(--rd-3);
	margin: 0;
	padding: 0;
	list-style: none;
}

.rd-doc {
	display: flex;
	align-items: center;
	gap: var(--rd-4);
	padding: 18px 22px;
	background: var(--rd-white);
	border: 1px solid var(--rd-line);
	border-radius: 14px;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.rd-doc:hover {
	border-color: var(--rd-azure);
	box-shadow: 0 12px 28px -22px rgba(23, 69, 143, .5);
}

.rd-doc__icon {
	flex-shrink: 0;
	color: var(--rd-azure);
}

.rd-doc__body {
	flex: 1;
	min-width: 0;
}

.rd-doc__title {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
}

.rd-doc__meta {
	margin: 2px 0 0;
	font-size: 14px;
	color: var(--rd-muted);
}

/* ======================================================== 23. PAGINATION === */

.rd-pagination {
	margin-top: var(--rd-7);
}

.rd-pagination__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--rd-2);
	list-style: none;
	margin: 0;
	padding: 0;
}

.rd-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 var(--rd-3);
	border: 1px solid var(--rd-line-3);
	border-radius: 10px;
	background: var(--rd-white);
	color: var(--rd-azure);
	font-weight: 700;
}

.rd-pagination .page-numbers:hover {
	border-color: var(--rd-azure);
	background: var(--rd-pale);
}

.rd-pagination .page-numbers.current {
	background: var(--rd-azure);
	border-color: var(--rd-azure);
	color: var(--rd-white);
}

/* ========================================================= 24. CONTACT ==== */

.rd-contactgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--rd-5);
}

.rd-contactcard {
	background: var(--rd-white);
	border: 1px solid var(--rd-line-2);
	border-radius: var(--rd-r-lg);
	padding: 26px 22px;
	box-shadow: var(--rd-shadow-card);
}

.rd-contactcard .rd-iconbox {
	margin-bottom: var(--rd-4);
	width: 48px;
	height: 48px;
	border-radius: var(--rd-r-md);
}

.rd-contactcard__label {
	margin: 0 0 var(--rd-1);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--rd-faint);
	text-transform: uppercase;
}

.rd-contactcard__value {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--rd-royal);
	overflow-wrap: anywhere;
}

/* Numbered "how it works" steps on the join page. */
.rd-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--rd-5);
	counter-reset: rd-step;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rd-step {
	position: relative;
	padding: 32px 26px 26px;
	background: var(--rd-white);
	border: 1px solid var(--rd-line-2);
	border-radius: var(--rd-r-lg);
	counter-increment: rd-step;
}

.rd-step::before {
	content: counter(rd-step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: var(--rd-4);
	border-radius: var(--rd-r-md);
	background: var(--rd-pale);
	color: var(--rd-royal);
	font-size: 18px;
	font-weight: 800;
}

.rd-step h3 {
	margin: 0 0 var(--rd-2);
	font-size: 19px;
	font-weight: 800;
}

.rd-step p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--rd-muted);
}

/* =================================================== 24b. PAGE PIECES ===== */

.rd-intro__body {
	margin-top: var(--rd-5);
	font-size: 19px;
	line-height: 1.7;
}

.rd-abouthero {
	height: 440px;
	margin-top: var(--rd-7);
	border-radius: var(--rd-r-xl);
	overflow: hidden;
	background: var(--rd-mist);
}

/* Two columns of running text (Τι κάνουμε / Γιατί το κάνουμε, form + ways). */
.rd-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--rd-8);
}

.rd-2col__title {
	margin: 14px 0 20px;
	font-size: 32px;
	line-height: 1.18;
	font-weight: 800;
}

.rd-2col__lead {
	margin: 0 0 var(--rd-5);
	font-size: 17px;
	line-height: 1.6;
	color: var(--rd-muted);
}

.rd-2col p {
	font-size: 17px;
	line-height: 1.7;
}

/* Cause cards on the Δράσεις page: two up, non-interactive, with a quote. */
.rd-cards--2 {
	grid-template-columns: repeat(2, 1fr);
}

.rd-card--static:hover {
	transform: none;
	box-shadow: var(--rd-shadow-card);
	border-color: var(--rd-line);
}

.rd-pullquote {
	margin: var(--rd-4) 0 0;
	padding-left: var(--rd-4);
	border-left: 3px solid var(--rd-gold);
	font-size: 16px;
	line-height: 1.6;
	font-style: italic;
	color: var(--rd-royal);
}

.rd-waylist {
	display: flex;
	flex-direction: column;
	gap: var(--rd-4);
	margin: 0 0 var(--rd-6);
	padding: 0;
	list-style: none;
}

.rd-way {
	display: flex;
	align-items: flex-start;
	gap: var(--rd-4);
	padding: 18px 20px;
	background: var(--rd-white);
	border: 1px solid var(--rd-line-2);
	border-radius: 14px;
}

.rd-way__title {
	margin: 0 0 var(--rd-1);
	font-size: 18px;
	font-weight: 800;
}

.rd-way__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: var(--rd-muted);
}

.rd-docgrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--rd-6);
}

.rd-doccat__head {
	display: flex;
	align-items: center;
	gap: var(--rd-3);
	margin-bottom: var(--rd-4);
}

.rd-doccat__title {
	margin: 0;
	font-size: 21px;
	font-weight: 800;
}

.rd-doclist li {
	list-style: none;
}

a.rd-doc {
	color: inherit;
}

.rd-doc__body {
	display: block;
}

.rd-doc__title {
	display: block;
	font-size: 17px;
	font-weight: 700;
	color: var(--rd-royal);
}

.rd-doc__meta {
	display: block;
	margin-top: 2px;
	font-size: 14px;
	color: var(--rd-muted);
}

.rd-breadcrumb {
	margin: 0 0 var(--rd-4);
}

.rd-legal__updated {
	margin: var(--rd-3) 0 var(--rd-6);
	font-size: 14px;
	font-weight: 600;
	color: var(--rd-muted);
}

.rd-empty {
	padding: var(--rd-8) var(--rd-5);
	text-align: center;
	font-size: 17px;
	color: var(--rd-muted);
	border: 1.5px dashed var(--rd-line-3);
	border-radius: var(--rd-r-lg);
}

.rd-searchform {
	display: flex;
	gap: var(--rd-3);
	flex-wrap: wrap;
}

.rd-searchform .rd-input {
	flex: 1;
	min-width: 220px;
}

.rd-searchform-wrap {
	max-width: 560px;
	margin-top: var(--rd-6);
}

.rd-404__links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--rd-3);
	margin-top: var(--rd-7);
}

/* ==================================================== 24c. TOUCH SIZE ===== */

/*
 * Two tiers, both met:
 *   - every pointer gets WCAG 2.2 AA's 24px minimum (SC 2.5.8);
 *   - coarse pointers get the 44px the brief asks for, where it matters.
 * Applying 44px to every inline link would wreck the footer's density on a
 * mouse-driven desktop for no accessibility gain.
 */
.rd-footer__menu a,
.rd-footer__legal a,
.rd-footer__docs,
.rd-contactcard__value a {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
}

@media (pointer: coarse) {
	.rd-footer__menu a,
	.rd-footer__legal a,
	.rd-footer__docs,
	.rd-contactcard__value a,
	.rd-prose a,
	.rd-breadcrumb a {
		display: inline-flex;
		align-items: center;
		min-height: 44px;
	}

	.rd-footer__menu {
		gap: 0;
	}

	.rd-footer__legal {
		gap: var(--rd-3) 20px;
	}
}

/* ========================================================== 25. MOTION === */

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

[data-reveal].is-revealed,
.rd-no-reveal [data-reveal] {
	opacity: 1;
	transform: none;
}

/* No JS? Nothing should ever stay invisible. */
.no-js [data-reveal] {
	opacity: 1;
	transform: none;
}

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

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

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

/* ====================================================== 26. RESPONSIVE ==== */

/*
 * Header breakpoints, set by measurement rather than by eye.
 *
 * The client asked for a large masterbrand (88px tall, ~252px wide). With that
 * logo and seven nav items, the horizontal row measures 1041px, so it needs
 * ~1280px to sit on one line — and only ~36px would be left over, which the
 * next renamed menu item would eat. So: full spacing from 1400px, a compacted
 * row down to 1100px with ~290px of slack for longer labels, and the
 * disclosure panel below that — the burger the design guide calls for.
 */
@media (max-width: 1399px) {
	.rd-logo img {
		height: 64px;
	}

	.rd-navlink,
	.rd-navdocs {
		padding: 9px 10px;
		font-size: 14.5px;
	}

	.rd-navjoin {
		padding: 11px 16px;
		font-size: 14.5px;
	}

	.rd-nav {
		gap: var(--rd-1);
	}

	.rd-header__inner {
		gap: var(--rd-4);
	}
}

@media (max-width: 1100px) {
	.rd-navtoggle {
		display: inline-flex;
	}

	/* Without JS there is nothing to open the panel with, so the links simply
	   stack in the flow and the toggle is withdrawn. */
	.no-js .rd-navtoggle {
		display: none;
	}

	.no-js .rd-nav {
		position: static;
		padding-left: 0;
		padding-right: 0;
		box-shadow: none;
		border-bottom: 0;
		background: transparent;
	}

	.no-js .rd-header__inner {
		flex-wrap: wrap;
	}

	/* Nav collapses into a disclosure panel. */
	.rd-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: var(--rd-1);
		padding: var(--rd-4) var(--cx) var(--rd-5);
		background: var(--rd-white);
		border-bottom: 1px solid var(--rd-line);
		box-shadow: 0 20px 40px -24px rgba(23, 69, 143, .5);
	}

	/* Collapsed by default once scripting is available; the head bootstrap adds
	   `.js` before first paint so the panel never flashes open. */
	.js .rd-nav {
		display: none;
	}

	.js .rd-nav.is-open {
		display: flex;
	}

	.rd-nav .rd-navlink,
	.rd-nav .rd-navdocs,
	.rd-nav .rd-navjoin {
		margin-left: 0;
		min-height: 48px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		color: var(--rd-ink);
	}

	.rd-nav .rd-navjoin {
		justify-content: center;
		margin-top: var(--rd-2);
		color: var(--rd-white);
	}

	.rd-has-transparent-header .rd-header .rd-nav .rd-navlink,
	.rd-has-transparent-header .rd-header .rd-nav .rd-navdocs {
		color: var(--rd-ink);
		border-color: var(--rd-line);
	}

	.rd-navlink.is-current::after {
		display: none;
	}

	.rd-logo img {
		height: 60px;
	}
}

@media (max-width: 1199px) {
	:root {
		--cx: 2em;
	}
}

@media (max-width: 1100px) {
	.rd-statgrid {
		grid-template-columns: repeat(3, 1fr);
	}

	.rd-news {
		grid-template-columns: repeat(2, 1fr);
	}

	.rd-citygrid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rd-contactgrid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1024px) {
	.rd-map {
		grid-template-columns: 1fr;
	}

	.rd-map__canvas {
		min-height: 420px;
	}

	.rd-story__row {
		grid-template-columns: 1fr;
		gap: var(--rd-5);
	}

	/* Image always leads on a single-column story row. */
	.rd-story__row:nth-child(even) .rd-story__media {
		order: -1;
	}

	.rd-videobtn__media {
		height: 420px;
	}
}

@media (max-width: 900px) {
	.rd-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.rd-steps {
		grid-template-columns: 1fr;
	}

	.rd-docgrid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.rd-2col {
		grid-template-columns: 1fr;
		gap: var(--rd-7);
	}

	.rd-abouthero {
		height: 280px;
	}
}

@media (max-width: 820px) {
	.rd-hero {
		min-height: 560px;
		margin-top: -104px;
		padding-top: 104px;
	}

	.rd-gov {
		grid-template-columns: 1fr;
		gap: 28px;
		text-align: center;
		padding: 32px 24px;
	}

	.rd-gov__photo {
		max-width: 320px;
		margin: 0 auto;
	}

	.rd-gov__foot {
		justify-content: center;
	}

	.rd-nl {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.rd-footer__cols {
		grid-template-columns: 1fr 1fr;
		gap: var(--rd-6);
	}

	.rd-logo img {
		height: 60px;
	}

	.rd-section {
		padding-top: var(--rd-8);
		padding-bottom: var(--rd-8);
	}
}

@media (max-width: 768px) {
	:root {
		--cx: 32px;
	}

	.rd-frame {
		margin: 1em;
	}
}

@media (max-width: 720px) {
	.rd-join {
		grid-template-columns: 1fr 1fr;
	}

	.rd-form--2col {
		grid-template-columns: 1fr;
	}

	.rd-joinband,
	.rd-ctaband {
		padding: var(--rd-7) var(--rd-5);
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.rd-g3,
	.rd-cards,
	.rd-cards--2,
	.rd-news,
	.rd-citygrid,
	.rd-contactgrid {
		grid-template-columns: 1fr;
	}

	.rd-statgrid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rd-footer__cols {
		grid-template-columns: 1fr;
	}

	.rd-logo img {
		height: 50px;
	}

	.rd-footer__logo img {
		height: 72px;
	}

	.rd-hero {
		min-height: 520px;
	}

	.rd-hero__text {
		font-size: 17px;
	}

	.rd-hero__actions .rd-btn {
		width: 100%;
	}

	.rd-videobtn__media {
		height: 260px;
	}

	.rd-videobtn__play {
		width: 68px;
		height: 68px;
	}

	.rd-videobtn__caption {
		padding: 18px 20px;
		font-size: 17px;
	}

	/* The event row stacks so the date chip and button keep their touch size. */
	.rd-event {
		flex-wrap: wrap;
		gap: var(--rd-4);
	}

	.rd-event__body {
		flex-basis: calc(100% - 96px);
	}

	.rd-event__add {
		width: 100%;
		justify-content: center;
	}

	.rd-article__hero {
		height: 240px;
	}

	/* Keep the lightbox's close button on screen once the viewport is short. */
	.rd-lightbox__close {
		top: auto;
		bottom: -52px;
		right: 50%;
		transform: translateX(50%);
	}

	.rd-gov__quote {
		font-size: 24px;
	}

	.rd-stat__num {
		font-size: 34px;
	}
}

@media (max-width: 420px) {
	.rd-join {
		grid-template-columns: 1fr;
	}
}

/* ============================================================ 27. PRINT === */

@media print {
	.rd-header,
	.rd-navtoggle,
	.rd-hero__scroll,
	.rd-nl,
	.rd-footer__legal,
	.rd-videobtn__play {
		display: none !important;
	}

	.rd-page,
	.rd-frame {
		margin: 0;
		padding: 0;
		box-shadow: none;
		background: #fff;
	}

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