.adih-bg-root {
	--adih-duration: 400ms;
	--adih-columns: 2;
	width: 100%;
}

.adih-bg-root,
.adih-bg-root * {
	box-sizing: border-box;
}

.adih-bg-grid {
	display: grid;
	grid-template-columns: repeat(var(--adih-columns), minmax(0, 1fr));
	column-gap: 30px;
	row-gap: 30px;
}

.adih-bg-card {
	position: relative;
	min-width: 0;
	overflow: hidden;
	background: #0b2d67;
	isolation: isolate;
	transition: transform var(--adih-duration) cubic-bezier(.2,.75,.25,1), box-shadow var(--adih-duration) ease, border-color var(--adih-duration) ease;
}

.adih-bg-media {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: linear-gradient(135deg, #0b2d67 0%, #081b3e 100%);
}

.adih-bg-image-link,
.adih-bg-image {
	display: block;
	width: 100%;
	height: 100%;
}

.adih-bg-image-link {
	position: absolute;
	inset: 0;
}

.adih-bg-image {
	object-fit: cover;
	transform: scale(1.001);
	transition: transform var(--adih-duration) cubic-bezier(.2,.75,.25,1), filter var(--adih-duration) ease;
}

.adih-bg-placeholder {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 72% 24%, rgba(214,183,91,.34), transparent 26%),
		linear-gradient(135deg, #173d78 0%, #071936 100%);
}

.adih-bg-placeholder span,
.adih-bg-placeholder span::before,
.adih-bg-placeholder span::after {
	position: absolute;
	content: "";
	border: 1px solid rgba(255,255,255,.2);
}

.adih-bg-placeholder span {
	inset: 22%;
}

.adih-bg-placeholder span::before {
	inset: 12% -10% -12% 18%;
}

.adih-bg-placeholder span::after {
	inset: -18% 18% 22% -12%;
}

.adih-bg-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.adih-bg-content {
	position: relative;
	z-index: 2;
	padding: 34px;
}

.adih-bg-skin-overlay .adih-bg-media {
	display: flex;
	align-items: flex-end;
	min-height: 430px;
}

.adih-bg-skin-overlay .adih-bg-overlay {
	--adih-overlay-color: rgba(5, 19, 50, .82);
	--adih-overlay-strength: 78%;
	background:
		radial-gradient(circle at var(--adih-pointer-x, 50%) var(--adih-pointer-y, 50%), rgba(214,183,91,.10), transparent 34%),
		linear-gradient(
			180deg,
			rgba(5, 19, 50, .02) 0%,
			rgba(5, 19, 50, .18) 32%,
			var(--adih-overlay-color) var(--adih-overlay-strength),
			var(--adih-overlay-color) 100%
		);
	transition: opacity var(--adih-duration) ease, background var(--adih-duration) ease;
}

.adih-bg-skin-overlay .adih-bg-content {
	width: 100%;
	transform: translateY(0);
	transition: transform var(--adih-duration) cubic-bezier(.2,.75,.25,1);
}

.adih-bg-skin-classic .adih-bg-media {
	height: 300px;
}

.adih-bg-skin-classic .adih-bg-overlay {
	background: linear-gradient(180deg, transparent 55%, rgba(5,19,50,.28));
}

.adih-bg-skin-classic .adih-bg-content {
	background: inherit;
}

.adih-bg-skin-classic.adih-bg-root .adih-bg-card:hover {
	box-shadow: 0 18px 45px -20px rgba(0,25,76,.38);
}


.adih-bg-category {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	margin: 0 0 13px;
	color: #d6b75b;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.adih-bg-category a {
	color: inherit;
	text-decoration: none;
	transition: opacity var(--adih-duration) ease;
}

.adih-bg-category a:hover {
	opacity: .78;
}

.adih-bg-category-separator {
	opacity: .55;
}

.adih-bg-title {
	margin: 0;
	color: #fff;
	font-size: clamp(22px, 2.15vw, 34px);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: -.025em;
}

.adih-bg-title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--adih-duration) ease;
}

.adih-bg-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
	color: rgba(255,255,255,.72);
	font-size: 13px;
	line-height: 1.45;
}

