/* ==========================================================================
   HSRC Annual Conference — interior page components

   Building blocks the designed pages compose from. Page content supplies the
   markup (an HTML block per section); everything visual lives here.

   1. Hero imagery
   2. Section scaffolding
   3. Fact strip
   4. Lede row
   5. Card grids
   6. Split sections & callouts
   7. Numbered track list
   8. Programme timeline
   9. Speakers
   10. Profile pages
   11. Feature strip & detail rows
   12. Media cards (hotels, news)
   13. Sidebars
   14. Bars, notes & links
   15. Forms
   16. Responsive
   ========================================================================== */

/* 1. Hero imagery ---------------------------------------------------------- */

.page-hero--has-image {
	padding-block: 66px 72px;
}

.page-hero__media {
	position: absolute;
	inset: 0 0 0 auto;
	width: min(58%, 900px);
	z-index: 0;
}

.page-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Fade the photograph into the navy so the headline always has contrast. */
.page-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		#071b3d 0%,
		rgba(7, 27, 61, .96) 22%,
		rgba(8, 32, 68, .72) 48%,
		rgba(10, 42, 82, .34) 78%,
		rgba(10, 42, 82, .18) 100%);
}

/* Keep the arc above the photo. */
.page-hero--has-image::after {
	z-index: 1;
}

.page-hero__inner {
	max-width: var(--container);
}

.page-hero--has-image .page-hero__title,
.page-hero--has-image .page-hero__sub {
	max-width: 52ch;
	text-shadow: 0 1px 18px rgba(3, 7, 17, .35);
}

.breadcrumbs__current {
	color: #d8e2f0;
}

/* 2. Section scaffolding --------------------------------------------------- */

/* Designed pages opt out of the prose measure so sections can run full width.
   theme.css targets `.entry-content h2/h3`, so every heading colour below is
   qualified to win that specificity battle rather than relying on !important. */
.entry-content--full {
	max-width: none;
	font-size: inherit;
}

.entry-content--full > *:first-child {
	margin-top: 0;
}

.section {
	padding-block: 60px;
}

.section--tight {
	padding-block: 42px;
}

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

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

.section__head {
	margin-bottom: 34px;
}

.entry-content .section__title,
.section__title {
	margin: 0;
	font-size: clamp(21px, 2.1vw, 27px);
	color: var(--blue);
	text-transform: uppercase;
	letter-spacing: .01em;
}

.section__title::after {
	content: "";
	display: block;
	width: 54px;
	height: 3px;
	background: var(--orange);
	margin-top: 12px;
}

.section__title--centre {
	text-align: center;
}

.section__title--centre::after {
	margin-inline: auto;
}

.section__lead {
	margin: 14px 0 0;
	max-width: 74ch;
	font-size: 16.5px;
}

/* A section heading that sits beside a round icon. */
.section__head--icon {
	display: flex;
	align-items: center;
	gap: 18px;
}

.section__head--icon .section__title {
	margin: 0;
}

/* 3. Fact strip ------------------------------------------------------------ */

.factstrip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.factstrip__item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 26px 26px;
	border-right: 1px solid var(--line);
}

.factstrip__item:last-child {
	border-right: 0;
}

/* Let the text column shrink inside the flex row; without min-width:0 a long
   venue name pushes straight through the cell border. */
.factstrip__item > span:last-child {
	min-width: 0;
}

.factstrip__icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--line);
	color: var(--blue-600);
}

.factstrip__icon--orange {
	color: var(--orange);
}

.factstrip__value {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15.5px;
	line-height: 1.3;
	color: var(--ink);
	text-transform: uppercase;
	overflow-wrap: break-word;
	hyphens: auto;
}

.factstrip__label {
	display: block;
	margin-top: 3px;
	font-size: 13.5px;
	color: var(--muted);
}

/* 4. Lede row -------------------------------------------------------------- */

.lede {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	max-width: 1000px;
	margin-inline: auto;
}

.lede__icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: #eaf2fb;
	color: var(--blue-600);
}

.lede__text {
	margin: 0;
	font-size: 17.5px;
	line-height: 1.7;
	color: var(--ink);
}

/* 5. Card grids ------------------------------------------------------------ */

