/**
 * IBO theme styles.
 *
 * Design tokens come from theme.json as --wp--preset--* custom properties;
 * they are aliased here to shorter names.
 */

:root {
	--ibo-blue: var(--wp--preset--color--blue, #074EA2);
	--ibo-blue-light: var(--wp--preset--color--blue-light, #4E87C7);
	--ibo-ink: var(--wp--preset--color--neutral-950, #0a0a0a);
	--ibo-body: var(--wp--preset--color--neutral-600, #525252);
	--ibo-muted: var(--wp--preset--color--neutral-400, #a3a3a3);
	--ibo-line: var(--wp--preset--color--neutral-200, #e5e5e5);
	--ibo-surface: var(--wp--preset--color--neutral-100, #f5f5f5);
	--ibo-dark: var(--wp--preset--color--neutral-950, #0a0a0a);

	--ibo-gutter: clamp(1.25rem, 4vw, 3rem);
	--ibo-max: 80rem;
	--ibo-rhythm: clamp(3rem, 8vw, 8rem);

	--ibo-font: var(--wp--preset--font-family--sans, system-ui, sans-serif);
}

/* ---------------------------------------------------------------- base */

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

body {
	margin: 0;
	font-family: var(--ibo-font);
	font-size: 1rem;
	line-height: 1.75;
	color: var(--ibo-body);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--ibo-blue);
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--ibo-blue-light);
}

h1, h2, h3, h4 {
	color: var(--ibo-ink);
	line-height: 1.15;
	margin: 0 0 0.5em;
	font-weight: 700;
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 1.25rem;
}

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

.ibo-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	padding: 0.75rem 1.25rem;
	background: var(--ibo-blue);
	color: #fff;
	text-decoration: none;
}

.ibo-skip-link:focus {
	left: 1rem;
	top: 1rem;
	color: #fff;
}

:where(a, button, input, textarea, [tabindex]):focus-visible {
	outline: 3px solid var(--ibo-blue-light);
	outline-offset: 2px;
}

/* ------------------------------------------------------------ layout */

.ibo-container {
	width: 100%;
	max-width: var(--ibo-max);
	margin-inline: auto;
	padding-inline: var(--ibo-gutter);
}

.ibo-section {
	padding-block: var(--ibo-rhythm);
}

.ibo-section--muted {
	background: var(--ibo-surface);
}

.ibo-section--dark {
	background: var(--ibo-dark);
	color: var(--wp--preset--color--neutral-300, #d4d4d4);
}

.ibo-section--dark h1,
.ibo-section--dark h2,
.ibo-section--dark h3 {
	color: #fff;
}

.ibo-grid-2 {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
	.ibo-grid-2 {
		grid-template-columns: 1fr 1fr;
	}
}

/* Hexagon motif used on dark sections. */
.ibo-hex {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.ibo-hex::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='139' viewBox='0 0 120 139'%3E%3Cpath d='M60 0l60 34.75v69.5L60 139 0 104.25v-69.5z' fill='none' stroke='%23262626' stroke-width='2'/%3E%3C/svg%3E");
	background-size: 180px auto;
	background-position: right -40px top -20px;
}

/* ------------------------------------------------------------ header */

.ibo-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--ibo-line);
}

.ibo-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 4.5rem;
}

.ibo-header__logo {
	text-decoration: none;
	flex-shrink: 0;
}

.ibo-wordmark {
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--ibo-blue);
}

.ibo-header__logo-img {
	max-height: 2.25rem;
	width: auto;
}

.ibo-header__toggle {
	display: block;
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	background: none;
	cursor: pointer;
	position: relative;
}

.ibo-header__toggle-bar,
.ibo-header__toggle-bar::before,
.ibo-header__toggle-bar::after {
	position: absolute;
	left: 0.625rem;
	width: 1.5rem;
	height: 2px;
	background: var(--ibo-ink);
	transition: transform 0.2s ease;
}

.ibo-header__toggle-bar {
	top: 50%;
}

.ibo-header__toggle-bar::before {
	content: "";
	top: -7px;
	left: 0;
}

.ibo-header__toggle-bar::after {
	content: "";
	top: 7px;
	left: 0;
}

.ibo-nav {
	display: none;
	position: absolute;
	inset-inline: 0;
	top: 100%;
	background: #fff;
	border-bottom: 1px solid var(--ibo-line);
	padding: 1rem var(--ibo-gutter) 2rem;
}

.ibo-nav.is-open {
	display: block;
}

.ibo-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.ibo-nav__link,
.ibo-nav__list a {
	display: block;
	padding: 0.5rem 0;
	font-weight: 600;
	color: var(--ibo-ink);
	text-decoration: none;
}

.ibo-nav__link:hover,
.ibo-nav__list a:hover,
.ibo-nav__list .current-menu-item > a {
	color: var(--ibo-blue);
}

.ibo-langswitch {
	list-style: none;
	display: flex;
	gap: 0.75rem;
	margin: 1.5rem 0 0;
	padding: 0;
}

.ibo-langswitch__link {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--ibo-muted);
	text-decoration: none;
}

.ibo-langswitch__link.is-active {
	color: var(--ibo-blue);
}

@media (min-width: 60rem) {
	.ibo-header__toggle {
		display: none;
	}

	.ibo-nav {
		display: flex;
		align-items: center;
		gap: 2rem;
		position: static;
		border: 0;
		padding: 0;
		background: none;
	}

	.ibo-nav__list {
		flex-direction: row;
		gap: 1.75rem;
	}

	.ibo-langswitch {
		margin: 0;
	}
}

/* ------------------------------------------------------------ type */

.ibo-eyebrow {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--ibo-blue);
	margin-bottom: 0.75rem;
}

