/* ==========================================================================
   Homepage hero
   ========================================================================== */

.agk-home-hero {
	position: relative;
	width: 100vw;
	max-width: none;
	height: calc(100vh - var(--agk-navbar-height, 88px));
	height: calc(100svh - var(--agk-navbar-height, 88px));
	min-height: 0;
	margin-inline: calc(50% - 50vw);
	overflow: hidden;
	background: #102b43;
	isolation: isolate;
}

.agk-home-hero__slides,
.agk-home-hero__slide {
	position: absolute;
	inset: 0;
}

.agk-home-hero__slide {
	z-index: 0;
	visibility: hidden;
	opacity: 0;
	transition: opacity .75s ease, visibility 0s linear .75s;
}

.agk-home-hero__slide.is-active {
	z-index: 1;
	visibility: visible;
	opacity: 1;
	transition: opacity .75s ease;
}

.agk-home-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.012);
	transition: transform 5.8s ease;
}

.agk-home-hero__slide.is-active .agk-home-hero__media {
	transform: scale(1);
}

.agk-home-hero__media--fallback {
	display: grid;
	place-items: center;
	background: radial-gradient(circle at 68% 50%, #315879 0, #173c59 34%, #0a2034 72%);
}

.agk-home-hero__media--fallback img {
	width: clamp(170px, 24vw, 310px);
	height: clamp(170px, 24vw, 310px);
	object-fit: contain;
	opacity: .82;
	filter: drop-shadow(0 18px 35px rgba(0, 0, 0, .22));
}

.agk-home-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(247, 244, 239, .98) 0, rgba(247, 244, 239, .9) 40%, rgba(247, 244, 239, .16) 70%);
}

.agk-home-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	width: min(1180px, calc(100% - 96px));
	height: calc(100vh - var(--agk-navbar-height, 88px));
	height: calc(100svh - var(--agk-navbar-height, 88px));
	min-height: 0;
	margin-inline: auto;
	align-items: center;
}

.agk-home-hero__copy {
	max-width: 680px;
	padding-block: 72px;
	color: #102b43;
}

.agk-home-hero__copy h1 {
	max-width: 760px;
	margin: .18em 0 .28em;
	color: #102b43;
	font-size: clamp(3rem, 6.4vw, 5.6rem);
	line-height: 1.05;
}

.agk-home-hero__slide--event .agk-home-hero__copy h1 {
	font-size: clamp(2.7rem, 5.2vw, 4.7rem);
}

.agk-home-hero__eyebrow {
	margin: 0;
	color: #58733f;
	font-size: .76rem;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.agk-home-hero__meta {
	margin: 0 0 16px;
	color: #324451;
	font-weight: 500;
}

.agk-home-hero__summary {
	max-width: 590px;
	margin: 0 0 30px;
	font-size: 1.14rem;
	line-height: 1.65;
}

.agk-home-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.agk-home-hero__button {
	display: inline-block;
	padding: 14px 24px;
	border: 2px solid #102b43 !important;
	border-radius: 3px;
	background: transparent !important;
	color: #102b43 !important;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .2s, color .2s;
}

.agk-home-hero__button:hover,
.agk-home-hero__button:focus-visible {
	background: #102b43 !important;
	color: #fff !important;
}

.agk-home-hero__slide--has-video .agk-home-hero__media {
	filter: blur(2px) brightness(.46);
	transform: scale(1.04);
}

.agk-home-hero__slide--has-video.is-active .agk-home-hero__media {
	transform: scale(1.025);
}

.agk-home-hero__slide--has-video .agk-home-hero__shade {
	background: linear-gradient(90deg, rgba(3, 14, 22, .94) 0, rgba(3, 14, 22, .76) 48%, rgba(3, 14, 22, .36) 78%);
}

.agk-home-hero__slide--has-video .agk-home-hero__copy,
.agk-home-hero__slide--has-video .agk-home-hero__copy h1,
.agk-home-hero__slide--has-video .agk-home-hero__meta {
	color: #fff;
}

.agk-home-hero__slide--has-video .agk-home-hero__button {
	border-color: #fff !important;
	color: #fff !important;
}

.agk-home-hero__slide--has-video .agk-home-hero__button:hover,
.agk-home-hero__slide--has-video .agk-home-hero__button:focus-visible {
	background: #fff !important;
	color: #102b43 !important;
}

.agk-home-hero__arrow {
	position: absolute;
	z-index: 3;
	top: 50%;
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(16, 43, 67, .25);
	border-radius: 50%;
	background: rgba(255, 255, 255, .9);
	color: #102b43;
	line-height: 0;
	box-shadow: 0 7px 20px rgba(16, 43, 67, .16);
	cursor: pointer;
	transform: translateY(-50%);
	transition: background .2s, transform .2s;
}

.agk-home-hero__arrow svg {
	display: block;
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.agk-home-hero__arrow:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.06);
}

.agk-home-hero__arrow:focus-visible {
	outline: 3px solid #a27c45;
	outline-offset: 3px;
}

.agk-home-hero__arrow--previous {
	left: 22px;
}

.agk-home-hero__arrow--next {
	right: 22px;
}

/* ========================================================================== 
   Content filters
   ========================================================================== */
