/*
 * DeL Blog Section — Clean Filter & Editorial Card Design
 * Matches the supplied del_filter_clean mockup.
 */

.del-blog-section {
	--del-blue: #1965B0;
	--del-orange: #F57921;
	--del-green: #30B34B;
	--del-dark: #102033;
	--del-body: #54595F;
	--del-muted: #7A7A7A;
	--del-soft: #f4f4f5;
	--del-border: #eaeaec;
	--del-card-border: #d0d0d4;
	position: relative !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	color: var(--del-body) !important;
	isolation: isolate;
}

.del-blog-section *,
.del-blog-section *::before,
.del-blog-section *::after {
	box-sizing: border-box !important;
}

/* ──────────────────────────────────────────────────────────────────────────
   Filter: accent bar, plain text rows, inline chip cloud
   ────────────────────────────────────────────────────────────────────────── */
.del-blog-section .del-blog-filters {
	margin: 0 0 32px !important;
	padding: 0 0 20px 20px !important;
	min-width: 0 !important;
	border: 0 !important;
	border-left: 4px solid var(--del-blue) !important;
	border-bottom: 1.5px solid var(--del-border) !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.del-blog-section .del-filter-row {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

.del-blog-section .del-filter-header {
	appearance: none !important;
	-webkit-appearance: none !important;
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 12px 8px !important;
	border: 0 !important;
	border-radius: 5px !important;
	background: transparent !important;
	box-shadow: inset 0 0 0 transparent !important;
	cursor: pointer !important;
	font: inherit !important;
	line-height: 1 !important;
	text-align: left !important;
	transition: background .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

.del-blog-section .del-filter-header:hover,
.del-blog-section .del-filter-header:focus-visible,
.del-blog-section .del-filter-row.is-open .del-filter-header {
	background: #f6f9ff !important;
	box-shadow: inset 0 0 0 1px rgba(25, 101, 176, .10) !important;
}

.del-blog-section .del-filter-header:active {
	transform: translateX(1px) !important;
}

.del-blog-section .del-filter-header__left {
	display: flex !important;
	align-items: center !important;
	flex: 1 1 auto !important;
	min-width: 0 !important;
	gap: 16px !important;
}

.del-blog-section .del-filter-dim {
	display: inline-block !important;
	width: 116px !important;
	min-width: 116px !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	color: var(--del-body) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	letter-spacing: .025em !important;
	text-transform: uppercase !important;
	transition: color .18s ease, letter-spacing .18s ease !important;
}

.del-blog-section .del-filter-header:hover .del-filter-dim,
.del-blog-section .del-filter-header:focus-visible .del-filter-dim,
.del-blog-section .del-filter-row.is-open .del-filter-dim {
	color: var(--del-blue) !important;
	letter-spacing: .04em !important;
}

.del-blog-section .del-filter-badge {
	display: inline-flex !important;
	align-items: center !important;
	height: 30px !important;
	flex: 0 1 auto !important;
	min-width: 0 !important;
	max-width: min(64vw, 420px) !important;
	margin: 0 !important;
	padding: 0 12px !important;
	border: 0 !important;
	border-radius: 4px !important;
	font: inherit !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.del-blog-section .del-filter-badge--muted {
	background: var(--del-soft) !important;
	color: var(--del-muted) !important;
}

.del-blog-section .del-filter-badge--active {
	background: #EEF4FF !important;
	color: var(--del-blue) !important;
	font-weight: 600 !important;
}

.del-blog-section .del-filter-badge--year {
	background: #FFF4EC !important;
	color: var(--del-orange) !important;
	font-weight: 600 !important;
}

.del-blog-section .del-filter-header:hover .del-filter-badge--muted,
.del-blog-section .del-filter-header:focus-visible .del-filter-badge--muted,
.del-blog-section .del-filter-row.is-open .del-filter-badge--muted {
	background: #eef4ff !important;
	color: var(--del-blue) !important;
}

/*
 * The chevron provides the expansion cue. It is deliberately light and sits
 * away from the permanent outer blue rail, so no secondary left indicator is
 * introduced when a row is hovered or expanded.
 */
.del-blog-section .del-filter-chevron {
	display: block !important;
	flex: 0 0 auto !important;
	width: 28px !important;
	height: 28px !important;
	margin: 0 0 0 12px !important;
	padding: 3px !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: var(--del-muted) !important;
	transform: rotate(0deg) !important;
	transition: transform .28s cubic-bezier(.22, .61, .36, 1), color .18s ease, background .18s ease !important;
}

.del-blog-section .del-filter-header:hover .del-filter-chevron,
.del-blog-section .del-filter-header:focus-visible .del-filter-chevron,
.del-blog-section .del-filter-row.is-open .del-filter-chevron {
	background: #eaf2ff !important;
	color: var(--del-blue) !important;
}

.del-blog-section .del-filter-row.is-open .del-filter-chevron {
	transform: rotate(180deg) !important;
}

.del-blog-section .del-filter-body {
	display: grid !important;
	grid-template-rows: 0fr !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(-5px) !important;
	overflow: hidden !important;
	transition:
		grid-template-rows .34s cubic-bezier(.22, .61, .36, 1),
		padding .34s cubic-bezier(.22, .61, .36, 1),
		opacity .20s ease,
		transform .34s cubic-bezier(.22, .61, .36, 1),
		visibility 0s linear .34s !important;
}

.del-blog-section .del-filter-row.is-open .del-filter-body {
	grid-template-rows: 1fr !important;
	padding: 4px 0 14px !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
	transition:
		grid-template-rows .34s cubic-bezier(.22, .61, .36, 1),
		padding .34s cubic-bezier(.22, .61, .36, 1),
		opacity .20s ease .04s,
		transform .34s cubic-bezier(.22, .61, .36, 1),
		visibility 0s linear 0s !important;
}

.del-blog-section .del-filter-chips {
	display: flex !important;
	min-height: 0 !important;
	overflow: hidden !important;
	flex-wrap: wrap !important;
	gap: 6px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	list-style: none !important;
}

.del-blog-section .del-chip {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	height: 32px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	border: 0 !important;
	border-radius: 4px !important;
	background: var(--del-soft) !important;
	box-shadow: none !important;
	color: var(--del-body) !important;
	cursor: pointer !important;
	font: inherit !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	text-decoration: none !important;
	transition: background .15s ease, color .15s ease !important;
}

.del-blog-section .del-chip:hover,
.del-blog-section .del-chip:focus-visible {
	background: #EEF4FF !important;
	color: var(--del-blue) !important;
}

.del-blog-section .del-chip.is-active {
	background: var(--del-blue) !important;
	color: #fff !important;
	font-weight: 600 !important;
}

.del-blog-section .del-filter-header:focus-visible,
.del-blog-section .del-chip:focus-visible,
.del-blog-section .del-blog-clear-btn:focus-visible,
.del-blog-section .del-blog-card__title a:focus-visible,
.del-blog-section .del-blog-card__arrow-btn:focus-visible,
.del-blog-section .del-blog-pagination__btn:focus-visible {
	outline: 2px solid var(--del-blue) !important;
	outline-offset: 3px !important;
}

.del-blog-section .del-filter-footer {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	margin: 0 !important;
	padding: 12px 0 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

.del-blog-section .del-blog-results-count {
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	color: var(--del-muted) !important;
	font: inherit !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
}

.del-blog-section .del-blog-clear-btn {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 5px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--del-muted) !important;
	cursor: pointer !important;
	font: inherit !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: .05em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	transition: color .15s ease !important;
}

.del-blog-section .del-blog-clear-btn:hover {
	color: var(--del-orange) !important;
}

/* ──────────────────────────────────────────────────────────────────────────
   Editorial card grid
   ────────────────────────────────────────────────────────────────────────── */
.del-blog-section .del-blog-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	/* Stretch all cards within a grid row. This prevents a shorter featured card
	 * from leaving an empty block beneath it when the adjacent standard card is taller. */
	align-items: stretch !important;
	gap: 20px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	transition: opacity .18s ease !important;
}

.del-blog-section .del-blog-grid--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.del-blog-section .del-blog-grid.is-refreshing {
	opacity: .3 !important;
	pointer-events: none !important;
}

.del-blog-section .del-blog-card {
	display: flex !important;
	flex-direction: column !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 1.5px solid var(--del-card-border) !important;
	border-radius: 6px !important;
	background: #fff !important;
	box-shadow: none !important;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important;
}

.del-blog-section .del-blog-card:hover {
	border-color: var(--del-blue) !important;
	box-shadow: 0 12px 36px rgba(25, 101, 176, .12) !important;
	transform: translateY(-4px) !important;
}

.del-blog-section .del-blog-card--featured {
	grid-column: span 2 !important;
	align-self: stretch !important;
	flex-direction: row !important;
}

.del-blog-section .del-blog-card__img-link {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.del-blog-section .del-blog-card--featured .del-blog-card__img-link {
	width: 52% !important;
	flex: 0 0 52% !important;
}

.del-blog-section .del-blog-card__image-wrap {
	position: relative !important;
	width: 100% !important;
	min-height: 0 !important;
	overflow: hidden !important;
	background: var(--del-soft) !important;
	aspect-ratio: 16 / 10 !important;
}

.del-blog-section .del-blog-card--featured .del-blog-card__image-wrap {
	height: 100% !important;
	min-height: 220px !important;
	aspect-ratio: auto !important;
}

.del-blog-section .del-blog-card__image {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	object-fit: cover !important;
	filter: none !important;
	transition: transform .4s ease !important;
}

.del-blog-section .del-blog-card:hover .del-blog-card__image {
	transform: scale(1.03) !important;
}

.del-blog-section .del-blog-card__image-placeholder {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 160px !important;
	background: var(--del-soft) !important;
	color: #c6c7ca !important;
}

.del-blog-section .del-blog-card__image-placeholder svg {
	width: 88px !important;
	height: auto !important;
}

/* Multiple categories are rendered as individual badges. The badge tray wraps
 * inside the image rather than hiding categories after the first assigned term. */
.del-blog-section .del-blog-card__cat-badges {
	position: absolute !important;
	z-index: 2 !important;
	bottom: 10px !important;
	left: 10px !important;
	right: 10px !important;
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: flex-end !important;
	gap: 6px !important;
	margin: 0 !important;
	padding: 0 !important;
	pointer-events: none !important;
}

.del-blog-section .del-blog-card__cat-badge {
	position: static !important;
	display: inline-flex !important;
	align-items: center !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 5px 9px !important;
	border: 0 !important;
	border-radius: 3px !important;
	box-shadow: none !important;
	color: #fff !important;
	font: inherit !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	letter-spacing: .06em !important;
	text-align: left !important;
	text-transform: uppercase !important;
	white-space: normal !important;
	overflow-wrap: anywhere !important;
}

.del-blog-section .del-blog-card__cat-badge--orange { background: var(--del-orange) !important; }
.del-blog-section .del-blog-card__cat-badge--green  { background: var(--del-green) !important; }
.del-blog-section .del-blog-card__cat-badge--blue   { background: var(--del-blue) !important; }

.del-blog-section .del-blog-card__body {
	display: flex !important;
	flex: 1 1 auto !important;
	flex-direction: column !important;
	min-width: 0 !important;
	gap: 10px !important;
	margin: 0 !important;
	padding: 18px 18px 16px !important;
	border: 0 !important;
	background: #fff !important;
}

.del-blog-section .del-blog-card--featured .del-blog-card__body {
	justify-content: center !important;
	padding: 24px 22px !important;
}

.del-blog-section .del-blog-card__date {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--del-muted) !important;
	font: inherit !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	letter-spacing: .03em !important;
}

.del-blog-section .del-blog-card__title {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--del-dark) !important;
	font: inherit !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.38 !important;
	letter-spacing: -.01em !important;
}

.del-blog-section .del-blog-card--featured .del-blog-card__title {
	font-size: 18px !important;
}

.del-blog-section .del-blog-card__title a {
	color: inherit !important;
	font: inherit !important;
	text-decoration: none !important;
	transition: color .18s ease !important;
}

.del-blog-section .del-blog-card:hover .del-blog-card__title,
.del-blog-section .del-blog-card:hover .del-blog-card__title a {
	color: var(--del-blue) !important;
}

.del-blog-section .del-blog-card__excerpt {
	display: -webkit-box !important;
	flex: 1 1 auto !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--del-body) !important;
	font: inherit !important;
	font-size: 13.5px !important;
	font-weight: 400 !important;
	line-height: 1.65 !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 3 !important;
}

.del-blog-section .del-blog-card--featured .del-blog-card__excerpt {
	-webkit-line-clamp: 4 !important;
}

.del-blog-section .del-blog-card__cta {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	margin-top: auto !important;
	padding: 12px 0 0 !important;
	border-top: 1px solid var(--del-border) !important;
	background: transparent !important;
}

.del-blog-section .del-blog-card__cta-label {
	color: var(--del-muted) !important;
	font: inherit !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: .07em !important;
	text-transform: uppercase !important;
	transition: color .18s ease !important;
}

.del-blog-section .del-blog-card:hover .del-blog-card__cta-label {
	color: var(--del-orange) !important;
}

.del-blog-section .del-blog-card__arrow-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 0 auto !important;
	width: 28px !important;
	height: 28px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1.5px solid var(--del-card-border) !important;
	border-radius: 4px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: var(--del-muted) !important;
	text-decoration: none !important;
	transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease !important;
}