.cardgrid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.cardgrid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.cardgrid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cardgrid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 30px 22px 28px;
	text-align: center;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color .18s, box-shadow .18s, transform .18s;
}

.tile__icon {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: #e7f0fa;
	color: var(--blue-600);
}

.tile__icon--orange {
	background: #fdf0e0;
	color: var(--orange-600);
}

.entry-content .tile__title,
.tile__title {
	margin: 0;
	font-size: 16px;
	line-height: 1.35;
	color: var(--blue);
}

.tile__title::after {
	content: "";
	display: block;
	width: 34px;
	height: 3px;
	background: var(--orange);
	margin: 12px auto 0;
}

.tile__text {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--body);
}

/* Linked tiles lift on hover. */
a.tile {
	text-decoration: none;
	color: inherit;
}

a.tile:hover {
	border-color: var(--orange-200);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

/* Objective row: icons with a dividing rule, no card chrome. */
.objectives {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 0;
}

.objectives__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 8px 22px;
	text-align: center;
	border-right: 1px solid var(--line);
}

.objectives__item:last-child {
	border-right: 0;
}

.objectives__icon {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: #eef4fb;
	color: var(--blue-600);
}

.objectives__icon--orange {
	background: #fdf3e7;
	color: var(--orange-600);
}

.objectives__text {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.6;
}

/* 6. Split sections & callouts --------------------------------------------- */

.split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 44px;
	align-items: start;
}

.split--wide-first {
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 1fr);
}

.split--wide-last {
	grid-template-columns: minmax(280px, 1fr) minmax(0, 1.25fr);
}

.split__media img {
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	display: block;
}

.split__body > *:first-child { margin-top: 0; }
.split__body > *:last-child { margin-bottom: 0; }

/* Navy callout — the theme statement box. */
.callout {
	position: relative;
	padding: 34px 32px;
	background:
		radial-gradient(120% 140% at 80% 20%, #164280 0%, #0c2a5c 46%, #071b3d 88%),
		var(--blue-900);
	color: #fff;
	border-radius: var(--radius);
	overflow: hidden;
}

.callout::after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: -90px;
	width: 240px;
	height: 240px;
	border: 26px solid rgba(192, 145, 43, .16);
	border-radius: 50%;
	pointer-events: none;
}

.callout__inner {
	position: relative;
	z-index: 2;
}

.callout__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(241, 144, 43, .16);
	color: var(--orange-400);
	margin-bottom: 18px;
}

.callout__eyebrow {
	margin: 0 0 8px;
	font-size: 12.5px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--orange-400);
}

.entry-content .callout__title,
.callout__title {
	margin: 0 0 12px;
	font-size: clamp(20px, 2vw, 26px);
	color: #fff;
	line-height: 1.25;
}

.callout__text {
	margin: 0;
	color: #d5e0ef;
	font-size: 15.5px;
}

.callout__rule {
	width: 54px;
	height: 3px;
	background: var(--orange);
	border: 0;
	margin: 18px 0 0;
}

/* 7. Numbered track list --------------------------------------------------- */

.tracks {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.track {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	padding: 18px 22px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-decoration: none;
	color: inherit;
	transition: border-color .18s, box-shadow .18s;
}

.track:hover {
	border-color: var(--orange-200);
	box-shadow: var(--shadow-md);
}

.track__icon {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	border-radius: var(--radius);
	background: var(--blue-800);
	color: #fff;
}

.track__num {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
}

.entry-content .track__title,
.track__title {
	margin: 0 0 4px;
	font-size: 17px;
	color: var(--blue-600);
}

.track__text {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.6;
}

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

.track:hover .track__chev {
	color: var(--orange);
}

/* 8. Programme timeline ---------------------------------------------------- */

.daygrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
	gap: 26px;
}

.day {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: #fff;
}

.day__head {
	padding: 15px 22px;
	background: var(--blue-800);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.day--alt .day__head {
	background: var(--orange);
}

.day__list {
	list-style: none;
	margin: 0;
	padding: 6px 22px 14px;
}

.slot {
	display: grid;
	grid-template-columns: auto 128px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid var(--line-soft);
}

.day__list .slot:last-child {
	border-bottom: 0;
}

.slot__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #eaf2fb;
	color: var(--blue-600);
}