.ibo-eyebrow--invert {
	color: var(--ibo-blue-light);
}

.ibo-page-title,
.ibo-hero__title {
	font-size: clamp(2.25rem, 6vw, 4rem);
	line-height: 1.05;
	margin-bottom: 1rem;
}

.ibo-section__title {
	font-size: clamp(1.75rem, 3.5vw, 3rem);
	margin-bottom: 1rem;
}

.ibo-section__title--invert {
	color: #fff;
}

.ibo-lead {
	font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
	max-width: 46rem;
}

.ibo-lead--invert {
	color: var(--wp--preset--color--neutral-300, #d4d4d4);
}

.ibo-prose {
	max-width: 48rem;
}

.ibo-prose h2 {
	margin-top: 2.5rem;
}

/* ------------------------------------------------------------ button */

.ibo-button {
	display: inline-block;
	padding: 0.75rem 1.75rem;
	background: var(--ibo-blue);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border: 0;
	border-radius: 2px;
	cursor: pointer;
	font-size: 1rem;
	font-family: inherit;
	transition: background 0.15s ease;
}

.ibo-button:hover {
	background: var(--ibo-blue-light);
	color: #fff;
}

.ibo-button--invert {
	background: #fff;
	color: var(--ibo-ink);
}

.ibo-button--invert:hover {
	background: var(--ibo-blue-light);
	color: #fff;
}

/* ------------------------------------------------------------ hero */

.ibo-hero {
	padding-block: clamp(2rem, 6vw, 5rem);
}

.ibo-hero__inner {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	align-items: center;
}

@media (min-width: 60rem) {
	.ibo-hero__inner {
		grid-template-columns: 1.1fr 1fr;
	}
}

.ibo-hero__subtitle {
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	font-weight: 700;
	color: var(--ibo-blue-light);
	margin-bottom: 1.5rem;
}

.ibo-hero__intro {
	max-width: 34rem;
}

/* ------------------------------------------------- generic list grids */

.ibo-method,
.ibo-solutions,
.ibo-applications,
.ibo-principles,
.ibo-team,
.ibo-highlights,
.ibo-benefits,
.ibo-downloads,
.ibo-morelinks {
	list-style: none;
	margin: 2.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 2rem;
}

@media (min-width: 48rem) {
	.ibo-method,
	.ibo-applications,
	.ibo-highlights {
		grid-template-columns: repeat(3, 1fr);
	}

	.ibo-solutions,
	.ibo-principles,
	.ibo-team,
	.ibo-downloads,
	.ibo-benefits {
		grid-template-columns: repeat(2, 1fr);
	}
}

.ibo-method__title,
.ibo-solutions__title,
.ibo-applications__title,
.ibo-principles__title,
.ibo-team__name {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.ibo-method--invert .ibo-method__title {
	color: #fff;
}

.ibo-team__role {
	color: var(--ibo-blue);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.ibo-highlights__item,
.ibo-benefits__item {
	padding-left: 1.5rem;
	position: relative;
}

.ibo-highlights__item::before,
.ibo-benefits__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 0.5rem;
	height: 0.5rem;
	background: var(--ibo-blue);
}

/* ------------------------------------------------------------ stats */

.ibo-stats {
	display: grid;
	gap: 2rem;
	margin-top: 3rem;
}

@media (min-width: 48rem) {
	.ibo-stats {
		grid-template-columns: repeat(3, 1fr);
	}
}

.ibo-stat {
	border-top: 3px solid var(--ibo-blue);
	padding-top: 1.25rem;
}

.ibo-stat__value {
	font-size: clamp(2.75rem, 6vw, 4rem);
	font-weight: 800;
	line-height: 1;
	color: var(--ibo-ink);
	margin: 0 0 0.5rem;
	font-variant-numeric: tabular-nums;
}

.ibo-stat__unit {
	font-size: 0.45em;
	font-weight: 600;
	color: var(--ibo-blue);
	margin-left: 0.15em;
}

.ibo-stat__label {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--ibo-body);
}

.ibo-stats__note {
	margin-top: 1.5rem;
	font-size: 0.8125rem;
	color: var(--ibo-muted);
}

/* ------------------------------------------------------------ globe */

.ibo-globe svg {
	width: 100%;
	max-width: 26rem;
	margin-inline: auto;
}

.ibo-globe__arcs path {
	stroke-dasharray: 260;
	stroke-dashoffset: 260;
	animation: ibo-draw 2.4s ease forwards;
}

.ibo-globe__arcs path:nth-child(2) { animation-delay: 0.25s; }
.ibo-globe__arcs path:nth-child(3) { animation-delay: 0.5s; }
.ibo-globe__arcs path:nth-child(4) { animation-delay: 0.75s; }
.ibo-globe__arcs path:nth-child(5) { animation-delay: 1s; }

@keyframes ibo-draw {
	to { stroke-dashoffset: 0; }
}

/* ------------------------------------------------------- product switcher */

.ibo-switcher {
	margin-block: 2rem;
}

.ibo-switcher__tabs {
	display: flex;
	border-bottom: 1px solid var(--ibo-line);
}

.ibo-switcher__tab {
	flex: 1;
	padding: 1rem;
	background: none;
	border: 0;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	font: inherit;
	font-weight: 600;
	color: var(--ibo-body);
	cursor: pointer;
}

.ibo-switcher__tab.is-active {
	color: var(--ibo-blue);
	border-bottom-color: var(--ibo-blue);
}

.ibo-product {
	margin-top: 1.5rem;
	background: var(--ibo-dark);
	color: var(--wp--preset--color--neutral-300, #d4d4d4);
	overflow: hidden;
}

.ibo-product__header {
	display: block;
	width: 100%;
	padding: 2rem;
	background: none;
	border: 0;
	text-align: left;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.ibo-product__title {
	color: #fff;
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	text-align: center;
	margin-bottom: 1.5rem;
}

.ibo-product__features {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 48rem) {
	.ibo-product__features {
		grid-template-columns: repeat(3, 1fr);
	}
}

.ibo-product__feature-title,
.ibo-product__col-label {
	color: var(--ibo-blue-light);
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.ibo-product__features ul,
.ibo-product__cols ul,
.ibo-product__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.9375rem;
}

.ibo-product__hint {
	display: block;
	margin-top: 1.5rem;
	text-align: center;
	font-size: 0.8125rem;
	color: var(--ibo-muted);
}

.ibo-product.is-open .ibo-product__hint {
	visibility: hidden;
}

.ibo-product__body {
	padding: 0 2rem 2rem;
	border-top: 1px solid #262626;
}

.ibo-product__row {
	padding-top: 1.5rem;
}

.ibo-product__row-title {
	color: #fff;
	font-size: 1.125rem;
}

.ibo-product__cols {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 48rem) {
	.ibo-product__cols {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ------------------------------------------------------------ projects */

.ibo-projectcard {
	display: grid;
	gap: 2rem;
	padding-block: 3rem;
	border-top: 1px solid var(--ibo-line);
}

@media (min-width: 60rem) {
	.ibo-projectcard {
		grid-template-columns: 16rem 1fr;
	}
}

.ibo-projectcard__logo img {
	max-height: 3rem;
	width: auto;
	margin-bottom: 1.5rem;
}

.ibo-projectcard__meta dl,
.ibo-casestudy__meta {
	margin: 0;
	font-size: 0.9375rem;
}

.ibo-projectcard__meta dt,
.ibo-casestudy__meta dt {
	font-weight: 700;
	color: var(--ibo-ink);
	margin-top: 0.75rem;
}

.ibo-projectcard__meta dd,
.ibo-casestudy__meta dd {
	margin: 0;
}

.ibo-projectcard__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.ibo-projectcard__title a {
	color: inherit;
	text-decoration: none;
}

.ibo-projectcard__title a:hover {
	color: var(--ibo-blue);
}

.ibo-quote {
	margin: 2rem 0 0;
	padding-left: 1.5rem;
	border-left: 3px solid var(--ibo-blue);
	font-style: italic;
}

.ibo-quote footer {
	font-style: normal;
	font-size: 0.875rem;
	color: var(--ibo-muted);
}

.ibo-casestudy__meta {
	display: flex;
	gap: 3rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.ibo-casestudy__section {
	margin-bottom: 2.5rem;
}

.ibo-morelinks {
	gap: 1rem;
}

.ibo-morelinks a {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 600;
	text-decoration: none;
}

.ibo-morelinks a:hover {
	color: var(--ibo-blue-light);
}

/* ------------------------------------------------------------ timeline */

/*
 * Horizontal timeline, matching the previous site: each entry is a column with
 * the year, an arrowed connector to the next entry, a title and a description.
 * The row scrolls horizontally and auto-advances (see assets/js/ibo.js), which
 * pauses on hover, on focus, and under prefers-reduced-motion.
 */

.ibo-timeline {
	margin-top: 3rem;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;          /* Firefox */
	-ms-overflow-style: none;       /* old Edge */
	scroll-behavior: auto;
}

.ibo-timeline::-webkit-scrollbar {
	display: none;
}

.ibo-timeline:focus-visible {
	outline: 3px solid var(--ibo-blue-light);
	outline-offset: 6px;
}

.ibo-timeline__track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2rem;
	width: max-content;
}

.ibo-timeline__item {
	flex: 0 0 16rem;
	max-width: 16rem;
}

.ibo-timeline__marker {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.5rem;
}

.ibo-timeline__year {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--ibo-blue-light);
	white-space: nowrap;
}

/* Connector: a rule that ends in a chevron, pointing at the next entry. */
.ibo-timeline__line {
	position: relative;
	flex: 1;
	height: 2px;
	background: var(--ibo-blue-light);
}

.ibo-timeline__line::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 0.5rem;
	height: 0.5rem;
	border-top: 2px solid var(--ibo-blue-light);
	border-right: 2px solid var(--ibo-blue-light);
	transform: translateY(-50%) rotate(45deg);
	transform-origin: center;
}

.ibo-timeline__item.is-last .ibo-timeline__line {
	display: none;
}

.ibo-timeline__title {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 1rem;
}

.ibo-timeline__desc {
	margin: 0;
	color: #c1c1c1;
	font-size: 0.9375rem;
}

/* ------------------------------------------------------------ downloads */

.ibo-downloads__link {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.25rem;
	border: 1px solid var(--ibo-line);
	text-decoration: none;
	color: var(--ibo-ink);
	transition: border-color 0.15s ease;
}

.ibo-downloads__link:hover {
	border-color: var(--ibo-blue);
}

.ibo-downloads__icon {
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	margin-top: 0.2rem;
	background: var(--ibo-blue);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z M14 2v6h6'  fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ibo-downloads__title {
	display: block;
	font-weight: 600;
}

.ibo-downloads__desc {
	display: block;
	font-size: 0.875rem;
	color: var(--ibo-body);
}

/* ------------------------------------------------------------ forms */

.ibo-form__field {
	margin-bottom: 1.25rem;
}

.ibo-form__field label {
	display: block;
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--ibo-ink);
	margin-bottom: 0.375rem;
}

.ibo-form input,
.ibo-form textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--ibo-line);
	border-radius: 2px;
	font: inherit;
	color: var(--ibo-ink);
	background: #fff;
}

