.dcbp-blog {
	--dcbp-navy: #11175f;
	--dcbp-navy-dark: #09134c;
	--dcbp-ink: #182052;
	--dcbp-muted: #6d7697;
	--dcbp-line: #e4e8f4;
	--dcbp-soft: #f7f9fd;
	--dcbp-accent: #ff5b65;
	--dcbp-shadow: 0 18px 45px rgba(18, 31, 86, .08);
	background: #ffffff;
	color: var(--dcbp-ink);
	font-family: Lato, Arial, sans-serif;
	letter-spacing: 0;
}

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

.dcbp-blog a {
	text-decoration: none;
}

.dcbp-blog svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	flex: 0 0 auto;
}

.dcbp-shell {
	width: min(100% - 32px, 1120px);
	margin: 0 auto;
	padding: 34px 0 36px;
}

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

.dcbp-breadcrumb {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	color: var(--dcbp-muted);
	font-size: 14px;
	font-weight: 800;
}

.dcbp-breadcrumb a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--dcbp-navy);
}

.dcbp-featured {
	display: grid;
	grid-template-columns: minmax(0, 570px) minmax(320px, 1fr);
	gap: 52px;
	align-items: center;
	margin-bottom: 26px;
	padding: 6px 6px 72px;
	border: 1px solid var(--dcbp-line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--dcbp-shadow);
}

.dcbp-featured__media,
.dcbp-card__media,
.dcbp-popular-item__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--dcbp-soft);
}

.dcbp-featured__media {
	aspect-ratio: 1.23 / 1;
	border-radius: 6px;
}

.dcbp-featured__image,
.dcbp-card__image,
.dcbp-popular-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dcbp-featured__content {
	padding: 18px 42px 18px 0;
}

.dcbp-pill,
.dcbp-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid color-mix(in srgb, var(--dcbp-accent) 42%, #ffffff);
	border-radius: 7px;
	background: color-mix(in srgb, var(--dcbp-accent) 13%, #ffffff);
	color: var(--dcbp-accent);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.dcbp-pill {
	margin-bottom: 28px;
	padding: 10px 16px;
	border-color: #e0e4f6;
	background: #e9ecfb;
	color: var(--dcbp-navy);
}

.dcbp-featured h2,
.dcbp-card h2,
.dcbp-section-head h2,
.dcbp-newsletter h2,
.dcbp-empty h2 {
	margin: 0;
	color: var(--dcbp-navy);
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
}

.dcbp-featured h2 {
	max-width: 500px;
	font-size: 35px;
}

.dcbp-featured h2 a,
.dcbp-card h2 a,
.dcbp-popular-item h3 a {
	color: inherit;
}

.dcbp-featured p {
	margin: 22px 0 18px;
	color: #4b547a;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
}

.dcbp-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 28px;
	color: var(--dcbp-muted);
	font-size: 13px;
	font-weight: 800;
}

.dcbp-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.dcbp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 42px;
	padding: 12px 23px;
	border: 0;
	border-radius: 6px;
	background: var(--dcbp-navy);
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	box-shadow: 0 10px 22px rgba(17, 23, 95, .2);
	cursor: pointer;
}

.dcbp-button:hover,
.dcbp-button:focus-visible {
	background: var(--dcbp-navy-dark);
	color: #ffffff;
}

.dcbp-button:disabled {
	opacity: .65;
	cursor: wait;
}

.dcbp-chips {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
	gap: 24px;
	width: min(100% - 118px, 930px);
	margin: -72px auto 34px;
}

.dcbp-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid color-mix(in srgb, var(--dcbp-accent) 42%, #ffffff);
	border-radius: 7px;
	background: #ffffff;
	color: var(--dcbp-accent);
	font-size: 13px;
	font-weight: 900;
	box-shadow: 0 8px 18px rgba(15, 31, 88, .035);
}

.dcbp-chip.is-active,
.dcbp-chip:hover,
.dcbp-chip:focus-visible {
	background: color-mix(in srgb, var(--dcbp-accent) 10%, #ffffff);
	color: var(--dcbp-accent);
}

.dcbp-controls {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 30px;
}

.dcbp-controls label {
	display: grid;
	gap: 9px;
	min-width: 230px;
	color: var(--dcbp-navy);
	font-size: 14px;
	font-weight: 900;
}

.dcbp-controls label:first-child {
	margin-right: auto;
}

.dcbp-controls select,
.dcbp-newsletter input[type="email"] {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--dcbp-line);
	border-radius: 6px;
	background-color: #ffffff;
	color: var(--dcbp-ink);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 8px 20px rgba(15, 31, 88, .04);
}

.dcbp-controls select {
	padding: 0 42px 0 16px;
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--dcbp-muted) 50%),
		linear-gradient(135deg, var(--dcbp-muted) 50%, transparent 50%);
	background-position:
		calc(100% - 21px) 19px,
		calc(100% - 15px) 19px;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.dcbp-controls__submit {
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--dcbp-navy);
	border-radius: 6px;
	background: #ffffff;
	color: var(--dcbp-navy);
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}

.dcbp-js .dcbp-blog .dcbp-controls__submit {
	position: absolute;
	width: 1px;
	height: 1px;
	min-height: 0;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

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

.dcbp-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	min-width: 0;
	border: 1px solid var(--dcbp-line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(15, 31, 88, .07);
}

.dcbp-card__media {
	aspect-ratio: 1.62 / 1;
}

.dcbp-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 8px 12px;
	background: #ffffff;
}

.dcbp-card__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 20px 22px;
}

.dcbp-card time {
	color: var(--dcbp-muted);
	font-size: 12px;
	font-weight: 800;
}

.dcbp-card h2 {
	font-size: 19px;
}