.agk-content-filters { display: grid; grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(145px, .7fr)) auto; gap: 14px; align-items: end; margin: 34px 0 30px; padding: 22px; border: 1px solid #dedbd4; border-radius: 9px; background: #f7f4ef; }
.agk-content-filters label { display: grid; gap: 7px; min-width: 0; color: #102b43; font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.agk-content-filters input,.agk-content-filters select { box-sizing: border-box; width: 100%; min-height: 48px; padding: 10px 12px; border: 1px solid #c9c6bf; border-radius: 4px; background: #fff; color: #102b43; font-family: inherit; font-size: .95rem; font-weight: 400; line-height: 1.3; text-transform: none; }
.agk-content-filters input:focus,.agk-content-filters select:focus { border-color: #315675; outline: 2px solid rgba(49, 86, 117, .2); outline-offset: 1px; }
.agk-content-filters__actions { display: flex; align-items: center; gap: 12px; }
.agk-content-filters button { min-height: 48px; padding: 11px 20px; border: 1px solid #102b43; border-radius: 4px; background: #102b43; color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.agk-content-filters button:hover { background: #315675; }
.agk-content-filters__actions a { color: #315675; font-size: .78rem; font-weight: 600; text-decoration: none; }
.agk-content-filters__actions a:hover { color: #a27c45; }
.agk-offer-filters { grid-template-columns: minmax(260px, 1fr); }
.agk-offer-filters__types { display: flex; flex-wrap: wrap; gap: 10px; }
.agk-offer-filters__types button { min-height: 42px; background: transparent; color: #102b43; }
.agk-offer-filters__types button:hover,
.agk-offer-filters__types button.is-active { background: #102b43; color: #fff; }
.agk-content-empty { grid-column: 1 / -1; margin: 0; padding: 28px; border: 1px solid #dedbd4; border-radius: 8px; background: #fff; text-align: center; }
/* ==========================================================================
   Events
   ========================================================================== */

.events-page > .wp-block-shortcode {
	margin-top: 40px;
}

.agk-event-list {
	display: grid;
	gap: 20px;
	margin-top: 20px !important;
}

.agk-event {
	position: relative;
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	padding: 18px;
	border: 1px solid #dedbd4;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 5px 18px rgba(16, 43, 67, .05);
	transition: border-color .2s, box-shadow .2s, transform .2s;
}

.agk-event__date { grid-column: 1; grid-row: 1; align-self: stretch; }
.agk-event time { display: flex; width: 100%; height: 100%; min-height: 76px; flex-direction: column; align-items: center; justify-content: center; padding: 10px; border-radius: 6px; background: #f2eee7; color: #102b43; text-align: center; }
.agk-event time b { display: block; font-size: 1.8rem; font-weight: 500; line-height: 1; }
.agk-event time span { display: block; margin-top: 7px; font-size: .68rem; font-weight: 500; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase; }
.agk-event time em { display: block; margin-top: 2px; font-size: .72rem; font-weight: 500; line-height: 1.2; font-style: normal; letter-spacing: .03em; }
.agk-event__content { grid-column: 2; grid-row: 1; align-self: center; min-width: 0; }
.agk-event__content h3 { margin: 0; color: #102b43; font-size: 1.15rem; }
.agk-event__content p { display: inline-block; margin: 9px 18px 0 0; color: #5c6670; font-size: .82rem; line-height: 1.4; }
.agk-event__media { display: none; min-width: 0; margin: 0; overflow: hidden; border-radius: 6px; background: #f7f4ef; }
.agk-event__image { display: block; width: 100%; height: 100%; object-fit: contain; }
.agk-event__link-wrap { position: absolute; z-index: 2; inset: 0; }
.agk-event__link { display: block; width: 100%; height: 100%; border-radius: 8px; }
.agk-event__link:focus-visible { outline: 3px solid #a27c45; outline-offset: 3px; }
.agk-event:not(.agk-event--static):hover { border-color: #58733f; box-shadow: 0 10px 26px rgba(16, 43, 67, .12); transform: translateY(-2px); }
.agk-event__summary { display: -webkit-box !important; overflow: hidden; width: 100%; margin: 10px 0 0 !important; -webkit-box-orient: vertical; -webkit-line-clamp: 4; color: #4e5962 !important; line-height: 1.5 !important; }
.events-page .agk-event { grid-template-columns: 92px 160px minmax(0, 1fr); gap: 20px; padding: 18px; }
.events-page .agk-event__date { grid-column: 1; grid-row: 1; }
.events-page .agk-event__media { display: block; grid-column: 2; grid-row: 1; align-self: stretch; height: 120px; }
.events-page .agk-event__content { grid-column: 3; grid-row: 1; align-self: center; }

.event-single {
	background: #fffdf9;
}

.event-back {
	display: inline-block;
	margin-bottom: 30px;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.event-single .wp-block-post-title {
	margin-top: 0;
}

.event-single__image {
	margin: 32px 0 30px;
}

.event-single__image img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
	border-radius: 10px;
}

.agk-event-details {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 0 0 40px;
	overflow: hidden;
	border: 1px solid #dedbd4;
	border-radius: 8px;
	background: #dedbd4;
}

.agk-event-details > span {
	padding: 20px;
	background: #f7f4ef;
}

.agk-event-details small { display: block; margin-top: 6px; color: #5c6670; font-size: .9rem; }

.agk-event-details strong {
	display: block;
	margin-bottom: 5px;
	color: #102b43;
	font-size: .7rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.event-single .wp-block-post-content {
	font-size: 1.08rem;
	line-height: 1.75;
}

.agk-event-offer-reference { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: -18px 0 40px; padding: 18px 20px; border: 1px solid #dedbd4; border-radius: 8px; background: #f7f4ef; }
.agk-event-offer-reference > span { color: #5c6670; font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.agk-event-offer-reference a { color: #102b43; font-size: 1.2rem; text-decoration: none; }
.agk-event-offer-reference a:hover { color: #a27c45; }
/* ==========================================================================
   Offers
   ========================================================================== */

.offers-page,
.wp-site-blocks > .offers-page {
	width: min(1180px, calc(100% - 48px)) !important;
	max-width: 1180px !important;
	margin-inline: auto !important;
}
.offers-page > .wp-block-shortcode { width: 100%; max-width: none !important; margin-top: 42px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.offer-card { position: relative; display: flex; min-width: 0; aspect-ratio: 1 / 1; overflow: visible; flex-direction: column; border: 1px solid #dedbd4; border-radius: 9px; background: #fff; box-shadow: 0 8px 24px rgba(16, 43, 67, .07); transition: border-color .2s, box-shadow .2s, transform .2s; }
.offer-card__media { position: relative; display: flex; height: 44%; min-height: 0; flex: 0 0 44%; align-items: center; justify-content: center; margin: 0; overflow: hidden; padding: 0; border-radius: 8px 8px 0 0; background: #f7f4ef; }
.offer-card__media > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.offer-card__body { display: flex; min-height: 0; flex: 1; flex-direction: column; padding: 22px 24px; }
.offer-card h2 { margin: 0 0 9px; color: #102b43; font-size: 1.5rem; font-weight: 600; line-height: 1.25; }
.offer-card p { display: -webkit-box; overflow: hidden; margin: 0 0 16px; -webkit-box-orient: vertical; -webkit-line-clamp: 4; color: #4e5962; font-size: .98rem; line-height: 1.55; }
.offer-card__more { margin-top: auto; color: #102b43; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.offer-card__link-wrap { position: absolute; z-index: 2; inset: 0; }
.offer-card__link { display: block; width: 100%; height: 100%; border-radius: 9px; }
.offer-card:hover { border-color: #58733f; box-shadow: 0 14px 34px rgba(16, 43, 67, .14); transform: translateY(-3px); }
.offer-card__link:focus-visible { outline: 3px solid #a27c45; outline-offset: -4px; }
.offer-empty {
	grid-column: 1 / -1;
	padding: 35px;
	border: 1px solid #dedbd4;
	border-radius: 8px;
	background: #f7f4ef;
	text-align: center;
}

.offer-single {
	background: #fffdf9;
}

.offer-back {
	display: inline-block;
	margin-bottom: 30px;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.offer-single .wp-block-post-title {
	margin-top: 0;
}

.offer-single__image {
	width: min(100%, 760px);
	margin: 32px auto 42px;
	text-align: center;
}

.offer-single__image img {
	display: block;
	width: auto !important;
	max-width: 100%;
	max-height: 500px;
	margin-inline: auto;
	object-fit: contain;
	border-radius: 10px;
}

.offer-single .wp-block-post-content {
	font-size: 1.08rem;
	line-height: 1.75;
}

/* ==========================================================================
   Media gallery
   ========================================================================== */

.media-page {
	background: #fffdf9;
}

.media-shell {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.media-hero {
	display: flex;
	min-height: 330px;
	align-items: center;
	background:
		linear-gradient(90deg, rgba(7, 27, 39, .78), rgba(7, 27, 39, .28)),
		url("../media-hero.webp") center / cover;
	color: #fff;
}

.media-hero h1 {
	margin: 0;
	color: #fff;
	font-size: 4rem;
}

.media-hero p {
	font-size: 1.1rem;
}

.media-hero .media-type-tabs {
	display: flex;
	gap: 38px;
	margin-top: 35px;
}

.media-type-tab {
	appearance: none;
	padding: 0 0 10px;
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	color: #fff;
	font-family: inherit;
	font-size: .75rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .1em;
	text-transform: uppercase;
	cursor: pointer;
	opacity: .7;
}

.media-type-tab:hover,
.media-type-tab:focus-visible,
.media-type-tab.is-active {
	border-bottom-color: #fff;
	color: #fff;
	opacity: 1;
}

.media-type-tab:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 5px;
}

.media-gallery {
	padding-block: 38px 65px;
}

.media-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	margin-bottom: 30px;
}

.media-filter {
	appearance: none;
	padding: 10px 14px;
	border: 1px solid transparent;
	border-radius: 3px;
	background: transparent;
	color: #102b43;
	font-family: inherit;
	font-size: .68rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s, color .2s, border-color .2s;
}

.media-filter:hover {
	border-color: #102b43;
}

.media-filter.is-active {
	border-color: #102b43;
	background: #102b43;
	color: #fff;
}

.media-filter:focus-visible {
	outline: 3px solid #a27c45;
	outline-offset: 2px;
}

.media-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 245px;
	gap: 9px;
}

.media-grid figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 0;
    background: transparent;
}

.media-grid .media-wide {
	grid-column: span 2;
}

.media-grid img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform .3s;
}

.media-grid figure:hover img {
	transform: scale(1.025);
}

.media-grid figcaption {
	position: absolute;
	inset: auto 0 0;
	padding: 28px 15px 12px;
	background: linear-gradient(transparent, rgba(7, 27, 39, .85));
	color: #fff;
	font-size: .8rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s;
}

.media-grid figure:hover figcaption {
	opacity: 1;
}

.media-grid > [hidden],
.media-video-modal[hidden],
.media-photo-modal[hidden] {
	display: none !important;
}

.media-photo-open,
.media-video-open {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: #102b43;
}

.media-photo-open {
	cursor: zoom-in;
}

.media-video-open {
	position: relative;
	cursor: pointer;
}

.media-photo-open img,
.media-video-open img {
	display: block;
}

.media-photo-open:focus-visible,
.media-video-open:focus-visible {
	outline: 4px solid #a27c45;
	outline-offset: -4px;
}

.media-video-play {
	position: absolute;
	inset: 50% auto auto 50%;
	display: grid;
	width: 62px;
	height: 62px;
	place-items: center;
	padding-left: 4px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: rgba(16, 43, 67, .78);
	color: #fff;
	font-size: 1.25rem;
	transform: translate(-50%, -50%);
	transition: background .2s, transform .2s;
}

.media-video-open:hover .media-video-play,
.media-video-open:focus-visible .media-video-play {
	background: #102b43;
	transform: translate(-50%, -50%) scale(1.06);
}

.media-grid img[src$="/favicon.svg"] {
	padding: clamp(22px, 7%, 52px);
	background: #f7f4ef;
	object-fit: contain !important;
	filter: none;
}

.media-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 45px 25px;
	border: 1px solid #dedbd4;
	border-radius: 6px;
	background: #f7f4ef;
	text-align: center;
}

/* ==========================================================================
   Media modals
   ========================================================================== */

.media-video-modal,
.media-photo-modal {
	position: fixed;
	z-index: 100000;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
}

.media-video-modal__backdrop,
.media-photo-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 19, 29, .9);
}

.media-video-modal__dialog,
.media-photo-modal__dialog {
	position: relative;
	z-index: 1;
	padding: 18px;
	border-radius: 7px;
	background: #071b27;
	color: #fff;
	box-shadow: 0 25px 75px rgba(0, 0, 0, .5);
}

.media-video-modal__dialog {
	width: min(960px, 100%);
}

.media-photo-modal__dialog {
	width: min(1200px, calc(100vw - 48px));
}

.media-video-modal__dialog video {
	display: block;
	width: 100%;
	max-height: 72vh;
	background: #000;
}

.media-photo-modal__dialog img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 78vh;
	margin: auto;
	object-fit: contain;
	background: #06141d;
}

.media-video-modal__dialog h2,
.media-photo-modal__dialog h2 {
	margin: 16px 38px 2px 2px;
	color: #fff;
	font-size: 1.25rem;
}

.media-video-modal__close,
.media-photo-modal__close {
	position: absolute;
	z-index: 2;
	top: -16px;
	right: -16px;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #102b43;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
}

.media-modal__arrow {
	position: absolute;
	z-index: 3;
	top: 50%;
	display: block !important;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 2px solid #fff;
	border-radius: 50%;
	background: rgba(16, 43, 67, .9);
	color: #fff;
	line-height: 0;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background .2s, transform .2s;
}

.media-modal__arrow svg {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 24px;
	height: 24px;
	margin: 0;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
	transform: translate(-50%, -50%);
}

.media-modal__arrow--previous {
	left: -70px;
}

.media-modal__arrow--next {
	right: -70px;
}

.media-modal__arrow:hover,
.media-modal__arrow:focus-visible {
	background: #fff;
	color: #102b43;
	transform: translateY(-50%) scale(1.06);
}

.media-modal__arrow:focus-visible {
	outline: 3px solid #a27c45;
	outline-offset: 3px;
}

.media-modal__arrow[hidden] {
	display: none !important;
}

.media-modal-open {
	overflow: hidden;
}

/* ==========================================================================
   Beliefs and history
   ========================================================================== */

.history-timeline {
	position: relative;
	display: grid;
	gap: 18px;
}

.history-timeline::before {
	content: "";
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 148px;
	width: 2px;
	background: #bfd0df;
}

.history-step {
	position: relative;
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) 260px;
	gap: 46px;
	align-items: center;
	min-height: 150px;
}

.history-step--no-image {
	grid-template-columns: 120px minmax(0, 1fr);
}

.history-step::before {
	content: "";
	position: absolute;
	z-index: 1;
	left: 142px;
	width: 14px;
	height: 14px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #17497c;
	box-shadow: 0 0 0 1px #17497c;
}

.history-step__label {
	color: #17497c;
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: .01em;
	text-align: right;
}

.history-step__copy h3 {
	margin: 0 0 7px;
	font-family: var(--wp--preset--font-family--sans, Manrope, Arial, sans-serif);
	font-size: 1.1rem;
	font-weight: 700;
}

.history-step__copy p {
	margin: 0;
	line-height: 1.6;
}

.history-step img {
	display: block;
	width: 100%;
	height: 135px;
	object-fit: cover;
	border-radius: 7px;
}

.belief-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.belief-grid .belief-card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: center;
	padding: 30px 24px;
	border: 1px solid #d9e0e6;
	border-radius: 7px;
	background: #fff;
	text-align: center;
	transition: border-color .2s, box-shadow .2s, transform .2s;
}

.belief-card__visual {
	display: grid;
	width: 76px;
	height: 76px;
	place-items: center;
	margin: 0 auto 18px;
	overflow: hidden;
	border-radius: 50%;
	background: #eaf1fa;
	color: #17497c;
	font-size: 1.9rem;
}

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

.belief-card__visual:not(.belief-card__visual--image) img {
	padding: 13px;
	object-fit: contain;
}

.belief-grid h3 {
	margin: 0 0 12px;
	font-size: 1.35rem;
}

.belief-grid p {
	margin: 0 0 18px;
	line-height: 1.65;
}

.belief-card__more {
	margin-top: auto;
	color: #17497c;
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.belief-card__link {
	position: absolute;
	z-index: 2;
	inset: 0;
	border-radius: 7px;
}

.belief-card:hover {
	border-color: #17497c;
	box-shadow: 0 12px 28px rgba(16, 43, 67, .11);
	transform: translateY(-3px);
}

.belief-card__link:focus-visible {
	outline: 3px solid #a27c45;
	outline-offset: -4px;
}

.belief-single {
	background: #fffdf9;
}

.belief-single > .wp-block-group {
	width: min(1180px, calc(100% - 48px));
	max-width: 1180px !important;
}

.belief-single .wp-block-post-title,
.belief-single > .wp-block-group > .wp-block-shortcode,
.belief-single .belief-single__image,
.belief-single .wp-block-post-content {
	width: min(700px, 100%);
	max-width: 700px !important;
	margin-right: auto !important;
	margin-left: 0 !important;
}

.belief-single .wp-block-post-title {
	font-size: clamp(3rem, 5vw, 4.5rem) !important;
	line-height: 1.06;
}

.belief-single .wp-block-post-content > * {
	max-width: none !important;
}

.belief-back {
	display: inline-block;
	margin-bottom: 30px;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.belief-single__image {
	margin: 32px 0 42px;
}

.belief-single__image img {
	width: 100%;
	max-height: 580px;
	object-fit: cover;
	border-radius: 10px;
}

.belief-single__summary {
	max-width: 900px;
	margin: 28px 0 0;
	color: #526171;
	font-size: clamp(1.25rem, 2.5vw, 2rem);
	line-height: 1.55;
}

.belief-single .wp-block-post-content {
	font-size: 1.08rem;
	line-height: 1.75;
}

/* ==========================================================================
   Neutral sermon fallback
   ========================================================================== */

.agk-content-sermon-fallback {
	margin-top: var(--wp--preset--spacing--30, 1.25rem);
}

.agk-content-sermon-fallback .agk-latest-sermon__visual {
	position: relative;
	display: block;
	min-height: 210px;
	overflow: hidden;
	border-radius: 6px;
	background: #102b43;
}

.agk-content-sermon-fallback .agk-latest-sermon__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(16, 43, 67, .16);
}

.agk-content-sermon-fallback .agk-latest-sermon__visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: clamp(22px, 7%, 52px);
	background: #f7f4ef;
	object-fit: contain;
}

.agk-content-sermon-fallback .agk-latest-sermon__play {
	position: absolute;
	z-index: 1;
	inset: 50% auto auto 50%;
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .9);
	border-radius: 50%;
	background: rgba(16, 43, 67, .72);
	color: #fff;
	transform: translate(-50%, -50%);
}

.agk-content-sermon-fallback > p {
	margin: var(--wp--preset--spacing--20, .75rem) 0 0;
}

.agk-content-sermon-heading {
	margin: 0 0 10px;
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1350px) {
	.media-modal__arrow--previous {
		left: 12px;
	}

	.media-modal__arrow--next {
		right: 12px;
	}
}

@media (max-width: 850px) {
	.offer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.history-step {
		grid-template-columns: 100px minmax(0, 1fr) 200px;
		gap: 35px;
	}

	.history-step--no-image {
		grid-template-columns: 100px minmax(0, 1fr);
	}

	.history-timeline::before {
		left: 118px;
	}

	.history-step::before {
		left: 112px;
	}
}

@media (max-width: 800px) {
	.media-shell {
		width: min(100% - 30px, 1180px);
	}

	.media-grid {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: 210px;
	}

	.media-grid .media-wide {
		grid-column: span 2;
	}
}

@media (max-width: 781px) {
	.agk-home-hero__inner {
		width: min(100% - 54px, 1180px);
	}

	.agk-home-hero__shade {
		background: linear-gradient(90deg, rgba(247, 244, 239, .96), rgba(247, 244, 239, .76) 68%, rgba(247, 244, 239, .28));
	}

	.agk-home-hero__slide--has-video .agk-home-hero__shade {
		background: rgba(3, 14, 22, .74);
	}

	.agk-home-hero__copy {
		padding-inline: 34px;
	}

	.agk-home-hero__arrow {
		width: 42px;
		height: 42px;
	}

	.agk-home-hero__arrow svg {
		width: 22px;
		height: 22px;
	}

	.agk-home-hero__arrow--previous {
		left: 7px;
	}

	.agk-home-hero__arrow--next {
		right: 7px;
	}
}

@media (max-width: 760px) {
	.events-page .agk-event {
		grid-template-columns: 74px 110px minmax(0, 1fr);
		gap: 14px;
		padding: 14px;
	}

	.events-page .agk-event__media {
		height: 100px;
	}

	.agk-event-details {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.belief-grid {
		grid-template-columns: 1fr;
	}

	.history-timeline::before {
		left: 7px;
	}

	.history-step,
	.history-step--no-image {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 0 0 24px 30px;
	}

	.history-step::before {
		top: 8px;
		left: 1px;
	}

	.history-step__label {
		text-align: left;
	}

	.history-step img {
		height: 190px;
	}
}

@media (max-width: 560px) {
	.offer-grid {
		grid-template-columns: 1fr;
	}

	.offer-card__body {
		padding: 20px;
	}

	.offer-single__image {
		margin-block: 24px 32px;
	}
}

@media (max-width: 520px) {
	.agk-event {
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 14px;
		padding: 14px;
	}

	.agk-event time {
		min-height: 68px;
		padding: 8px;
	}

	.agk-event time b {
		font-size: 1.55rem;
	}

	.agk-home-hero__inner {
		width: 100%;
	}

	.agk-home-hero__copy {
		padding: 64px 52px;
	}

	.agk-home-hero__copy h1,
	.agk-home-hero__slide--event .agk-home-hero__copy h1 {
		font-size: clamp(2.25rem, 12vw, 3.4rem);
	}

	.agk-home-hero__meta {
		font-size: .88rem;
	}

	.agk-home-hero__summary {
		font-size: 1rem;
	}

	.agk-home-hero__arrow {
		width: 38px;
		height: 38px;
	}

	.agk-home-hero__arrow svg {
		width: 20px;
		height: 20px;
	}

	.agk-home-hero__arrow--previous {
		left: 5px;
	}

	.agk-home-hero__arrow--next {
		right: 5px;
	}

	.media-hero h1 {
		font-size: 3rem;
	}

	.media-hero .media-type-tabs {
		gap: 25px;
	}

	.media-filters {
		gap: 8px;
	}

	.media-filter {
		padding: 9px 10px;
	}

	.media-grid {
		display: block;
	}

	.media-grid figure {
		height: 230px;
		margin-bottom: 9px;
	}

	.media-video-modal,
	.media-photo-modal {
		padding: 12px;
	}

	.media-video-modal__dialog,
	.media-photo-modal__dialog {
		padding: 9px;
	}

	.media-video-modal__close,
	.media-photo-modal__close {
		top: -8px;
		right: -8px;
	}

	.media-modal__arrow {
		width: 42px;
		height: 42px;
	}

	.media-modal__arrow--previous {
		left: 5px;
	}

	.media-modal__arrow--next {
		right: 5px;
	}
}

@media (max-width: 480px) {
	.events-page .agk-event {
		grid-template-columns: 64px 82px minmax(0, 1fr);
		gap: 10px;
		padding: 12px;
	}

	.events-page .agk-event__media {
		height: 86px;
	}

	.events-page .agk-event__summary {
		-webkit-line-clamp: 3;
	}
}

@media (max-height: 650px) {
	.agk-home-hero__copy {
		padding-block: 28px;
	}

	.agk-home-hero__copy h1,
	.agk-home-hero__slide--event .agk-home-hero__copy h1 {
		font-size: clamp(2rem, 8vh, 3.5rem);
	}

	.agk-home-hero__summary {
		margin-bottom: 18px;
		font-size: 1rem;
		line-height: 1.45;
	}

	.agk-home-hero__button {
		padding: 11px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.agk-home-hero__slide,
	.agk-home-hero__media {
		transition: none;
	}
}


/* ==========================================================================
   Previous/next navigation
   ========================================================================== */

.post-navigation,
.agk-entry-navigation { position: relative; display: grid; width: 100%; max-width: none; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; align-items: center; margin: 42px 0 0 !important; padding: 2.25rem 0; border-top: 1px solid #ddd8d0; }
.post-navigation__link,
.agk-entry-navigation__link { display: flex; min-width: 0; align-items: center; gap: 1rem; color: inherit; text-decoration: none; }
.post-navigation__link--prev { grid-column: 1; }
.post-navigation__link--next { grid-column: 2; justify-content: flex-end; text-align: right; }
.post-navigation__link--prev + .post-navigation__link--next { padding-left: 3rem; border-left: 1px solid #ddd8d0; }
.post-navigation__text { min-width: 0; }
.post-navigation__label { display: block; margin-bottom: .35rem; color: #315675; font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.post-navigation__title { display: block; font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 500; line-height: 1.3; }
.post-navigation__arrow { display: grid; width: 4rem; height: 4rem; flex: 0 0 4rem; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #3d6688, #274c6b); box-shadow: 0 5px 14px rgba(16, 43, 67, .14); color: #fff; line-height: 1; transition: transform .2s ease, background-color .2s ease; }
.post-navigation__arrow svg { display: block; width: 2rem; height: 2rem; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.post-navigation__link:hover .post-navigation__arrow { background: linear-gradient(145deg, #315b7d, #203f59); }
.post-navigation__link--prev:hover .post-navigation__arrow { transform: translateX(-4px); }
.post-navigation__link--next:hover .post-navigation__arrow { transform: translateX(4px); }
.post-navigation__link:focus-visible { outline: 3px solid #a27c45; outline-offset: 6px; border-radius: 2px; }
@media (max-width: 650px) {
	.post-navigation,
	.agk-entry-navigation { grid-template-columns: 1fr; gap: 1.5rem; }
	.post-navigation__link--prev,
	.post-navigation__link--next { grid-column: 1; }
	.post-navigation__link--prev + .post-navigation__link--next { padding-top: 1.5rem; padding-left: 0; border-top: 1px solid #ddd8d0; border-left: 0; }
}

/* Linked events on single offer pages */
.agk-offer-events { margin-top: 46px; padding-top: 38px; border-top: 1px solid #ddd8d0; }
.agk-offer-events h2 { margin: 0 0 24px; color: #102b43; }
.agk-offer-events .agk-event-list { margin-top: 0 !important; }
.agk-offer-events__all { margin: 22px 0 0; }
.agk-offer-events__all a { color: #102b43; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.agk-offer-events__all a:hover { color: #a27c45; }

@media (max-width: 900px) {
  .agk-content-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .agk-content-filters__search,.agk-content-filters__actions { grid-column: 1 / -1; }
  .agk-offer-filters { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .agk-content-filters { grid-template-columns: 1fr; padding: 18px; }
  .agk-content-filters > * { grid-column: 1 !important; }
  .agk-content-filters__actions { flex-wrap: wrap; }
  .agk-event-offer-reference { align-items: flex-start; flex-direction: column; }
}
/* Hope Center marker for offers explicitly marked as Hope offers. */
.offer-card__hope-badge {
	position: absolute;
	top: -24px;
	right: -22px;
	z-index: 4;
	width: 108px;
	height: 92px;
	overflow: visible;
	border: 0;
	background: transparent;
	filter: drop-shadow(0 6px 8px rgba(16, 43, 67, .24));
	pointer-events: none;
	transform: rotate(-8deg);
}
.offer-card__hope-badge img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.offer-card[hidden] { display: none !important; }

@media (max-width: 560px) {
	.offer-card__hope-badge { top: -17px; right: -13px; width: 82px; height: 70px; }
}
/* Masonry gallery and thumbnail lightbox */
.media-grid {
	display: block;
	column-count: 3;
	column-gap: 12px;
}

.media-grid figure,
.media-grid .media-wide {
	display: inline-block;
	width: 100%;
	height: auto !important;
	margin: 0 0 12px;
	break-inside: avoid;
	column-span: none;
	overflow: hidden;
	border: 0;
	border-radius: 8px;
	background: transparent;
}

.media-photo-open,
.media-video-open {
	height: auto;
	overflow: hidden;
	border-radius: 8px;
	background: transparent;
}

.media-grid img,
.media-photo-open img,
.media-video-open img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: initial;
}

.media-photo-modal {
	padding: clamp(18px, 4vw, 54px);
}

.media-photo-modal__backdrop {
	background: rgba(5, 19, 29, .82);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.media-photo-modal__dialog {
	display: grid;
	width: min(1180px, calc(100vw - 150px));
	max-height: calc(100vh - 42px);
	place-items: center;
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.media-photo-modal__dialog > img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: min(70vh, 760px);
	border-radius: 8px;
	background: transparent;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .34);
	object-fit: contain;
}

.media-photo-modal__close {
	position: fixed;
	top: clamp(18px, 4vw, 54px);
	right: clamp(18px, 5vw, 74px);
	background: rgba(16, 43, 67, .5);
}

.media-photo-modal .media-modal__arrow {
	position: fixed;
	top: 50%;
	background: rgba(16, 43, 67, .62);
}

.media-photo-modal .media-modal__arrow--previous {
	left: clamp(18px, 5vw, 82px);
}

.media-photo-modal .media-modal__arrow--next {
	right: clamp(18px, 5vw, 82px);
}

.media-photo-modal__thumbnails {
	display: flex;
	width: min(780px, 80vw);
	gap: 12px;
	justify-content: flex-start;
	margin-top: 10px;
	padding: 2px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	cursor: default;
	user-select: none;
}

.media-photo-modal__thumbnails::-webkit-scrollbar {
	display: none;
}

.media-photo-modal__thumbnails.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.media-photo-modal__thumbnails.is-gliding {
	scroll-behavior: auto;
}

.media-photo-modal__thumbnail {
	flex: 0 0 112px;
	width: 112px;
	height: 72px;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 7px;
	background: rgba(255, 255, 255, .12);
	opacity: .72;
	cursor: pointer;
}

.media-photo-modal__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
}

.media-photo-modal__thumbnails .media-photo-modal__thumbnail {
	cursor: pointer;
}

.media-photo-modal__thumbnails.is-dragging,
.media-photo-modal__thumbnails.is-dragging .media-photo-modal__thumbnail {
	cursor: grabbing;
}

.media-photo-modal__thumbnail.is-active {
	border-color: #fff;
	opacity: 1;
}

.media-photo-modal__counter {
	margin-top: 12px;
	color: rgba(255, 255, 255, .82);
	font: 600 .78rem/1.2 var(--wp--preset--font-family--sans, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	letter-spacing: .08em;
	text-align: center;
}

@media (max-width: 800px) {
	.media-grid {
		column-count: 2;
	}

	.media-photo-modal__dialog {
		width: min(100%, calc(100vw - 88px));
	}

	.media-photo-modal__thumbnail {
		flex-basis: 88px;
		width: 88px;
		height: 58px;
	}
}

@media (max-width: 560px) {
	.media-grid {
		column-count: 1;
	}

	.media-photo-modal {
		padding: 52px 12px 18px;
	}

	.media-photo-modal__dialog {
		width: 100%;
		max-height: calc(100vh - 70px);
	}

	.media-photo-modal__dialog > img {
		max-height: 62vh;
	}

	.media-photo-modal__thumbnails {
		width: calc(100vw - 24px);
		justify-content: flex-start;
	}

	.media-photo-modal .media-modal__arrow {
		width: 42px;
		height: 42px;
	}

	.media-photo-modal .media-modal__arrow--previous {
		left: 8px;
	}

	.media-photo-modal .media-modal__arrow--next {
		right: 8px;
	}
}
/* Offers reference layout */
.offers-page {
	position: relative;
	isolation: isolate;
}

.offers-page::before {
	position: absolute;
	z-index: -1;
	top: 0;
	right: -45px;
	width: 270px;
	height: 340px;
	background: url("../favicon.svg") center / contain no-repeat;
	content: "";
	opacity: .055;
	pointer-events: none;
}

.offers-page > h1 {
	position: relative;
	margin-bottom: 28px;
}

.offers-page > h1::after {
	position: absolute;
	bottom: -14px;
	left: 0;
	width: 74px;
	height: 3px;
	background: #1472c4;
	content: "";
}

.agk-offer-browser {
	margin-top: 42px;
}

.agk-offer-filters {
	display: grid;
	grid-template-columns: minmax(300px, 1fr) auto;
	gap: 28px;
	align-items: end;
	padding: 34px 36px;
	border: 1px solid #cfe0f0;
	border-radius: 12px;
	background: rgba(238, 246, 253, .76);
	box-shadow: 0 10px 30px rgba(16, 69, 113, .06);
}

.agk-offer-filters .agk-content-filters__search {
	position: relative;
}

.agk-offer-filters .agk-content-filters__search > span {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.agk-offer-filters .agk-content-filters__search::before {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 20px;
	width: 16px;
	height: 16px;
	border: 3px solid #7f98b2;
	border-radius: 50%;
	content: "";
	transform: translateY(-56%);
	pointer-events: none;
}

.agk-offer-filters .agk-content-filters__search::after {
	position: absolute;
	z-index: 1;
	top: calc(50% + 8px);
	left: 35px;
	width: 9px;
	height: 3px;
	border-radius: 2px;
	background: #7f98b2;
	content: "";
	transform: rotate(45deg);
	transform-origin: left center;
	pointer-events: none;
}

.agk-offer-filters input[type="search"] {
	height: 58px;
	padding: 0 20px 0 58px;
	border: 1px solid #b8c7d5;
	border-radius: 7px;
	background: rgba(255, 255, 255, .92);
	font-size: 1rem;
}

.agk-offer-filters__types {
	display: grid;
	grid-template-columns: 188px 252px;
	gap: 16px;
}

.agk-offer-filters__types button {
	height: 58px;
	padding: 10px 20px;
	border: 1px solid #176cb7;
	border-radius: 7px;
	background: rgba(255, 255, 255, .68);
	color: #123354;
	font-size: .95rem;
	letter-spacing: 0;
	text-transform: none;
}

.agk-offer-filters__types button:first-child {
	font-weight: 600;
}

.agk-offer-filters__types button:last-child {
	position: relative;
	padding-left: 62px;
}

.agk-offer-filters__types button:last-child::before {
	position: absolute;
	top: 50%;
	left: 22px;
	width: 31px;
	height: 31px;
	background: url("../hope-center-blue.png") center / contain no-repeat;
	content: "";
	transform: translateY(-50%);
}

.agk-offer-filters__types button:hover,
.agk-offer-filters__types button.is-active {
	border-color: #176cb7;
	background: linear-gradient(135deg, #2d80cb, #07569b);
	color: #fff;
}

.agk-offer-filters__types button:last-child.is-active::before,
.agk-offer-filters__types button:last-child:hover::before {
	filter: brightness(0) invert(1);
}

.offer-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	margin-top: 38px;
}

.offer-card {
	min-height: 450px;
	aspect-ratio: auto;
	overflow: hidden;
	border-color: #ccd8e2;
	border-radius: 10px;
	box-shadow: 0 10px 28px rgba(16, 43, 67, .1);
}

.offer-card__media {
	height: 250px;
	flex: 0 0 250px;
	border-radius: 9px 9px 0 0;
}

.offer-card__body {
	padding: 25px 28px 30px;
}

.offer-card h2 {
	font-size: 1.75rem;
}

.offer-card__more {
	width: max-content;
	padding-bottom: 5px;
	border-bottom: 2px solid #1472c4;
}

.offer-card__hope-badge {
	top: 0;
	right: 22px;
	display: flex;
	width: 112px;
	height: 142px;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 13px 9px 20px;
	clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
	border: 0;
	background: rgba(255, 255, 255, .97);
	filter: drop-shadow(0 5px 10px rgba(16, 43, 67, .18));
	transform: none;
}

.offer-card__hope-badge img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.offer-card__hope-badge strong {
	margin-top: 3px;
	color: #0b4f8d;
	font-size: 1.25rem;
	line-height: 1;
}

.offer-card__hope-badge small {
	margin-top: 3px;
	color: #102b43;
	font-size: .7rem;
	line-height: 1;
}

@media (max-width: 980px) {
	.agk-offer-filters {
		grid-template-columns: 1fr;
	}

	.agk-offer-filters__types {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.offers-page::before {
		right: -20px;
		width: 160px;
		height: 220px;
	}

	.agk-offer-filters {
		gap: 16px;
		padding: 20px;
	}

	.agk-offer-filters__types,
	.offer-grid {
		grid-template-columns: 1fr;
	}

	.offer-card__media {
		height: 220px;
		flex-basis: 220px;
	}

	.offer-card__hope-badge {
		right: 12px;
		width: 88px;
		height: 116px;
		padding-top: 9px;
	}

	.offer-card__hope-badge img {
		width: 40px;
		height: 40px;
	}
}
/* Gallery and offers precision fixes */
.media-grid {
	column-gap: 7px;
}

.media-grid figure,
.media-grid .media-wide {
	margin-bottom: 7px;
}

.media-grid figcaption {
	display: none !important;
}

.media-photo-modal__dialog {
	grid-template-columns: minmax(0, 1fr);
	justify-items: center;
	margin: auto;
}

.media-photo-modal__dialog > img {
	justify-self: center;
	max-height: min(74vh, 780px);
}

.media-photo-modal__close {
	display: grid;
	place-items: center;
	padding: 0;
	line-height: 0;
}

.media-photo-modal__close svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.3;
	stroke-linecap: round;
}

.agk-offer-filters {
	grid-template-columns: minmax(260px, 1fr) auto !important;
	gap: 20px;
	align-items: center;
	padding-block: 24px;
	box-shadow: 0 18px 46px rgba(16, 43, 67, .16);
}

.agk-offer-filters__types {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 12px;
	align-items: center;
}

.agk-offer-filters__types button {
	flex: 0 0 176px;
	width: 176px;
}

.agk-offer-filters__types button:last-child {
	flex-basis: 202px;
	width: 202px;
	padding-left: 58px;
}

.agk-offer-filters__types button:last-child::before {
	width: 34px;
	height: 34px;
	background: #0878d1;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='12' r='8'/%3E%3Cpath d='M4 14l20 17 8-9 8 9 20-17-11 25-8-7 4 27H19l4-27-8 7z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='12' r='8'/%3E%3Cpath d='M4 14l20 17 8-9 8 9 20-17-11 25-8-7 4 27H19l4-27-8 7z'/%3E%3C/svg%3E") center / contain no-repeat;
	filter: none;
}

.agk-offer-filters__types button:last-child.is-active::before,
.agk-offer-filters__types button:last-child:hover::before {
	background: #fff;
	filter: none;
}

.offer-grid {
	grid-template-columns: repeat(auto-fill, minmax(280px, 350px));
	gap: 22px;
	justify-content: start;
}

.offer-card {
	min-height: 360px;
}

.offer-card__media {
	height: 180px;
	flex-basis: 180px;
}

.offer-card__body {
	padding: 19px 20px 22px;
}

.offer-card h2 {
	font-size: 1.45rem;
}

.offer-card p {
	margin-bottom: 11px;
	font-size: .9rem;
	line-height: 1.45;
	-webkit-line-clamp: 3;
}

.offer-card__hope-badge {
	right: 14px;
	width: 82px;
	height: 108px;
	padding: 8px 6px 15px;
}

.offer-card__hope-badge img {
	width: 38px;
	height: 38px;
}

.offer-card__hope-badge strong {
	font-size: 1rem;
}

.offer-card__hope-badge small {
	font-size: .58rem;
}

@media (max-width: 900px) {
	.agk-offer-filters {
		grid-template-columns: 1fr !important;
	}

	.agk-offer-filters__types {
		justify-content: flex-start;
	}
}

@media (max-width: 480px) {
	.agk-offer-filters__types {
		flex-wrap: wrap !important;
	}

	.agk-offer-filters__types button,
	.agk-offer-filters__types button:last-child {
		width: 100%;
		flex-basis: 100%;
	}
}
/* Gallery and offers precision fixes v2 */
.media-grid figure,
.media-grid .media-wide {
	margin: 0 0 4px !important;
	overflow: hidden !important;
	border-radius: 11px !important;
	line-height: 0;
	vertical-align: top;
}

.media-photo-open,
.media-video-open {
	border-radius: 11px !important;
	line-height: 0;
	cursor: pointer;
}

.media-grid figure:hover img {
	transform: none;
}

.agk-offer-filters .agk-content-filters__search::before {
	top: 50%;
	left: 20px;
	width: 24px;
	height: 24px;
	border: 0;
	border-radius: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237f98b2' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='m15.5 15.5 5 5'/%3E%3C/svg%3E") center / contain no-repeat;
	transform: translateY(-50%);
}

.agk-offer-filters .agk-content-filters__search::after {
	display: none;
}

.agk-offer-filters__types button:last-child::before {
	background: url("../hope-center-filter.png") center / contain no-repeat;
	-webkit-mask: none;
	mask: none;
	filter: none;
}

.agk-offer-filters__types button:last-child.is-active::before,
.agk-offer-filters__types button:last-child:hover::before {
	background: url("../hope-center-filter.png") center / contain no-repeat;
	filter: brightness(0) invert(1);
}

@media (min-width: 761px) {
	.agk-offer-filters {
		grid-template-columns: minmax(260px, 1fr) auto !important;
	}

	.agk-offer-filters__types {
		flex-wrap: nowrap !important;
	}
}

@media (max-width: 760px) {
	.agk-offer-filters {
		grid-template-columns: 1fr !important;
	}
}
/* Termin, gallery and timeline final refinements v3 */
.single-agk_event .event-single > .wp-block-group {
	max-width: 860px;
}

.single-agk_event .event-single__image {
	margin: 20px 0 24px;
	border-radius: 9px;
	overflow: hidden;
}

.single-agk_event .event-single__image img {
	display: block;
	width: 100%;
	max-height: 360px;
	object-fit: cover;
}

.agk-event-details {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 0 0 28px;
	padding: 0;
	border: 1px solid #d9e0e6;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.agk-event-detail {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 78px;
	padding: 16px 18px;
	border-right: 1px solid #e2e6e9;
	color: #092d51;
}

.agk-event-detail:last-child { border-right: 0; }
.agk-event-detail svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: #174f91;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.agk-event-detail strong {
	display: block;
	margin-bottom: 5px;
	color: #174f91;
	font-size: .68rem;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.single-agk_event .event-single .wp-block-post-content { margin: 0 0 30px; }

.agk-event-offer-card {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	width: min(100%, 470px);
	margin: 0 0 38px;
	padding: 12px;
	border: 1px solid #d9e0e6;
	border-radius: 8px;
	background: #fff;
}
.agk-event-offer-card > img {
	display: block;
	width: 180px;
	height: 92px;
	object-fit: cover;
	border-radius: 6px;
}
.agk-event-offer-card > div { padding: 4px 14px; }
.agk-event-offer-card span {
	display: block;
	color: #174f91;
	font-size: .65rem;
	font-weight: 500;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.agk-event-offer-card h2 { margin: 7px 0 10px; font-size: 1.35rem; font-weight: 600; }
.agk-event-offer-card a {
	color: #075fbe;
	font-size: .8rem;
	font-weight: 600;
	text-decoration: none;
}

.agk-home-hero__slide--event .agk-home-hero__shade {
	background: linear-gradient(90deg, rgba(7, 27, 39, .84), rgba(7, 27, 39, .48) 58%, rgba(7, 27, 39, .16));
}

.media-grid { column-gap: 7px !important; }
.media-grid figure,
.media-grid .media-wide { margin-bottom: 7px !important; }
.media-grid img { transition: transform .32s ease; }
.media-grid figure:hover img { transform: scale(1.025); }

.history-step--future::before {
	background: #fffdf9 !important;
	border: 2px solid #174f91 !important;
	box-shadow: none !important;
}

@media (max-width: 680px) {
	.agk-event-details { grid-template-columns: 1fr; }
	.agk-event-detail { border-right: 0; border-bottom: 1px solid #e2e6e9; }
	.agk-event-detail:last-child { border-bottom: 0; }
	.agk-event-offer-card { grid-template-columns: 1fr; }
	.agk-event-offer-card > img { width: 100%; height: 150px; }
	.agk-event-offer-card > div { padding: 14px 4px 4px; }
}
/* Editor follow-up and frontend precision v4 */
@media (min-width: 761px) {
	.agk-offer-filters {
		display: grid !important;
		grid-template-columns: minmax(320px, 1fr) auto !important;
		gap: 20px !important;
		align-items: center !important;
	}
	.agk-offer-filters .agk-content-filters__search {
		width: 100% !important;
		min-width: 0;
		margin: 0 !important;
	}
	.agk-offer-filters__types {
		display: flex !important;
		flex-wrap: nowrap !important;
		gap: 12px !important;
		align-items: center;
		justify-content: flex-end;
	}
}

.agk-event-detail {
	align-items: start;
	min-height: 78px;
}
.agk-event-detail svg { margin-top: 2px; }
.agk-event-detail strong {
	font-size: .64rem;
	font-weight: 500;
	letter-spacing: .1em;
}
.agk-event-detail span { font-weight: 400; line-height: 1.35; }

.agk-event-offer-card {
	align-items: center;
	min-height: 0 !important;
	height: auto !important;
	padding: 12px !important;
}
.agk-event-offer-card > div { align-self: center; }

.media-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
	margin: 30px 0 8px;
}
.media-pagination[hidden] { display: none !important; }
.media-pagination__button {
	min-width: 42px;
	height: 42px;
	padding: 0 11px;
	border: 1px solid #9db2c6;
	border-radius: 6px;
	background: #fff;
	color: #0a345b;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}
.media-pagination__button:hover,
.media-pagination__button:focus-visible,
.media-pagination__button.is-active {
	border-color: #0d5fa8;
	background: #0d5fa8;
	color: #fff;
}
.media-pagination__button:disabled { opacity: .4; cursor: default; }
.media-pagination__ellipsis { padding: 0 3px; color: #66798a; }

.media-photo-modal .media-modal__arrow,
.media-photo-modal .media-modal__arrow:hover,
.media-photo-modal .media-modal__arrow:focus-visible {
	border-color: rgba(255,255,255,.95) !important;
	background: rgba(5,35,58,.78) !important;
	color: #fff !important;
}
.media-photo-modal .media-modal__arrow svg,
.media-photo-modal .media-modal__arrow:hover svg,
.media-photo-modal .media-modal__arrow:focus-visible svg {
	fill: none !important;
	stroke: #fff !important;
	color: #fff !important;
	opacity: 1 !important;
}

@media (max-width: 760px) {
	.agk-offer-filters { display: grid !important; grid-template-columns: 1fr !important; }
	.agk-offer-filters__types { width: 100%; }
}
/* Screenshot precision corrections v5 */
@media (min-width: 761px) {
	.agk-offer-filters {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 176px 202px !important;
		grid-template-rows: auto !important;
		gap: 14px !important;
	}
	.agk-offer-filters .agk-content-filters__search {
		grid-column: 1 !important;
		grid-row: 1 !important;
		max-width: none !important;
	}
	.agk-offer-filters__types {
		display: contents !important;
	}
	.agk-offer-filters__types button:first-child {
		grid-column: 2 !important;
		grid-row: 1 !important;
		width: 176px !important;
	}
	.agk-offer-filters__types button:last-child {
		grid-column: 3 !important;
		grid-row: 1 !important;
		width: 202px !important;
	}
}

.agk-event-detail {
	grid-template-columns: 27px minmax(0, 1fr) !important;
	gap: 7px !important;
	padding-top: 16px !important;
}
.agk-event-detail svg {
	width: 23px !important;
	height: 23px !important;
	margin-top: 0 !important;
}
.agk-event-detail span {
	font-size: 1.08rem;
	font-weight: 600 !important;
}
.agk-event-detail strong {
	font-size: .61rem !important;
	font-weight: 500 !important;
}
.single-agk_event .event-single .wp-block-post-content {
	margin-top: 24px !important;
	margin-bottom: 30px !important;
}

.agk-event-offer-card {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	width: min(100%, 470px) !important;
	min-height: 0 !important;
	padding: 12px !important;
}
.agk-event-offer-card > img {
	flex: 0 0 180px !important;
	width: 180px !important;
	height: 92px !important;
}
.agk-event-offer-card > div {
	flex: 1 1 auto !important;
	padding: 4px 14px !important;
}

.agk-home-hero__slide--event .agk-home-hero__copy,
.agk-home-hero__slide--event .agk-home-hero__copy h1,
.agk-home-hero__slide--event .agk-home-hero__meta,
.agk-home-hero__slide--event .agk-home-hero__summary {
	color: #fff !important;
	text-shadow: 0 2px 18px rgba(0,0,0,.42);
}
.agk-home-hero__slide--event .agk-home-hero__button {
	border-color: #fff !important;
	color: #fff !important;
}

.media-photo-modal__close,
.media-photo-modal__close:hover,
.media-photo-modal__close:focus-visible {
	border-color: rgba(255,255,255,.95) !important;
	background: rgba(5,35,58,.78) !important;
	color: #fff !important;
}
.media-photo-modal__close svg,
.media-photo-modal__close:hover svg,
.media-photo-modal__close:focus-visible svg {
	stroke: #fff !important;
	color: #fff !important;
}

@media (max-width: 680px) {
	.agk-event-offer-card { flex-direction: column !important; align-items: stretch !important; }
	.agk-event-offer-card > img { width: 100% !important; height: 150px !important; flex-basis: 150px !important; }
}
/* Lightbox interaction correction v6 */
.media-photo-modal .media-modal__arrow {
	background: rgba(5,35,58,.78) !important;
	color: #fff !important;
}
.media-photo-modal .media-modal__arrow svg { stroke: #fff !important; }
.media-photo-modal .media-modal__arrow:hover,
.media-photo-modal .media-modal__arrow:focus-visible {
	background: #fff !important;
	color: #102b43 !important;
	transform: translateY(-50%) scale(1.06) !important;
}
.media-photo-modal .media-modal__arrow:hover svg,
.media-photo-modal .media-modal__arrow:focus-visible svg { stroke: #102b43 !important; }
.media-photo-modal__close {
	background: rgba(5,35,58,.78) !important;
	color: #fff !important;
	transition: background .2s, color .2s, transform .2s;
}
.media-photo-modal__close:hover,
.media-photo-modal__close:focus-visible {
	background: #fff !important;
	color: #102b43 !important;
	transform: scale(1.06);
}
.media-photo-modal__close:hover svg,
.media-photo-modal__close:focus-visible svg { stroke: #102b43 !important; }
/* Filter spacing correction v7 */
.agk-offer-filters { padding-top: 24px !important; padding-bottom: 24px !important; }

/* Virtual Angebot appointments v8 */
.agk-offer-filters > p { display: none !important; }
.agk-virtual-event { max-width: 860px; margin-inline: auto; }
.agk-virtual-event h1 { margin: 12px 0 28px; font-size: clamp(3rem, 7vw, 5rem); line-height: .95; }
.agk-virtual-event .event-single__image { margin: 0 0 28px; }
.agk-virtual-event .event-single__image img { display: block; width: 100%; max-height: 520px; object-fit: cover; border-radius: 9px; }
.agk-virtual-event__content { margin: 28px 0 30px; }

/* Termin detail alignment and card proportions v9 */
.agk-event-detail {
	grid-template-columns: 42px minmax(0, 1fr) !important;
	gap: 14px !important;
	align-items: center !important;
	min-height: 122px !important;
	padding: 20px 22px !important;
}
.agk-event-detail svg {
	width: 34px !important;
	height: 34px !important;
	margin: 0 !important;
	align-self: start;
	margin-top: 2px !important;
}
.agk-event-detail span {
	font-size: 1.16rem !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
}
.agk-event-detail strong {
	margin-bottom: 9px !important;
	font-size: .66rem !important;
	font-weight: 500 !important;
	letter-spacing: .12em !important;
}
.single-agk_event .event-single .wp-block-post-content,
.agk-virtual-event__content {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.single-agk_event .event-single .wp-block-post-content > *,
.agk-virtual-event__content > * {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.agk-event-offer-card {
	width: min(100%, 580px) !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding: 18px 20px !important;
	align-items: center !important;
}
.agk-event-offer-card > img {
	flex: 0 0 260px !important;
	width: 260px !important;
	height: 142px !important;
	border-radius: 7px !important;
}
.agk-event-offer-card > div {
	padding: 8px 18px !important;
}
.agk-event-offer-card span {
	font-size: .68rem !important;
	line-height: 1.35 !important;
}
.agk-event-offer-card h2 {
	margin: 14px 0 20px !important;
	font-size: 1.7rem !important;
}
.agk-event-offer-card a {
	font-size: .92rem !important;
}
@media (max-width: 680px) {
	.agk-event-detail { min-height: 92px !important; }
	.agk-event-offer-card { padding: 14px !important; }
	.agk-event-offer-card > img { width: 100% !important; height: 180px !important; flex-basis: 180px !important; }
	.agk-event-offer-card > div { padding: 16px 2px 2px !important; }
}
/* Compact Termin information row and equal filter inset v10 */
.agk-offer-filters p { display: none !important; }
.agk-offer-filters {
	padding-top: 24px !important;
	padding-bottom: 24px !important;
	grid-auto-rows: max-content !important;
}
.agk-event-detail {
	grid-template-columns: 32px minmax(0, 1fr) !important;
	gap: 10px !important;
	align-items: start !important;
	min-height: 98px !important;
	padding: 16px 20px !important;
}
.agk-event-detail svg {
	width: 26px !important;
	height: 26px !important;
	align-self: start !important;
	margin: 0 !important;
}
.agk-event-detail span {
	font-size: 1.06rem !important;
	line-height: 1.22 !important;
}
.agk-event-detail strong {
	margin: 0 0 8px !important;
	font-size: .64rem !important;
	line-height: 1 !important;
}
.agk-event-detail:first-child span { white-space: nowrap; }
.agk-virtual-event .agk-event-offer-card { margin-top: 28px !important; }
@media (max-width: 680px) {
	.agk-event-detail:first-child span { white-space: normal; }
	.agk-event-detail { min-height: 82px !important; }
}
/* Final compact row and symmetric filter spacing v11 */
@media (min-width: 761px) {
	.agk-offer-filters {
		column-gap: 14px !important;
		row-gap: 0 !important;
		padding-block: 24px !important;
	}
}
.agk-event-detail {
	min-height: 78px !important;
	padding: 12px 18px !important;
	grid-template-columns: 30px minmax(0, 1fr) !important;
	gap: 9px !important;
}
.agk-event-detail svg {
	width: 24px !important;
	height: 24px !important;
}
.agk-event-detail strong { margin-bottom: 6px !important; }
@media (max-width: 680px) {
	.agk-event-detail { min-height: 72px !important; padding: 11px 16px !important; }
}
/* Related Angebot card refinement v12 */
.agk-event-offer-card {
	width: min(100%, 580px) !important;
	padding: 16px 18px !important;
}
.agk-event-offer-card > img {
	flex: 0 0 240px !important;
	width: 240px !important;
	height: 122px !important;
}
.agk-event-offer-card > div {
	padding: 4px 18px !important;
}
.agk-event-offer-card span {
	font-size: .74rem !important;
	line-height: 1.2 !important;
}
.agk-event-offer-card h2 {
	margin: 13px 0 17px !important;
	font-size: 1.75rem !important;
}
.agk-event-offer-card a {
	font-size: 1rem !important;
	line-height: 1.2 !important;
}
@media (max-width: 680px) {
	.agk-event-offer-card > img { width: 100% !important; height: 165px !important; flex-basis: 165px !important; }
}
/* Hope marker outline v13 */
.offer-card__hope-badge {
	background: #176cb7 !important;
}
.offer-card__hope-badge::before {
	position: absolute;
	z-index: 0;
	inset: 1.5px;
	clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
	background: rgba(255, 255, 255, .98);
	content: "";
}
.offer-card__hope-badge > * {
	position: relative;
	z-index: 1;
}
/* Termine underline, neutral Hope outline and image fill v14 */
.agk-termine-page__title {
	position: relative;
	margin-bottom: 28px !important;
}
.agk-termine-page__title::after {
	position: absolute;
	bottom: -14px;
	left: 0;
	width: 74px;
	height: 3px;
	background: #1472c4;
	content: "";
}
.offer-card__hope-badge {
	background: #ccd8e2 !important;
}
.offer-card__hope-badge::before {
	inset: 0 1px 1px !important;
	width: auto;
	height: auto;
}
.offer-card__media > img {
	width: 100% !important;
	height: 100% !important;
	min-width: 100% !important;
	min-height: 100% !important;
	object-fit: cover !important;
	transform: none;
}
/* Reference-style event overview cards v16 */
.events-page .agk-event,
.agk-offer-events .agk-event {
	grid-template-columns: 112px minmax(180px, 240px) minmax(0, 1fr) !important;
	gap: 24px !important;
	align-items: stretch !important;
	min-height: 190px;
	padding: 22px !important;
	border-color: #d9e0e6;
	border-radius: 10px;
	background: #fff;
}
.events-page .agk-event__date,
.agk-offer-events .agk-event__date {
	grid-column: 1 !important;
	grid-row: 1 !important;
}
.events-page .agk-event time,
.agk-offer-events .agk-event time {
	box-sizing: border-box;
	min-height: 100%;
	padding: 14px 10px;
	border-radius: 8px;
}
.events-page .agk-event time small,
.agk-offer-events .agk-event time small {
	display: block;
	margin-bottom: 10px;
	font-size: .72rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.events-page .agk-event time b,
.agk-offer-events .agk-event time b {
	font-size: 2.55rem;
	font-weight: 600;
	line-height: .95;
}
.events-page .agk-event time span,
.agk-offer-events .agk-event time span {
	margin-top: 10px;
	font-size: .82rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: .06em;
}
.events-page .agk-event time em,
.agk-offer-events .agk-event time em {
	margin-top: 5px;
	font-size: .84rem;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: .02em;
}
.events-page .agk-event__media,
.agk-offer-events .agk-event__media {
	display: block !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
	align-self: stretch !important;
	height: auto !important;
	min-height: 146px;
	margin: 0 !important;
	border-radius: 8px;
}
.events-page .agk-event__image,
.agk-offer-events .agk-event__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover !important;
}
.events-page .agk-event__content,
.agk-offer-events .agk-event__content {
	display: flex;
	grid-column: 3 !important;
	grid-row: 1 !important;
	align-self: stretch !important;
	flex-direction: column;
	justify-content: center;
}
.events-page .agk-event__content h3,
.agk-offer-events .agk-event__content h3 {
	margin: 0 0 18px;
	font-size: clamp(1.3rem, 2.3vw, 1.75rem);
	font-weight: 600;
	line-height: 1.12;
}
.agk-event__facts { display: grid; gap: 11px; }
.events-page .agk-event__fact,
.agk-offer-events .agk-event__fact {
	display: flex !important;
	gap: 12px;
	align-items: center;
	margin: 0 !important;
	color: #173a5e !important;
	font-size: .98rem !important;
	font-weight: 500 !important;
	line-height: 1.3 !important;
}
.agk-event__fact svg {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	fill: none;
	stroke: #2563a5;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
@media (max-width: 760px) {
	.events-page .agk-event,
	.agk-offer-events .agk-event {
		grid-template-columns: 86px 130px minmax(0, 1fr) !important;
		gap: 14px !important;
		min-height: 150px;
		padding: 14px !important;
	}
	.events-page .agk-event__media,
	.agk-offer-events .agk-event__media { min-height: 120px; }
	.events-page .agk-event__content h3,
	.agk-offer-events .agk-event__content h3 { margin-bottom: 12px; font-size: 1.2rem; }
	.events-page .agk-event__fact,
	.agk-offer-events .agk-event__fact { gap: 8px; font-size: .84rem !important; }
	.agk-event__fact svg { width: 20px; height: 20px; flex-basis: 20px; }
	.events-page .agk-event time small,
	.agk-offer-events .agk-event time small { font-size: .62rem; }
	.events-page .agk-event time b,
	.agk-offer-events .agk-event time b { font-size: 2rem; }
}
@media (max-width: 560px) {
	.events-page .agk-event,
	.agk-offer-events .agk-event {
		grid-template-columns: 78px minmax(0, 1fr) !important;
		grid-template-rows: 112px auto;
	}
	.events-page .agk-event__date,
	.agk-offer-events .agk-event__date { grid-column: 1 !important; grid-row: 1 !important; }
	.events-page .agk-event__media,
	.agk-offer-events .agk-event__media { grid-column: 2 !important; grid-row: 1 !important; min-height: 112px; }
	.events-page .agk-event__content,
	.agk-offer-events .agk-event__content { grid-column: 1 / -1 !important; grid-row: 2 !important; padding: 4px 2px 2px; }
	.events-page .agk-event time small,
	.agk-offer-events .agk-event time small { margin-bottom: 5px; }
	.events-page .agk-event time span,
	.agk-offer-events .agk-event time span { margin-top: 6px; }
}
/* Compact equal-height event cards v17 */
.events-page .agk-event,
.agk-offer-events .agk-event {
	box-sizing: border-box;
	height: 190px;
	min-height: 190px;
	gap: 20px !important;
	padding: 16px !important;
}
.events-page .agk-event__media,
.agk-offer-events .agk-event__media {
	height: 100% !important;
	min-height: 0;
}
.events-page .agk-event__content h3,
.agk-offer-events .agk-event__content h3 {
	margin-bottom: 14px;
	font-size: 1.42rem;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -.012em;
}
.events-page .agk-event__facts,
.agk-offer-events .agk-event__facts { gap: 9px; }
.events-page .agk-event__fact,
.agk-offer-events .agk-event__fact { font-size: .9rem !important; }
@media (max-width: 760px) {
	.events-page .agk-event,
	.agk-offer-events .agk-event {
		height: 164px;
		min-height: 164px;
		gap: 12px !important;
		padding: 12px !important;
	}
	.events-page .agk-event__media,
	.agk-offer-events .agk-event__media { min-height: 0; }
	.events-page .agk-event__content h3,
	.agk-offer-events .agk-event__content h3 { margin-bottom: 10px; font-size: 1.12rem; }
	.events-page .agk-event__facts,
	.agk-offer-events .agk-event__facts { gap: 7px; }
}
@media (max-width: 560px) {
	.events-page .agk-event,
	.agk-offer-events .agk-event {
		height: 250px;
		min-height: 250px;
		grid-template-rows: 106px minmax(0, 1fr);
	}
	.events-page .agk-event__media,
	.agk-offer-events .agk-event__media { min-height: 0; }
	.events-page .agk-event__content,
	.agk-offer-events .agk-event__content { justify-content: flex-start; padding-top: 2px; }
}
/* Fixed event fact rows and detail alignment v18 */
.events-page .agk-event__content,
.agk-offer-events .agk-event__content {
	box-sizing: border-box;
	justify-content: flex-start !important;
	padding-top: 8px;
}
.events-page .agk-event__content h3,
.agk-offer-events .agk-event__content h3 { margin-bottom: 10px; }
.events-page .agk-event__facts,
.agk-offer-events .agk-event__facts {
	grid-template-rows: repeat(3, 20px);
	gap: 7px;
}
.events-page .agk-event__fact,
.agk-offer-events .agk-event__fact { min-height: 20px; }
.agk-event__fact.is-empty { visibility: hidden; }
.single-agk_event .event-single .wp-block-shortcode:has(.agk-event-offer-card) {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.single-agk_event .event-single .agk-event-offer-card {
	margin-left: 0 !important;
	margin-right: auto !important;
}
@media (max-width: 760px) {
	.events-page .agk-event__content,
	.agk-offer-events .agk-event__content { padding-top: 5px; }
	.events-page .agk-event__facts,
	.agk-offer-events .agk-event__facts { grid-template-rows: repeat(3, 19px); gap: 6px; }
}
@media (max-width: 560px) {
	.events-page .agk-event__content,
	.agk-offer-events .agk-event__content { padding-top: 2px; }
}
/* Shared overview and compact homepage event cards v19 */
.events-page .agk-event,
.agk-offer-events .agk-event,
.agk-event-list--compact .agk-event,
.events-page .agk-event__content h3,
.agk-offer-events .agk-event__content h3,
.agk-event-list--compact .agk-event__content h3 {
	font-family: inherit;
}
.events-page .agk-event__content h3,
.agk-offer-events .agk-event__content h3 {
	margin-bottom: 16px;
	font-size: 1.42rem;
	font-weight: 600;
	line-height: 1.2;
}
.events-page .agk-event__facts,
.agk-offer-events .agk-event__facts {
	grid-template-rows: repeat(3, minmax(24px, auto));
	gap: 12px;
}
.events-page .agk-event__fact,
.agk-offer-events .agk-event__fact {
	min-height: 24px;
	gap: 14px;
	font-size: .92rem !important;
	line-height: 1.45 !important;
}
@media (min-width: 761px) {
	.events-page .agk-event,
	.agk-offer-events .agk-event {
		height: 210px;
		min-height: 210px;
	}
	.events-page .agk-event__content,
	.agk-offer-events .agk-event__content {
		justify-content: center !important;
		padding-top: 0;
	}
}
.agk-event-list--compact { gap: 14px; }
.agk-event-list--compact .agk-event {
	grid-template-columns: 82px minmax(112px, 145px) minmax(0, 1fr);
	gap: 16px;
	height: 154px;
	min-height: 154px;
	align-items: stretch;
	padding: 14px;
}
.agk-event-list--compact .agk-event__date { grid-column: 1; grid-row: 1; }
.agk-event-list--compact .agk-event time { box-sizing: border-box; min-height: 100%; padding: 10px 6px; }
.agk-event-list--compact .agk-event time small {
	display: block;
	margin-bottom: 6px;
	font-size: .64rem;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.agk-event-list--compact .agk-event time b { font-size: 2rem; font-weight: 600; line-height: .95; }
.agk-event-list--compact .agk-event time span { margin-top: 7px; font-size: .66rem; font-weight: 600; line-height: 1.1; letter-spacing: .05em; }
.agk-event-list--compact .agk-event time em { margin-top: 4px; font-size: .66rem; font-weight: 400; line-height: 1.1; }
.agk-event-list--compact .agk-event__media {
	display: block;
	grid-column: 2;
	grid-row: 1;
	align-self: stretch;
	height: 100%;
	min-height: 0;
	margin: 0;
	border-radius: 7px;
}
.agk-event-list--compact .agk-event__image { width: 100%; height: 100%; min-height: 100%; object-fit: cover; }
.agk-event-list--compact .agk-event__content {
	display: flex;
	grid-column: 3;
	grid-row: 1;
	min-width: 0;
	align-self: stretch;
	justify-content: center;
	flex-direction: column;
}
.agk-event-list--compact .agk-event__content h3 { margin: 0 0 10px; font-size: 1.12rem; font-weight: 600; line-height: 1.2; }
.agk-event-list--compact .agk-event__facts { grid-template-rows: repeat(3, minmax(20px, auto)); gap: 7px; }
.agk-event-list--compact .agk-event__fact {
	display: flex;
	min-height: 20px;
	gap: 9px;
	align-items: center;
	margin: 0;
	color: #173a5e;
	font-size: .84rem;
	font-weight: 500;
	line-height: 1.45;
}
.agk-event-list--compact .agk-event__fact svg { width: 20px; height: 20px; flex-basis: 20px; }
.agk-event-list--compact .agk-event--static { grid-template-columns: 82px minmax(0, 1fr); }
.agk-event-list--compact .agk-event--static .agk-event__content { grid-column: 2; }
@media (max-width: 760px) {
	.events-page .agk-event__facts,
	.agk-offer-events .agk-event__facts { grid-template-rows: repeat(3, minmax(20px, auto)); gap: 9px; }
	.events-page .agk-event__fact,
	.agk-offer-events .agk-event__fact { min-height: 20px; gap: 9px; line-height: 1.35 !important; }
}
@media (max-width: 620px) {
	.agk-event-list--compact .agk-event {
		grid-template-columns: 72px minmax(92px, 120px) minmax(0, 1fr);
		gap: 10px;
		height: 138px;
		min-height: 138px;
		padding: 10px;
	}
	.agk-event-list--compact .agk-event__content h3 { margin-bottom: 7px; font-size: 1rem; }
	.agk-event-list--compact .agk-event__facts { gap: 5px; }
	.agk-event-list--compact .agk-event__fact { gap: 6px; font-size: .76rem; line-height: 1.3; }
	.agk-event-list--compact .agk-event__fact svg { width: 18px; height: 18px; flex-basis: 18px; }
}
@media (max-width: 480px) {
	.agk-event-list--compact .agk-event {
		grid-template-columns: 72px minmax(0, 1fr);
		grid-template-rows: 96px auto;
		height: auto;
		min-height: 205px;
	}
	.agk-event-list--compact .agk-event__media { grid-column: 2; grid-row: 1; }
	.agk-event-list--compact .agk-event__content { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; padding: 3px 2px 1px; }
}

/* Let mobile overview cards grow and preserve space below their final fact row. */
@media (max-width: 560px) {
	.events-page .agk-event,
	.agk-offer-events .agk-event {
		height: auto !important;
		min-height: 250px;
		padding-bottom: 18px !important;
	}
}
/* Compact HOPE indicator on marked offer detail pages only. */
.offer-single__hope-badge {
	display: inline-flex;
	gap: 7px;
	align-items: center;
	width: max-content;
	margin: 10px 0 24px;
	padding: 4px 11px 4px 5px;
	border-radius: 999px;
	background: #176cb7;
	color: #fff;
	font-family: inherit;
	font-size: .66rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .045em;
	text-transform: uppercase;
	box-shadow: 0 3px 8px rgba(16, 43, 67, .15);
}
.offer-single__hope-badge-icon {
	display: grid;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	place-items: center;
	padding: 4px;
	border-radius: 50%;
	background: #fff;
}
.offer-single__hope-badge-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.offer-single__hope-badge strong {
	color: inherit;
	font: inherit;
}