.slot__icon--orange {
	background: #fdf0e0;
	color: var(--orange-600);
}

.slot__time {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14.5px;
	color: var(--blue-600);
}

.slot__label {
	font-size: 15px;
	color: var(--ink);
}

/* 9. Speakers -------------------------------------------------------------- */

.speakers {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.speakers--compact {
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.speaker {
	display: flex;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: border-color .18s, box-shadow .18s, transform .18s;
}

a.speaker:hover {
	border-color: var(--orange-200);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.speaker__photo {
	flex: 0 0 40%;
	max-width: 132px;
	background: var(--bg-soft);
}

.speaker__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.speaker__body {
	padding: 16px 18px;
	min-width: 0;
}

.speaker__badge {
	display: inline-block;
	margin-bottom: 8px;
	padding: 3px 9px;
	border-radius: 2px;
	background: #eaf2fb;
	color: var(--blue-600);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.speaker__badge--orange {
	background: #fdf0e0;
	color: var(--orange-700);
}

.entry-content .speaker__name,
.speaker__name {
	margin: 0 0 4px;
	font-size: 16.5px;
	color: var(--ink);
	line-height: 1.3;
}

.speaker__role {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--muted);
}

.speaker__note {
	margin: 10px 0 0;
	padding-top: 10px;
	border-top: 1px solid var(--line-soft);
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--body);
}

/* Announcement banner above the speaker grid. */
.announce {
	display: grid;
	grid-template-columns: minmax(0, 2fr) repeat(auto-fit, minmax(200px, 1fr));
	gap: 26px;
	align-items: center;
	padding: 24px 26px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.announce__main {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.announce__icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--blue-800);
	color: var(--orange-400);
}

.entry-content .announce__title,
.announce__title {
	margin: 0 0 6px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: var(--blue);
}

.announce__text {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.6;
}

.announce__fact {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-left: 26px;
	border-left: 1px solid var(--line);
}

.announce__fact .factstrip__icon {
	background: #fff;
}

/* 10. Profile pages -------------------------------------------------------- */

.profile-hero {
	position: relative;
	background:
		radial-gradient(110% 130% at 74% 40%, #164280 0%, #0c2a5c 44%, #071b3d 82%),
		var(--blue-900);
	color: #fff;
	padding-block: 44px 48px;
	overflow: hidden;
}

.profile-hero::after {
	content: "";
	position: absolute;
	right: -90px;
	top: -130px;
	width: 470px;
	height: 470px;
	border: 42px solid rgba(192, 145, 43, .18);
	border-radius: 50%;
	pointer-events: none;
}

.profile-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(280px, .8fr);
	gap: 36px;
	align-items: center;
}

.profile-hero__eyebrow {
	margin: 14px 0 10px;
	font-size: 12.5px;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: var(--orange-400);
}

.profile-hero__name {
	margin: 0 0 12px;
	font-size: clamp(28px, 3.2vw, 44px);
	font-weight: 800;
	line-height: 1.08;
	color: #fff;
}

.profile-hero__role {
	margin: 0;
	font-size: 16px;
	color: #cfdcec;
	line-height: 1.5;
}

.profile-hero__photo {
	width: clamp(180px, 20vw, 250px);
	aspect-ratio: 1;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid rgba(255, 255, 255, .12);
}

.profile-hero__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.profile-hero__meta li {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	font-size: 14.5px;
	color: #dbe5f2;
}

.profile-hero__meta svg {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--orange-400);
}

.profile-hero__meta strong {
	display: block;
	color: #fff;
	font-weight: 600;
}

/* Tab strip. */
.tabs {
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.tabs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tabs__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 26px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--muted);
	text-decoration: none;
	border-bottom: 3px solid transparent;
	transition: color .18s, border-color .18s;
}

.tabs__link:hover {
	color: var(--blue-600);
}

.tabs__link.is-active {
	color: var(--orange-600);
	border-bottom-color: var(--orange);
}

/* Sidebar panels used on profile and detail pages. */
.panel {
	padding: 26px 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
}

.panel + .panel {
	margin-top: 20px;
}