.adih-bg-meta a {
	color: inherit;
	text-decoration: none;
}

.adih-bg-meta-separator {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
	opacity: .52;
}

.adih-bg-excerpt {
	margin-top: 17px;
	color: rgba(255,255,255,.82);
	font-size: 15px;
	line-height: 1.65;
}

.adih-bg-read-more {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .06em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color var(--adih-duration) ease;
}

.adih-bg-read-more-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--adih-duration) cubic-bezier(.2,.75,.25,1);
}

.adih-bg-read-more-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.adih-bg-read-more:hover .adih-bg-read-more-icon,
.adih-bg-card:hover .adih-bg-read-more-icon {
	transform: translateX(6px);
}

.adih-bg-hover-zoom-lift .adih-bg-card:hover,
.adih-bg-hover-lift .adih-bg-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 45px -20px rgba(0,25,76,.38);
}

.adih-bg-hover-zoom-lift .adih-bg-card:hover .adih-bg-image,
.adih-bg-hover-zoom .adih-bg-card:hover .adih-bg-image {
	transform: scale(1.085);
}

.adih-bg-hover-zoom-lift .adih-bg-card:hover .adih-bg-overlay,
.adih-bg-hover-zoom .adih-bg-card:hover .adih-bg-overlay {
	opacity: .94;
}

.adih-bg-hover-zoom-lift .adih-bg-card:hover .adih-bg-content,
.adih-bg-hover-lift .adih-bg-card:hover .adih-bg-content {
	transform: translateY(-3px);
}

.adih-bg-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 28px;
	margin-bottom: 34px;
}

.adih-bg-filter-link {
	position: relative;
	padding: 5px 0 8px;
	color: #42506a;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color var(--adih-duration) ease;
}

.adih-bg-filter-link::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	content: "";
	background: #0b2d67;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform var(--adih-duration) cubic-bezier(.2,.75,.25,1);
}

.adih-bg-filter-link:hover::after,
.adih-bg-filter-link.is-active::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.adih-bg-pagination {
	margin-top: 42px;
}

.adih-bg-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.adih-bg-pagination li {
	margin: 0;
	padding: 0;
}

.adih-bg-pagination a,
.adih-bg-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 15px;
	border: 1px solid rgba(11,45,103,.12);
	border-radius: 999px;
	background: #fff;
	color: #0b2d67;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: color var(--adih-duration) ease, background-color var(--adih-duration) ease, border-color var(--adih-duration) ease, transform var(--adih-duration) ease;
}

.adih-bg-pagination a:hover,
.adih-bg-pagination .current {
	border-color: #0b2d67;
	background: #0b2d67;
	color: #fff;
	transform: translateY(-2px);
}

.adih-bg-empty {
	padding: 28px;
	border: 1px solid rgba(11,45,103,.12);
	border-radius: 6px;
	background: rgba(11,45,103,.035);
	color: #42506a;
	text-align: center;
}

.adih-bg-card :focus-visible,
.adih-bg-filter-link:focus-visible,
.adih-bg-pagination a:focus-visible {
	outline: 3px solid #d6b75b;
	outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
	.adih-bg-card,
	.adih-bg-image,
	.adih-bg-content,
	.adih-bg-overlay,
	.adih-bg-read-more-icon,
	.adih-bg-filter-link,
	.adih-bg-filter-link::after,
	.adih-bg-pagination a,
	.adih-bg-pagination span {
		transition-duration: .01ms !important;
	}

	.adih-bg-card:hover,
	.adih-bg-card:hover .adih-bg-image,
	.adih-bg-card:hover .adih-bg-content,
	.adih-bg-card:hover .adih-bg-read-more-icon {
		transform: none !important;
	}
}

@media (max-width: 767px) {
	.adih-bg-content {
		padding: 24px;
	}

	.adih-bg-title {
		font-size: 24px;
	}

	.adih-bg-filters {
		justify-content: flex-start;
		gap: 10px 22px;
		overflow-x: auto;
		padding-bottom: 4px;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.adih-bg-filter-link {
		flex: 0 0 auto;
	}

	.adih-bg-pagination a,
	.adih-bg-pagination span {
		min-width: 40px;
		height: 40px;
		padding: 0 12px;
	}
}