.del-blog-section .del-blog-card:hover .del-blog-card__arrow-btn {
	border-color: var(--del-orange) !important;
	background: var(--del-orange) !important;
	color: #fff !important;
	transform: translateX(2px) !important;
}

/* ──────────────────────────────────────────────────────────────────────────
   Empty state, pagination and loading treatment
   ────────────────────────────────────────────────────────────────────────── */
.del-blog-section .del-blog-no-results {
	grid-column: 1 / -1 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 12px !important;
	margin: 0 !important;
	padding: 48px 24px !important;
	border: 1.5px solid var(--del-card-border) !important;
	border-radius: 6px !important;
	background: #fff !important;
	text-align: center !important;
}

.del-blog-section .del-blog-no-results__icon {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 42px !important;
	height: 42px !important;
	border-radius: 4px !important;
	background: #EEF4FF !important;
	color: var(--del-blue) !important;
	font-weight: 700 !important;
}

.del-blog-section .del-blog-no-results__message {
	max-width: 420px !important;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--del-body) !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
}

.del-blog-section .del-blog-pagination {
	margin: 32px 0 0 !important;
	padding: 0 !important;
}

.del-blog-section .del-blog-pagination__nav {
	display: flex !important;
	justify-content: center !important;
}

.del-blog-section .del-blog-pagination__list {
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.del-blog-section .del-blog-pagination__btn {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 32px !important;
	height: 32px !important;
	margin: 0 !important;
	padding: 0 9px !important;
	border: 1.5px solid var(--del-card-border) !important;
	border-radius: 4px !important;
	background: #fff !important;
	color: var(--del-body) !important;
	cursor: pointer !important;
	font: inherit !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	transition: color .15s ease, border-color .15s ease, background .15s ease !important;
}

.del-blog-section .del-blog-pagination__btn:hover,
.del-blog-section .del-blog-pagination__btn--active {
	border-color: var(--del-blue) !important;
	background: var(--del-blue) !important;
	color: #fff !important;
}

.del-blog-section .del-blog-pagination__ellipsis {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 24px !important;
	height: 32px !important;
	color: var(--del-muted) !important;
}

.del-blog-section .del-blog-loading-overlay {
	position: absolute !important;
	z-index: 5 !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	display: none !important;
	align-items: center !important;
	justify-content: center !important;
	pointer-events: none !important;
	background: rgba(255, 255, 255, .58) !important;
}

.del-blog-section.is-loading .del-blog-loading-overlay {
	display: flex !important;
}

.del-blog-section .del-blog-spinner {
	display: inline-flex !important;
	gap: 5px !important;
	padding: 10px 12px !important;
	border: 1px solid var(--del-border) !important;
	border-radius: 4px !important;
	background: #fff !important;
	box-shadow: 0 8px 24px rgba(16, 32, 51, .12) !important;
}

.del-blog-section .del-blog-spinner span {
	width: 6px !important;
	height: 6px !important;
	border-radius: 50% !important;
	background: var(--del-blue) !important;
	animation: del-blog-dot 1s infinite ease-in-out !important;
}

.del-blog-section .del-blog-spinner span:nth-child(2) { animation-delay: .15s !important; }
.del-blog-section .del-blog-spinner span:nth-child(3) { animation-delay: .30s !important; }

@keyframes del-blog-dot {
	0%, 80%, 100% { opacity: .28; transform: translateY(0); }
	40% { opacity: 1; transform: translateY(-3px); }
}

/* ──────────────────────────────────────────────────────────────────────────
   Responsive behaviour
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
	.del-blog-section .del-filter-dim {
		width: 108px !important;
		min-width: 108px !important;
		font-size: 15px !important;
	}

	.del-blog-section .del-filter-badge {
		max-width: min(58vw, 360px) !important;
	}
}

@media (max-width: 1024px) {
	.del-blog-section .del-blog-filters {
		margin-bottom: 28px !important;
		padding-left: 18px !important;
	}

	.del-blog-section .del-blog-grid,
	.del-blog-section .del-blog-grid--cols-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.del-blog-section .del-blog-card--featured .del-blog-card__image-wrap {
		min-height: 240px !important;
	}

	.del-blog-section .del-blog-card--featured .del-blog-card__body {
		padding: 22px 20px !important;
	}
}

@media (max-width: 767px) {
	.del-blog-section .del-blog-filters {
		margin-bottom: 24px !important;
		padding: 0 0 18px 16px !important;
		border-left-width: 3px !important;
	}

	.del-blog-section .del-filter-header {
		padding: 11px 7px !important;
	}

	.del-blog-section .del-filter-header__left {
		gap: 12px !important;
	}

	.del-blog-section .del-filter-chevron {
		width: 26px !important;
		height: 26px !important;
		margin-left: 8px !important;
	}

	.del-blog-section .del-filter-dim {
		width: 100px !important;
		min-width: 100px !important;
		font-size: 14px !important;
		letter-spacing: .02em !important;
	}

	.del-blog-section .del-filter-badge {
		height: 30px !important;
		max-width: min(56vw, 300px) !important;
		font-size: 13px !important;
	}

	.del-blog-section .del-filter-row.is-open .del-filter-body {
		padding: 6px 0 14px !important;
	}

	.del-blog-section .del-filter-chips {
		gap: 7px !important;
	}

	.del-blog-section .del-chip {
		height: 34px !important;
		padding: 0 13px !important;
		font-size: 13px !important;
	}

	.del-blog-section .del-filter-footer {
		padding-top: 14px !important;
	}

	.del-blog-section .del-blog-grid,
	.del-blog-section .del-blog-grid--cols-2,
	.del-blog-section .del-blog-grid--cols-3 {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 16px !important;
	}

	.del-blog-section .del-blog-card--featured {
		grid-column: span 1 !important;
		flex-direction: column !important;
	}

	.del-blog-section .del-blog-card--featured .del-blog-card__img-link {
		width: 100% !important;
		flex-basis: auto !important;
	}

	.del-blog-section .del-blog-card--featured .del-blog-card__image-wrap {
		height: auto !important;
		min-height: 0 !important;
		aspect-ratio: 16 / 10 !important;
	}

	.del-blog-section .del-blog-card--featured .del-blog-card__body {
		padding: 18px 18px 16px !important;
	}

	.del-blog-section .del-blog-card--featured .del-blog-card__title {
		font-size: 16px !important;
	}

	.del-blog-section .del-blog-card__cat-badges {
		bottom: 8px !important;
		left: 8px !important;
		right: 8px !important;
		gap: 5px !important;
	}

	.del-blog-section .del-blog-card__cat-badge {
		font-size: 9px !important;
		padding: 4px 7px !important;
	}
}

@media (max-width: 480px) {
	.del-blog-section .del-filter-header__left {
		gap: 9px !important;
	}

	.del-blog-section .del-filter-dim {
		width: 94px !important;
		min-width: 94px !important;
		font-size: 14px !important;
		letter-spacing: .015em !important;
	}

	.del-blog-section .del-filter-badge {
		max-width: calc(100vw - 190px) !important;
		padding: 0 10px !important;
	}


	.del-blog-section .del-filter-footer {
		align-items: flex-start !important;
		flex-direction: column !important;
	}

	.del-blog-section .del-blog-card__body,
	.del-blog-section .del-blog-card--featured .del-blog-card__body {
		padding: 17px 16px 15px !important;
	}
}

@media (max-width: 360px) {
	.del-blog-section .del-filter-header__left {
		gap: 7px !important;
	}

	.del-blog-section .del-filter-chevron {
		width: 24px !important;
		height: 24px !important;
		margin-left: 6px !important;
	}

	.del-blog-section .del-filter-dim {
		width: 88px !important;
		min-width: 88px !important;
		font-size: 13px !important;
	}

	.del-blog-section .del-filter-badge {
		max-width: calc(100vw - 180px) !important;
		font-size: 12px !important;
	}

	.del-blog-section .del-chip {
		padding: 0 11px !important;
		font-size: 12px !important;
	}
}


@media (prefers-reduced-motion: reduce) {
	.del-blog-section .del-filter-header,
	.del-blog-section .del-filter-chevron,
	.del-blog-section .del-filter-body {
		transition-duration: .01ms !important;
	}
}