.panel--navy {
	background:
		radial-gradient(120% 140% at 80% 15%, #164280 0%, #0c2a5c 48%, #071b3d 90%),
		var(--blue-900);
	border-color: transparent;
	color: #fff;
}

.entry-content .panel__title,
.panel__title {
	margin: 0 0 16px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--blue);
}

.panel__title::after {
	content: "";
	display: block;
	width: 42px;
	height: 3px;
	background: var(--orange);
	margin-top: 11px;
}

.panel--navy .panel__title {
	color: #fff;
}

.panel__lead {
	margin: 0 0 6px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17px;
	color: inherit;
}

.panel--navy .panel__lead {
	color: #fff;
}

.panel__text {
	margin: 0;
	font-size: 14.5px;
	color: #cfdcec;
}

.panel__meta {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.panel__meta li {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 14px;
	color: #d5e0ef;
}

.panel__meta svg {
	flex: 0 0 auto;
	color: var(--orange-400);
}

/* Ticked list used for expertise / requirements. */
.ticks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ticks li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14.5px;
	line-height: 1.55;
}

.ticks svg {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--orange);
}

/* Contact rows inside a panel. */
.linklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.linklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14.5px;
	line-height: 1.5;
}

.linklist svg {
	flex: 0 0 auto;
	margin-top: 3px;
	color: var(--blue-600);
}

.linklist a {
	color: var(--blue-600);
	text-decoration: none;
	word-break: break-word;
}

.linklist a:hover {
	color: var(--orange-600);
	text-decoration: underline;
}

/* Publications list. */
.pubs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pubs li {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line-soft);
}

.pubs li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.pubs svg {
	flex: 0 0 auto;
	margin-top: 3px;
	color: var(--blue-600);
}

.pubs__title {
	display: block;
	font-weight: 600;
	font-size: 14.5px;
	color: var(--ink);
	line-height: 1.45;
}

.pubs__meta {
	display: block;
	margin-top: 3px;
	font-size: 13px;
	color: var(--muted);
}

/* 11. Feature strip & detail rows ------------------------------------------ */

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 0;
	padding: 20px 0;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.features__item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	padding: 8px 18px;
	border-right: 1px solid var(--line);
	font-size: 13.5px;
	line-height: 1.4;
	text-align: left;
	color: var(--ink);
}

.features__item:last-child {
	border-right: 0;
}

.features__item svg {
	flex: 0 0 auto;
	color: var(--blue-600);
}

/* Icon + heading + copy rows. */
.rows {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.row-item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 20px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line-soft);
}

.rows .row-item:last-child {
	border-bottom: 0;
}

.row-item__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #eaf2fb;
	color: var(--blue-600);
}

.entry-content .row-item__title,
.row-item__title {
	margin: 0 0 5px;
	font-size: 16px;
	color: var(--blue);
}

.row-item__text {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
}

/* Address / contact block. */
.addressbox {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 26px 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
}

.addressbox__icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--blue-800);
	color: #fff;
}

.entry-content .addressbox__name,
.addressbox__name {
	margin: 0 0 8px;
	font-size: 16px;
	color: var(--ink);
}

.addressbox__lines {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--body);
}

/* Distance tiles. */
.distances {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 18px;
}

.distance {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.distance__icon {
	flex: 0 0 auto;
	color: var(--blue-600);
}

.distance__from {
	display: block;
	font-weight: 600;
	font-size: 14.5px;
	color: var(--ink);
}

.distance__value {
	display: block;
	margin-top: 2px;
	font-size: 13.5px;
	color: var(--muted);
}

/* Map frame. */
.mapframe {
	position: relative;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--bg-soft);
	aspect-ratio: 16 / 10;
}

.mapframe iframe,
.mapframe img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	object-fit: cover;
}

/* 12. Media cards (hotels, news) ------------------------------------------- */

.mediacard {
	display: grid;
	grid-template-columns: minmax(140px, 200px) minmax(0, 1fr) auto;
	gap: 22px;
	align-items: center;
	padding: 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.mediacard + .mediacard {
	margin-top: 18px;
}

.mediacard__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	display: block;
}

.entry-content .mediacard__name,
.mediacard__name {
	margin: 0 0 4px;
	font-size: 16px;
	color: var(--ink);
}