.dcbp-card p {
	margin: 0;
	color: #444d75;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.62;
}

.dcbp-readmore,
.dcbp-section-head a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--dcbp-navy);
	font-size: 13px;
	font-weight: 900;
}

.dcbp-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 34px 0 8px;
}

.dcbp-pagination a,
.dcbp-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--dcbp-line);
	border-radius: 6px;
	color: var(--dcbp-navy);
	font-size: 14px;
	font-weight: 900;
}

.dcbp-pagination span {
	background: var(--dcbp-navy);
	color: #ffffff;
}

.dcbp-empty {
	grid-column: 1 / -1;
	padding: 50px 24px;
	border: 1px solid var(--dcbp-line);
	border-radius: 8px;
	background: var(--dcbp-soft);
	text-align: center;
}

.dcbp-empty p {
	max-width: 520px;
	margin: 12px auto 22px;
	color: var(--dcbp-muted);
	line-height: 1.7;
}

.dcbp-popular {
	margin-top: 38px;
}

.dcbp-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.dcbp-section-head h2,
.dcbp-newsletter h2,
.dcbp-empty h2 {
	font-size: 24px;
}

.dcbp-popular__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.dcbp-popular-item {
	display: grid;
	grid-template-columns: 28px 64px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-width: 0;
}

.dcbp-popular-item__rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--dcbp-navy);
	color: #ffffff;
	font-size: 12px;
	font-weight: 900;
}

.dcbp-popular-item__media {
	width: 64px;
	height: 64px;
	border-radius: 6px;
}

.dcbp-popular-item h3 {
	margin: 0 0 4px;
	color: var(--dcbp-navy);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.34;
}

.dcbp-popular-item span,
.dcbp-popular-item time {
	display: block;
	color: var(--dcbp-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.45;
}

.dcbp-newsletter {
	display: grid;
	grid-template-columns: 76px minmax(230px, .82fr) minmax(320px, 1.2fr);
	gap: 24px;
	align-items: center;
	margin-top: 44px;
	padding: 33px 32px;
	border: 1px solid var(--dcbp-line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 14px 32px rgba(15, 31, 88, .06);
}

.dcbp-newsletter__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #ffe6e6;
	color: #ff464f;
	font-size: 26px;
}

.dcbp-newsletter p {
	margin: 10px 0 0;
	color: #4d567d;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.65;
}

.dcbp-newsletter__form {
	display: grid;
	gap: 12px;
}

.dcbp-newsletter__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
}

.dcbp-newsletter input[type="email"] {
	padding: 0 16px;
}

.dcbp-newsletter__consent {
	display: grid;
	grid-template-columns: 16px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: var(--dcbp-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.55;
}

.dcbp-newsletter__consent input {
	width: 15px;
	height: 15px;
	margin: 2px 0 0;
	accent-color: var(--dcbp-navy);
}

.dcbp-newsletter__message {
	display: none;
	margin: 0;
	font-size: 13px;
	font-weight: 900;
}

.dcbp-newsletter__message.is-visible {
	display: block;
}

.dcbp-newsletter__message.is-error {
	color: #c92f3d;
}

.dcbp-newsletter__message.is-success {
	color: #20764d;
}

.dcbp-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f4f6fb, #e9edf7);
	color: #a2abc3;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0;
}

.dcbp-image-placeholder--large {
	font-size: 42px;
}

.dcbp-image-placeholder--small {
	font-size: 12px;
}

@media (max-width: 1024px) {
	.dcbp-featured {
		grid-template-columns: 1fr;
		gap: 24px;
		padding-bottom: 52px;
	}

	.dcbp-featured__content {
		padding: 0 28px;
	}

	.dcbp-featured__media {
		aspect-ratio: 16 / 9;
	}

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

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

	.dcbp-newsletter {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.dcbp-newsletter__form {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.dcbp-shell {
		width: min(100% - 24px, 1120px);
		padding-top: 24px;
	}

	.dcbp-breadcrumb {
		margin-bottom: 18px;
		font-size: 13px;
	}

	.dcbp-featured {
		margin-bottom: 22px;
		padding: 5px 5px 30px;
	}

	.dcbp-featured h2 {
		font-size: 26px;
	}

	.dcbp-featured__content {
		padding: 0 18px;
	}

	.dcbp-featured p {
		font-size: 15px;
	}

	.dcbp-meta {
		gap: 12px;
	}

	.dcbp-chips {
		width: 100%;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		margin: 0 0 24px;
	}

	.dcbp-chip {
		min-height: 40px;
		font-size: 12px;
	}

	.dcbp-controls {
		display: grid;
		grid-template-columns: 1fr;
	}

	.dcbp-controls label {
		min-width: 0;
	}

	.dcbp-grid,
	.dcbp-popular__list {
		grid-template-columns: 1fr;
	}

	.dcbp-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.dcbp-popular-item {
		grid-template-columns: 30px 70px minmax(0, 1fr);
	}

	.dcbp-popular-item__media {
		width: 70px;
		height: 70px;
	}

	.dcbp-newsletter {
		grid-template-columns: 1fr;
		padding: 24px 18px;
	}

	.dcbp-newsletter__row {
		grid-template-columns: 1fr;
	}

	.dcbp-newsletter .dcbp-button {
		width: 100%;
	}
}

@media (max-width: 420px) {
	.dcbp-chips {
		grid-template-columns: 1fr;
	}

	.dcbp-featured h2 {
		font-size: 24px;
	}
}

@supports not (color: color-mix(in srgb, #000 50%, #fff)) {
	.dcbp-pill,
	.dcbp-card__badge,
	.dcbp-chip {
		border-color: var(--dcbp-line);
		background: #ffffff;
	}
}