.ibo-form input:focus,
.ibo-form textarea:focus {
	border-color: var(--ibo-blue);
}

.ibo-form__notice {
	padding: 0.875rem 1rem;
	margin-bottom: 1.5rem;
	border-left: 3px solid;
	font-size: 0.9375rem;
}

.ibo-form__notice--ok {
	border-color: #15803d;
	background: #f0fdf4;
	color: #14532d;
}

.ibo-form__notice--error {
	border-color: #b91c1c;
	background: #fef2f2;
	color: #7f1d1d;
}

/* Honeypot: off-screen rather than display:none, so bots still fill it. */
.ibo-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.ibo-address,
.ibo-contactlist {
	font-style: normal;
	margin-bottom: 2rem;
}

.ibo-contactlist dt {
	font-weight: 700;
	color: var(--ibo-ink);
	margin-top: 1rem;
}

.ibo-contactlist dd {
	margin: 0;
}

/* ------------------------------------------------------------ jobs */

.ibo-jobs__list {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
}

.ibo-job {
	padding: 2rem;
	border: 1px solid var(--ibo-line);
	border-bottom: 0;
}

.ibo-job:last-child {
	border-bottom: 1px solid var(--ibo-line);
}

.ibo-job--alt {
	background: var(--ibo-surface);
}