.mediacard__tag {
	display: inline-block;
	margin-bottom: 8px;
	padding: 3px 9px;
	border-radius: 2px;
	background: #fdf0e0;
	color: var(--orange-700);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.mediacard__list {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13.5px;
	color: var(--body);
}

.mediacard__list li {
	position: relative;
	padding-left: 16px;
}

.mediacard__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .62em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--orange);
}

/* News cards. */
.newsgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
}

.newscard {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .18s, box-shadow .18s, transform .18s;
}

.newscard:hover {
	border-color: var(--orange-200);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.newscard__img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

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

.newscard__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	margin-bottom: 12px;
	font-size: 12.5px;
	color: var(--muted);
}

.newscard__date {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.newscard__date svg {
	color: var(--orange);
}

.newscard__cat {
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--orange-700);
	font-weight: 600;
}

.entry-content .newscard__title,
.newscard__title {
	margin: 0 0 10px;
	font-size: 17.5px;
	line-height: 1.32;
}

.newscard__title a {
	color: var(--ink);
	text-decoration: none;
}

.newscard__title a:hover {
	color: var(--blue-600);
}

.newscard__excerpt {
	margin: 0 0 16px;
	font-size: 14.5px;
	line-height: 1.6;
}

.newscard__more {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--orange-600);
	text-decoration: none;
}

.newscard__more:hover {
	gap: 12px;
	color: var(--orange-700);
}

/* Category filter strip on the news archive. */
.filterbar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 30px;
}

.filterbar__item {
	padding: 9px 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--body);
	text-decoration: none;
	transition: background .18s, border-color .18s, color .18s;
}

.filterbar__item:hover {
	border-color: var(--orange-200);
	color: var(--orange-700);
}

.filterbar__item.is-active {
	background: var(--orange);
	border-color: var(--orange);
	color: #fff;
}

/* 13. Sidebars ------------------------------------------------------------- */

.with-aside {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 34px;
	align-items: start;
}

.searchpanel .search-form {
	display: flex;
	gap: 0;
}

.searchpanel input[type="search"],
.searchpanel input[type="text"] {
	flex: 1;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-right: 0;
	border-radius: var(--radius) 0 0 var(--radius);
	font: inherit;
	font-size: 14.5px;
	color: var(--ink);
}

.searchpanel button {
	display: grid;
	place-items: center;
	width: 52px;
	border: 0;
	border-radius: 0 var(--radius) var(--radius) 0;
	background: var(--blue-800);
	color: #fff;
	cursor: pointer;
	transition: background .18s;
}

.searchpanel button:hover {
	background: var(--orange);
}

/* Latest-news list. */
.postlist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.postlist li {
	padding: 14px 0;
	border-bottom: 1px solid var(--line-soft);
}

.postlist li:first-child { padding-top: 0; }
.postlist li:last-child { padding-bottom: 0; border-bottom: 0; }

.postlist__link {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 12px;
	align-items: start;
	text-decoration: none;
	color: inherit;
}

.postlist__icon {
	margin-top: 3px;
	color: var(--orange);
}

.postlist__date {
	display: block;
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 3px;
}

.postlist__title {
	display: block;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.42;
	color: var(--ink);
}

.postlist__link:hover .postlist__title {
	color: var(--blue-600);
}

.postlist__chev {
	margin-top: 4px;
	color: var(--muted);
}

.panel__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--orange-600);
	text-decoration: none;
}

.panel__more:hover { gap: 12px; }

/* 14. Bars, notes & links -------------------------------------------------- */

.bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	padding: 22px 26px;
	background: #eef4fb;
	border: 1px solid #dbe7f5;
	border-radius: var(--radius);
}

.bar--soft {
	background: var(--bg-soft);
	border-color: var(--line);
}

.bar__icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--blue-800);
	color: #fff;
}

.bar__icon--plain {
	background: transparent;
	color: var(--blue-600);
	width: auto;
	height: auto;
}

.bar__body {
	flex: 1;
	min-width: 240px;
}

.entry-content .bar__title,
.bar__title {
	margin: 0 0 3px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15.5px;
	color: var(--ink);
}

.bar__text {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.6;
}

.bar__action {
	flex: 0 0 auto;
}

/* Quiet note line. */
.note {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 20px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-size: 14.5px;
	line-height: 1.6;
}

.note svg {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--blue-600);
}