.ibo-job__title {
	font-size: 1.375rem;
	margin-bottom: 0.25rem;
}

.ibo-job__meta {
	font-size: 0.875rem;
	color: var(--ibo-body);
	margin-bottom: 1rem;
}

.ibo-job__teaser {
	margin-bottom: 1.5rem;
	font-size: 0.9375rem;
}

.ibo-job__teaser ul {
	padding-left: 1.25rem;
}

/* ------------------------------------------------------------ footer */

.ibo-footer {
	background: var(--ibo-dark);
	color: var(--wp--preset--color--neutral-400, #a3a3a3);
	padding-block: var(--ibo-rhythm) 3rem;
	margin-top: var(--ibo-rhythm);
}

.ibo-footer__top {
	display: grid;
	gap: 3rem;
}

@media (min-width: 48rem) {
	.ibo-footer__top {
		grid-template-columns: 1fr 1fr;
	}
}

.ibo-footer__cta-title {
	color: #fff;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	margin-bottom: 1.5rem;
}

.ibo-footer__heading {
	color: #fff;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.ibo-footer__links {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

.ibo-footer__links a {
	color: var(--wp--preset--color--neutral-400, #a3a3a3);
	text-decoration: none;
	font-size: 0.9375rem;
}

.ibo-footer__links a:hover {
	color: #fff;
}

.ibo-footer__address {
	font-style: normal;
	font-size: 0.9375rem;
	line-height: 1.7;
}

.ibo-footer__address a {
	color: var(--wp--preset--color--neutral-400, #a3a3a3);
}

.ibo-footer__copyright {
	margin: 3rem 0 0;
	padding-top: 2rem;
	border-top: 1px solid #262626;
	font-size: 0.8125rem;
}

/* ------------------------------------------------------------ reveal */

.ibo-reveal {
	opacity: 0;
	transform: translateY(1rem);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.ibo-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.ibo-reveal,
	.ibo-globe__arcs path {
		opacity: 1;
		transform: none;
		animation: none;
		stroke-dashoffset: 0;
		transition: none;
	}
}

/* ------------------------------------------------------------ print */

@media print {
	.ibo-header,
	.ibo-footer,
	.ibo-skip-link {
		display: none;
	}

	.ibo-section--dark {
		background: #fff;
		color: #000;
	}
}

/* ------------------------------------------------------------ imagery */

.ibo-pageheader {
	margin-top: 2rem;
}

.ibo-pageheader__img {
	width: 100%;
	height: clamp(12rem, 28vw, 22rem);
	object-fit: cover;
	object-position: center bottom;
}

.ibo-pageheader--footer {
	margin-top: var(--ibo-rhythm);
	margin-bottom: 0;
}

.ibo-figure {
	margin-top: 2rem;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.ibo-figure--wide {
	aspect-ratio: 21 / 9;
}

/* The values diagram is an SVG — never crop or stretch it. */
.ibo-figure--values {
	aspect-ratio: auto;
	object-fit: contain;
	max-width: 46rem;
	margin-inline: auto;
}

.ibo-figure-pair {
	display: flex;
	flex-direction: column;
}

.ibo-figure-pair .ibo-figure {
	margin-top: auto;
}

.ibo-hero__img {
	width: 100%;
	max-width: 34rem;
	margin-inline: auto;
	object-fit: contain;
}

/* Download icons are real SVGs from the media library. */
img.ibo-downloads__icon {
	width: 1.75rem;
	height: 1.75rem;
	flex-shrink: 0;
	margin-top: 0.15rem;
	object-fit: contain;
}

.ibo-downloads__icon--fallback {
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	background: var(--ibo-blue);
}

.ibo-projectcard__media {
	display: block;
	margin-bottom: 1.5rem;
}

/* ------------------------------------------------------------ legal pages */

.ibo-legal ol {
	padding-left: 1.5rem;
}

.ibo-legal li {
	margin-bottom: 1rem;
}

.ibo-legal h2 {
	margin-top: 2.5rem;
	font-size: 1.375rem;
	color: var(--ibo-blue);
}

.ibo-legal hr {
	margin: 3rem 0 2rem;
	border: 0;
	border-top: 1px solid var(--ibo-line);
}