.note p {
	margin: 0;
}

/* Useful-links panel. */
.usefullinks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.usefullinks a {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	text-decoration: none;
	color: var(--blue-600);
	font-size: 14.5px;
	line-height: 1.45;
}

.usefullinks a:hover {
	color: var(--orange-600);
}

.usefullinks svg {
	margin-top: 3px;
	flex: 0 0 auto;
}

/* Prospectus / download strip. */
.download-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 22px;
	padding: 22px 26px;
	background: #eef4fb;
	border: 1px solid #dbe7f5;
	border-radius: var(--radius);
}

/* 15. Forms ---------------------------------------------------------------- */

.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

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

.form-field label {
	display: block;
	margin-bottom: 7px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ink);
}

.form-field .req {
	color: var(--orange-600);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	font: inherit;
	font-size: 15px;
	color: var(--ink);
	transition: border-color .18s, box-shadow .18s;
}

.form-field input:focus,
.form-field textarea:focus {
	outline: 0;
	border-color: var(--blue-600);
	box-shadow: 0 0 0 3px rgba(21, 96, 168, .13);
}

.form-field textarea {
	min-height: 150px;
	resize: vertical;
}

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

.form-notice {
	margin: 0 0 20px;
	padding: 14px 18px;
	border-radius: var(--radius);
	font-size: 14.5px;
	border: 1px solid;
}

.form-notice--ok {
	background: #ecf7ef;
	border-color: #bfe3c9;
	color: #1d6b34;
}

.form-notice--error {
	background: #fdefee;
	border-color: #f3c9c5;
	color: #a3302a;
}

.form-error {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: #a3302a;
}

/* Stand-in for artwork that has not been supplied yet — holds the layout's
   shape so a missing photograph never collapses a section. */
.img-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 120px;
	padding: 18px;
	background:
		repeating-linear-gradient(135deg,
			#eef1f6 0 12px,
			#e7ebf3 12px 24px);
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	color: var(--muted);
	text-align: center;
}

.img-placeholder svg {
	opacity: .5;
}

.img-placeholder__label {
	font-size: 12px;
	letter-spacing: .04em;
	word-break: break-word;
}

/* 16. Responsive ----------------------------------------------------------- */

@media (max-width: 1100px) {
	.profile-hero__inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.profile-hero__meta {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 24px;
	}

	.with-aside {
		grid-template-columns: minmax(0, 1fr);
	}

	.split--wide-first,
	.split--wide-last {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 900px) {
	.page-hero__media {
		width: 100%;
	}

	/* Photo becomes a full-bleed backdrop, so darken it further for contrast. */
	.page-hero__media::after {
		background: linear-gradient(90deg,
			rgba(7, 27, 61, .95) 0%,
			rgba(7, 27, 61, .88) 55%,
			rgba(10, 42, 82, .78) 100%);
	}

	.page-hero--has-image .page-hero__title,
	.page-hero--has-image .page-hero__sub {
		max-width: none;
	}

	.factstrip__item,
	.objectives__item,
	.features__item {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.factstrip__item:last-child,
	.objectives__item:last-child,
	.features__item:last-child {
		border-bottom: 0;
	}

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

	.announce__fact {
		padding-left: 0;
		border-left: 0;
		padding-top: 20px;
		border-top: 1px solid var(--line);
	}

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

	.mediacard__img {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 700px) {
	.section { padding-block: 44px; }

	.track {
		grid-template-columns: auto auto minmax(0, 1fr);
		gap: 14px;
	}

	.track__chev { display: none; }

	.slot {
		grid-template-columns: auto minmax(0, 1fr);
		gap: 14px;
	}

	.slot__time {
		grid-column: 2;
		margin-bottom: -8px;
	}

	.speaker {
		flex-direction: column;
	}

	.speaker__photo {
		flex: none;
		max-width: none;
		aspect-ratio: 16 / 10;
	}

	.profile-hero__inner {
		grid-template-columns: minmax(0, 1fr);
		text-align: left;
	}

	.profile-hero__photo {
		width: 150px;
	}

	.lede {
		flex-direction: column;
		gap: 16px;
	}

	.tabs__link {
		padding: 14px 16px;
		font-size: 12.5px;
	}
}
