.dsbs-news-page {
	--dsbs-blue: #082d68;
	--dsbs-blue-2: #0647a8;
	--dsbs-red: #df1f2d;
	--dsbs-ink: #102244;
	--dsbs-muted: #64748b;
	--dsbs-soft: #f4f7fc;
	--dsbs-line: #e4ebf6;
	--dsbs-shadow: 0 18px 48px rgba(8, 45, 104, .12);
	background: #fff;
	color: var(--dsbs-ink);
	font-family: Poppins, Montserrat, Arial, sans-serif;
}

.dsbs-news-context-service {
	--dsbs-blue: #0f3d3a;
	--dsbs-blue-2: #13746c;
	--dsbs-red: #c8521f;
	--dsbs-ink: #173834;
	--dsbs-muted: #667872;
	--dsbs-soft: #f3faf6;
	--dsbs-line: #d9ebe4;
	--dsbs-shadow: 0 18px 48px rgba(15, 61, 58, .14);
}

.dsbs-news-page * {
	box-sizing: border-box;
}

.dsbs-news-page a {
	text-decoration: none;
}

.dsbs-news-hero {
	background: linear-gradient(90deg, rgba(8, 45, 104, .97), rgba(6, 71, 168, .88)), var(--dsbs-hero-image, linear-gradient(90deg, #082d68, #0647a8));
	background-position: center;
	background-size: cover;
	color: #fff;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	position: relative;
	width: 100vw;
}

.dsbs-news-context-service .dsbs-news-hero {
	background: linear-gradient(105deg, rgba(12, 56, 51, .97), rgba(19, 116, 108, .9) 54%, rgba(200, 82, 31, .84)), var(--dsbs-hero-image, linear-gradient(105deg, #0f3d3a, #13746c 58%, #c8521f));
}

.dsbs-news-hero::after {
	border: 70px solid rgba(255, 255, 255, .06);
	border-radius: 50%;
	bottom: -220px;
	content: "";
	height: 520px;
	pointer-events: none;
	position: absolute;
	right: -160px;
	width: 520px;
}

.dsbs-news-context-service .dsbs-news-hero::after {
	background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0));
	border: 0;
	border-radius: 0;
	bottom: -120px;
	height: 360px;
	right: -70px;
	transform: rotate(-8deg);
	width: 420px;
}

.dsbs-news-hero-inner {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
	margin: 0 auto;
	max-width: 1180px;
	padding: 68px 24px;
	position: relative;
	z-index: 1;
}

.dsbs-news-breadcrumb {
	align-items: center;
	color: rgba(255, 255, 255, .8);
	display: flex;
	font-size: 13px;
	gap: 9px;
	margin-bottom: 22px;
}

.dsbs-news-breadcrumb a {
	color: #fff;
	font-weight: 700;
}

.dsbs-news-kicker {
	color: #bcd3ff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.dsbs-news-context-service .dsbs-news-kicker {
	color: #ffe1bd;
}

.dsbs-news-hero h1 {
	color: #fff;
	font-size: clamp(40px, 5vw, 66px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0 0 16px;
}

.dsbs-news-hero p {
	color: #eef5ff;
	font-size: 18px;
	line-height: 1.58;
	margin: 0;
	max-width: 620px;
}

.dsbs-news-search {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(8, 45, 104, .12);
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
	display: flex;
	overflow: hidden;
	width: 100%;
}

.dsbs-news-search input {
	background: #fff;
	border: 0;
	color: var(--dsbs-ink);
	font-size: 15px;
	min-width: 0;
	outline: 0;
	padding: 18px 20px;
	width: 100%;
}

.dsbs-news-search button {
	align-self: stretch;
	background: #fff;
	border: 0;
	color: var(--dsbs-blue);
	cursor: pointer;
	font-size: 17px;
	line-height: 1;
	padding: 0;
	transition: background-color .2s ease, color .2s ease;
	width: 56px;
}

.dsbs-news-search button:hover,
.dsbs-news-search button:focus-visible {
	background: var(--dsbs-blue);
	color: #fff;
}

.dsbs-news-search-sidebar {
	border-color: var(--dsbs-line);
	box-shadow: none;
}

.dsbs-news-toolbar {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1180px;
	padding: 28px 24px 22px;
}

.dsbs-news-chip-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.dsbs-news-chip {
	align-items: center;
	background: #fff;
	border: 1px solid var(--dsbs-line);
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(8, 45, 104, .06);
	color: var(--dsbs-ink);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	justify-content: center;
	min-height: 38px;
	padding: 9px 20px;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.dsbs-news-chip:hover,
.dsbs-news-chip:focus-visible {
	border-color: #a7bce3;
	box-shadow: 0 14px 30px rgba(8, 45, 104, .12);
	transform: translateY(-1px);
}

.dsbs-news-chip.is-active {
	background: var(--dsbs-blue-2);
	border-color: var(--dsbs-blue-2);
	color: #fff;
}

.dsbs-news-chip-outline.is-active {
	background: #fff;
	border-color: var(--dsbs-blue-2);
	color: var(--dsbs-blue-2);
}

.dsbs-news-shell {
	align-items: start;
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, 1fr) 300px;
	margin: 0 auto;
	max-width: 1180px;
	padding: 0 24px 70px;
}

.dsbs-news-featured {
	background: #fff;
	border: 1px solid var(--dsbs-line);
	border-radius: 8px;
	box-shadow: var(--dsbs-shadow);
	display: grid;
	grid-template-columns: minmax(0, 1.14fr) minmax(280px, .86fr);
	margin-bottom: 30px;
	overflow: hidden;
}

.dsbs-news-context-service .dsbs-news-featured {
	border-top: 5px solid var(--dsbs-red);
}

.dsbs-news-featured-image {
	background: var(--dsbs-soft);
	display: block;
	height: 100%;
	min-height: 360px;
	overflow: hidden;
}

.dsbs-news-featured-image img,
.dsbs-news-card-image img {
	display: block;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform .35s ease;
	width: 100%;
}

.dsbs-news-image-fallback {
	align-items: center;
	background: linear-gradient(135deg, rgba(8, 45, 104, .08), rgba(6, 71, 168, .16));
	color: var(--dsbs-blue-2);
	display: flex;
	font-size: 42px;
	height: 100%;
	justify-content: center;
	min-height: inherit;
	width: 100%;
}

.dsbs-news-context-service .dsbs-news-image-fallback {
	background: linear-gradient(135deg, rgba(19, 116, 108, .1), rgba(200, 82, 31, .16));
	color: var(--dsbs-red);
}

.dsbs-news-featured:hover img,
.dsbs-news-card:hover img {
	transform: scale(1.035);
}

.dsbs-news-featured-copy {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 34px 32px;
}

.dsbs-news-badge {
	background: var(--dsbs-blue);
	border-radius: 6px;
	color: #fff;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	margin-bottom: 18px;
	padding: 7px 12px;
	text-transform: uppercase;
}

.dsbs-news-context-service .dsbs-news-badge,
.dsbs-news-context-service .dsbs-single-badge {
	background: #fff3e8;
	border-color: #ffd7b7;
	color: var(--dsbs-red);
}

.dsbs-news-date {
	color: var(--dsbs-muted) !important;
	font-size: 14px !important;
	margin: 0 0 12px !important;
}

.dsbs-news-featured h2 {
	font-size: 32px;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0 0 16px;
}

.dsbs-news-featured h2 a,
.dsbs-news-card h3 a {
	color: var(--dsbs-ink);
}

.dsbs-news-featured p {
	color: #50617d;
	font-size: 16px;
	line-height: 1.62;
	margin: 0 0 20px;
}

.dsbs-news-button {
	align-items: center;
	background: var(--dsbs-blue-2);
	border: 1px solid var(--dsbs-blue-2);
	border-radius: 7px;
	color: #fff !important;
	display: inline-flex;
	font-size: 13px;
	font-weight: 850;
	gap: 10px;
	justify-content: center;
	min-height: 42px;
	padding: 12px 18px;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.dsbs-news-button:hover,
.dsbs-news-button:focus-visible {
	background: var(--dsbs-blue);
	box-shadow: 0 14px 28px rgba(8, 45, 104, .18);
	transform: translateY(-1px);
}

.dsbs-news-button-light {
	background: #fff;
	border-color: #fff;
	color: var(--dsbs-blue) !important;
}

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

.dsbs-news-card {
	background: #fff;
	border: 1px solid var(--dsbs-line);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(8, 45, 104, .08);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
}

.dsbs-news-context-service .dsbs-news-card {
	position: relative;
}

.dsbs-news-context-service .dsbs-news-card::before {
	background: linear-gradient(180deg, var(--dsbs-red), var(--dsbs-blue-2));
	content: "";
	inset: 0 auto 0 0;
	position: absolute;
	width: 4px;
}

.dsbs-news-context-service .dsbs-news-card-body {
	padding-left: 22px;
}

.dsbs-news-card-image {
	aspect-ratio: 1.28 / 1;
	background: var(--dsbs-soft);
	display: block;
	overflow: hidden;
}

.dsbs-news-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.dsbs-news-card-meta {
	align-items: center;
	color: var(--dsbs-muted);
	display: flex;
	font-size: 11px;
	font-weight: 800;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.dsbs-news-card-meta span {
	color: var(--dsbs-blue-2);
}

.dsbs-news-card h3 {
	font-size: 18px;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0 0 10px;
}

.dsbs-news-card p {
	color: #5f6f88;
	font-size: 13px;
	line-height: 1.55;
	margin: 0 0 16px;
}

.dsbs-news-read-more {
	color: var(--dsbs-blue-2);
	font-size: 13px;
	font-weight: 900;
	margin-top: auto;
}

.dsbs-news-pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 34px;
}

.dsbs-news-pagination .page-numbers {
	align-items: center;
	background: #fff;
	border: 1px solid var(--dsbs-line);
	border-radius: 8px;
	color: var(--dsbs-ink);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	height: 38px;
	justify-content: center;
	min-width: 38px;
	padding: 0 10px;
}

.dsbs-news-pagination .page-numbers.current,
.dsbs-news-pagination a.page-numbers:hover,
.dsbs-news-pagination a.page-numbers:focus-visible {
	background: var(--dsbs-blue-2);
	border-color: var(--dsbs-blue-2);
	color: #fff;
}

.dsbs-news-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 22px;
}

.dsbs-sidebar-card {
	background: #fff;
	border: 1px solid var(--dsbs-line);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(8, 45, 104, .08);
	padding: 22px;
}

.dsbs-sidebar-card h2 {
	color: var(--dsbs-blue);
	font-size: 20px;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 18px;
}

.dsbs-sidebar-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dsbs-sidebar-links a {
	align-items: center;
	border-bottom: 1px solid var(--dsbs-line);
	color: var(--dsbs-ink);
	display: flex;
	font-size: 14px;
	font-weight: 800;
	gap: 12px;
	justify-content: space-between;
	padding: 10px 0;
}

.dsbs-sidebar-links a:last-child {
	border-bottom: 0;
}

.dsbs-sidebar-links strong {
	align-items: center;
	background: #dceaff;
	border-radius: 999px;
	color: var(--dsbs-blue-2);
	display: inline-flex;
	font-size: 12px;
	height: 24px;
	justify-content: center;
	min-width: 34px;
}

.dsbs-sidebar-links a.is-active span,
.dsbs-sidebar-links a:hover span {
	color: var(--dsbs-blue-2);
}

.dsbs-news-archive-links details {
	border-bottom: 1px solid var(--dsbs-line);
	margin-bottom: 9px;
	padding: 0 0 9px;
}

.dsbs-news-archive-links details:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.dsbs-news-archive-links summary {
	align-items: center;
	color: var(--dsbs-blue);
	cursor: pointer;
	display: flex;
	font-weight: 900;
	gap: 12px;
	justify-content: space-between;
	list-style: none;
	padding: 6px 0;
}

.dsbs-news-archive-links summary::-webkit-details-marker {
	display: none;
}

.dsbs-news-archive-links summary::after {
	color: var(--dsbs-muted);
	content: "⌄";
	font-size: 14px;
}

.dsbs-news-archive-links details[open] summary::after {
	transform: rotate(180deg);
}

.dsbs-news-archive-links summary strong {
	color: #8aa4d2;
	font-size: 12px;
	margin-left: auto;
}

.dsbs-news-archive-links details div {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 5px 0 4px;
}

.dsbs-news-archive-links details a {
	align-items: center;
	color: #4f607d;
	display: flex;
	font-size: 13px;
	justify-content: space-between;
	padding: 6px 0 6px 10px;
}

.dsbs-news-archive-links details a:hover,
.dsbs-news-archive-links details a.is-active {
	color: var(--dsbs-blue-2);
	font-weight: 850;
}

.dsbs-recent-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dsbs-recent-list a {
	align-items: center;
	color: var(--dsbs-ink);
	display: grid;
	gap: 12px;
	grid-template-columns: 64px minmax(0, 1fr);
}

.dsbs-recent-list img {
	background: var(--dsbs-soft);
	border-radius: 7px;
	height: 58px;
	object-fit: cover;
	width: 64px;
}

.dsbs-recent-list .dsbs-news-image-fallback {
	border-radius: 7px;
	font-size: 18px;
	height: 58px;
	min-height: 0;
	width: 64px;
}

.dsbs-recent-list strong {
	display: block;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.25;
}

.dsbs-recent-list small {
	color: var(--dsbs-muted);
	display: block;
	font-size: 12px;
	margin-top: 4px;
}

.dsbs-sidebar-cta {
	background: linear-gradient(145deg, var(--dsbs-blue), var(--dsbs-blue-2));
	color: #fff;
	overflow: hidden;
	position: relative;
}

.dsbs-news-context-service .dsbs-sidebar-cta {
	background: linear-gradient(145deg, #103f3a, #13746c 58%, #c8521f);
}

.dsbs-sidebar-cta::after {
	border: 42px solid rgba(255, 255, 255, .08);
	border-radius: 50%;
	bottom: -90px;
	content: "";
	height: 220px;
	position: absolute;
	right: -80px;
	width: 220px;
}

.dsbs-sidebar-cta > * {
	position: relative;
	z-index: 1;
}

.dsbs-sidebar-cta h2,
.dsbs-sidebar-cta p {
	color: #fff;
}

.dsbs-sidebar-cta h2 {
	margin-bottom: 12px;
}

.dsbs-sidebar-cta p {
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 16px;
}

.dsbs-sidebar-cta-kicker {
	color: #bcd3ff !important;
	font-size: 12px !important;
	font-weight: 900;
	margin-bottom: 9px !important;
	text-transform: uppercase;
}

.dsbs-news-context-service .dsbs-sidebar-cta-kicker {
	color: #ffe1bd !important;
}

.dsbs-sidebar-note {
	color: var(--dsbs-muted);
	font-size: 14px;
	margin: 0;
}

.dsbs-news-empty {
	background: var(--dsbs-soft);
	border: 1px solid var(--dsbs-line);
	border-radius: 8px;
	padding: 36px;
	text-align: center;
}

.dsbs-news-empty h2 {
	color: var(--dsbs-blue);
	margin: 0 0 10px;
}

.dsbs-news-empty p {
	color: var(--dsbs-muted);
	margin: 0 0 18px;
}

.dsbs-news-single {
	background: #fff;
}

.dsbs-single-header {
	margin: 0 auto;
	max-width: 1180px;
	padding: 34px 24px 18px;
}

.dsbs-news-context-service .dsbs-single-header {
	background: linear-gradient(180deg, #f5fbf7 0%, #fff 100%);
	border-bottom: 1px solid var(--dsbs-line);
	margin-left: calc(50% - 50vw);
	max-width: none;
	padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
	padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
	width: 100vw;
}

.dsbs-news-context-service .dsbs-single-header > * {
	max-width: 780px;
}

.dsbs-single-breadcrumb {
	color: #6a7892;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.dsbs-single-breadcrumb a {
	color: var(--dsbs-blue);
}

.dsbs-single-breadcrumb span:last-child {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dsbs-single-badge {
	align-items: center;
	background: #fff1f2;
	border: 1px solid #ffd4da;
	border-radius: 6px;
	color: var(--dsbs-red);
	display: inline-flex;
	font-size: 11px !important;
	font-weight: 900;
	line-height: 1;
	margin: 0 0 12px !important;
	padding: 7px 10px;
	text-transform: uppercase;
}

.dsbs-single-header h1 {
	color: var(--dsbs-blue);
	font-size: 48px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0 0 12px;
	max-width: 780px;
}

.dsbs-single-lead {
	color: #263955 !important;
	font-size: 17px !important;
	line-height: 1.55 !important;
	margin: 0 0 18px !important;
	max-width: 760px;
}

.dsbs-single-meta-list {
	align-items: center;
	color: #52627d;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 12px 22px;
}

.dsbs-single-meta-list span {
	align-items: center;
	display: inline-flex;
	gap: 8px;
	min-width: 0;
}

.dsbs-single-meta-list i {
	color: var(--dsbs-blue-2);
	font-size: 14px;
}

.dsbs-single-shell {
	grid-template-columns: minmax(0, 820px) 320px;
	gap: 42px;
	justify-content: space-between;
	padding-top: 8px;
}

.dsbs-single-article {
	background: #fff;
	min-width: 0;
	padding: 0;
}

.dsbs-single-featured-image {
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(8, 45, 104, .1);
	margin: 0 0 26px;
	overflow: hidden;
	width: 100%;
}

.dsbs-single-featured-image img {
	display: block;
	height: auto;
	max-height: 470px;
	object-fit: cover;
	width: 100%;
}

.dsbs-single-body {
	color: #263955;
	font-size: 16px;
	line-height: 1.68;
	overflow-wrap: break-word;
}

.dsbs-single-summary {
	max-width: 790px;
}

.dsbs-single-body h1,
.dsbs-single-body h2,
.dsbs-single-body h3 {
	color: var(--dsbs-blue);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 26px 0 12px;
}

.dsbs-single-body p {
	margin: 0 0 18px;
}

.dsbs-single-body img {
	border-radius: 8px;
	height: auto;
	max-width: 100%;
}

.dsbs-single-body iframe {
	border-radius: 8px;
	max-width: 100%;
}

.dsbs-single-body figure {
	display: inline-block;
	margin: 6px;
	vertical-align: top;
	width: calc(33.333% - 12px);
}

.dsbs-single-body figure img {
	aspect-ratio: 1.35 / 1;
	display: block;
	object-fit: cover;
	width: 100%;
}

.dsbs-single-section {
	margin-top: 34px;
	scroll-margin-top: 90px;
}

.dsbs-single-section h2 {
	align-items: baseline;
	color: var(--dsbs-blue);
	display: flex;
	font-size: 18px;
	font-weight: 900;
	gap: 10px;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.dsbs-single-section h2::before {
	background: var(--dsbs-red);
	content: "";
	display: inline-block;
	height: 18px;
	width: 4px;
}

.dsbs-news-context-service .dsbs-single-section h2::before {
	background: linear-gradient(180deg, var(--dsbs-red), var(--dsbs-blue-2));
}

.dsbs-single-section h2 span {
	color: var(--dsbs-red);
	font-size: 12px;
	font-weight: 900;
	text-transform: none;
}

.dsbs-video-frame {
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
}

.dsbs-video-frame + .dsbs-video-frame {
	margin-top: 18px;
}

.dsbs-video-frame iframe {
	border: 0;
	display: block;
	height: 100% !important;
	width: 100% !important;
}

.dsbs-gallery-grid {
	border: 1px solid var(--dsbs-line);
	border-radius: 8px;
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	overflow: hidden;
	padding: 8px;
}

.dsbs-gallery-grid figure {
	display: block;
	margin: 0;
	position: relative;
	width: 100%;
}

.dsbs-gallery-grid figure:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.dsbs-gallery-grid figure img {
	aspect-ratio: 1.45 / 1;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.dsbs-gallery-grid figure:first-child img {
	aspect-ratio: 1.36 / 1;
}

.dsbs-gallery-grid.is-collapsed figure.is-extra {
	display: none;
}

.dsbs-gallery-grid.is-collapsed .dsbs-gallery-more::after {
	align-items: center;
	background: rgba(8, 45, 104, .58);
	border-radius: 8px;
	color: #fff;
	content: attr(data-more-count);
	display: flex;
	font-size: 26px;
	font-weight: 900;
	inset: 0;
	justify-content: center;
	position: absolute;
}

.dsbs-gallery-toggle {
	align-items: center;
	background: #fff;
	border: 1px solid #a7bce3;
	border-radius: 7px;
	color: var(--dsbs-blue);
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	gap: 10px;
	justify-content: center;
	margin: 14px auto 0;
	min-height: 38px;
	padding: 9px 18px;
}

.dsbs-gallery-toggle:hover,
.dsbs-gallery-toggle:focus-visible {
	background: var(--dsbs-blue);
	border-color: var(--dsbs-blue);
	color: #fff;
}

.dsbs-single-sidebar .dsbs-sidebar-card {
	box-shadow: 0 10px 30px rgba(8, 45, 104, .08);
}

.dsbs-single-info-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dsbs-single-info-item {
	align-items: flex-start;
	display: grid;
	gap: 12px;
	grid-template-columns: 24px minmax(0, 1fr);
}

.dsbs-single-info-item i {
	color: var(--dsbs-blue-2);
	font-size: 18px;
	line-height: 1.1;
	margin-top: 2px;
	text-align: center;
}

.dsbs-single-info-item strong,
.dsbs-single-info-item small {
	display: block;
}

.dsbs-single-info-item strong {
	color: var(--dsbs-blue);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 3px;
}

.dsbs-single-info-item small {
	color: #3f4f69;
	font-size: 12px;
	line-height: 1.35;
}

.dsbs-share-block {
	margin-top: 22px;
}

.dsbs-share-block p {
	color: var(--dsbs-blue);
	font-size: 12px;
	font-weight: 900;
	margin: 0 0 10px;
}

.dsbs-share-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dsbs-share-button {
	align-items: center;
	border: 0;
	border-radius: 999px;
	color: #fff !important;
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	height: 34px;
	justify-content: center;
	padding: 0;
	transition: transform .18s ease, box-shadow .18s ease;
	width: 34px;
}

.dsbs-share-button:hover,
.dsbs-share-button:focus-visible {
	box-shadow: 0 10px 18px rgba(8, 45, 104, .18);
	transform: translateY(-1px);
}

.dsbs-share-whatsapp {
	background: #18b857;
}

.dsbs-share-facebook {
	background: #1769e0;
}

.dsbs-share-instagram {
	background: #e93478;
}

.dsbs-share-copy {
	background: #eef3fb;
	color: var(--dsbs-blue) !important;
}

.dsbs-share-copy.is-copied {
	background: var(--dsbs-blue);
	color: #fff !important;
}

.dsbs-quick-nav {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.dsbs-quick-nav a {
	border-left: 3px solid transparent;
	border-radius: 0 6px 6px 0;
	color: var(--dsbs-blue);
	font-size: 13px;
	font-weight: 900;
	padding: 10px 12px;
}

.dsbs-quick-nav a.is-active,
.dsbs-quick-nav a:hover,
.dsbs-quick-nav a:focus-visible {
	background: #f1f4f9;
	border-left-color: var(--dsbs-red);
}

.dsbs-related-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.dsbs-related-list a {
	align-items: center;
	color: var(--dsbs-ink);
	display: grid;
	gap: 12px;
	grid-template-columns: 68px minmax(0, 1fr);
}

.dsbs-related-list img {
	aspect-ratio: 1 / .82;
	background: var(--dsbs-soft);
	border-radius: 7px;
	height: 58px;
	object-fit: cover;
	width: 68px;
}

.dsbs-related-list .dsbs-news-image-fallback {
	border-radius: 7px;
	font-size: 18px;
	height: 58px;
	min-height: 0;
	width: 68px;
}

.dsbs-related-list strong {
	color: var(--dsbs-blue);
	display: -webkit-box;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.28;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.dsbs-related-list small {
	color: var(--dsbs-muted);
	display: block;
	font-size: 12px;
	margin-top: 4px;
}

.dsbs-sidebar-more-link {
	color: var(--dsbs-blue) !important;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	gap: 8px;
	margin-top: 15px;
}

.dsbs-more-news-section {
	margin-top: 44px;
}

.dsbs-more-news-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dsbs-more-news-card {
	min-width: 0;
}

.dsbs-more-news-image {
	background: var(--dsbs-soft);
	border-radius: 8px;
	display: block;
	margin-bottom: 10px;
	overflow: hidden;
}

.dsbs-more-news-image img {
	aspect-ratio: 1.55 / 1;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.dsbs-more-news-image .dsbs-news-image-fallback {
	aspect-ratio: 1.55 / 1;
	font-size: 24px;
	min-height: 0;
}

.dsbs-more-news-card span {
	color: var(--dsbs-blue-2);
	display: block;
	font-size: 11px;
	font-weight: 850;
	line-height: 1.25;
	margin-bottom: 4px;
}

.dsbs-more-news-card h3 {
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 6px;
}

.dsbs-more-news-card h3 a {
	color: var(--dsbs-blue);
}

.dsbs-more-news-card small {
	color: var(--dsbs-muted);
	display: block;
	font-size: 11px;
	line-height: 1.35;
}

.dsbs-more-news-actions {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.dsbs-news-button-outline {
	background: #fff;
	border-color: #a7bce3;
	color: var(--dsbs-blue) !important;
}

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

@media (max-width: 1080px) {
	.dsbs-news-shell,
	.dsbs-single-shell {
		grid-template-columns: 1fr;
	}

	.dsbs-news-sidebar {
		display: grid;
		gap: 18px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		position: static;
	}

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

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

@media (max-width: 860px) {
	.dsbs-news-hero-inner {
		grid-template-columns: 1fr;
		padding: 52px 22px;
	}

	.dsbs-news-hero h1 {
		font-size: 42px;
	}

	.dsbs-news-featured {
		grid-template-columns: 1fr;
	}

	.dsbs-news-featured-image {
		min-height: 280px;
	}

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

	.dsbs-news-toolbar {
		align-items: flex-start;
	}

	.dsbs-news-sidebar {
		grid-template-columns: 1fr;
	}

	.dsbs-single-article {
		padding: 0;
	}

	.dsbs-single-header h1 {
		font-size: 40px;
	}

	.dsbs-single-body figure {
		width: calc(50% - 12px);
	}

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

	.dsbs-gallery-grid figure {
		margin: 0;
		width: 100%;
	}
}

@media (max-width: 620px) {
	.dsbs-news-toolbar {
		padding: 22px 16px 16px;
	}

	.dsbs-news-shell,
	.dsbs-single-shell {
		padding-left: 16px;
		padding-right: 16px;
	}

	.dsbs-single-header {
		padding: 26px 16px 14px;
	}

	.dsbs-single-header h1 {
		font-size: 32px;
		line-height: 1.08;
	}

	.dsbs-single-lead {
		font-size: 15px !important;
	}

	.dsbs-single-meta-list {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.dsbs-news-hero-inner {
		padding: 42px 16px;
	}

	.dsbs-news-hero h1 {
		font-size: 36px;
	}

	.dsbs-news-hero p {
		font-size: 15px;
	}

	.dsbs-news-search input {
		padding: 15px 14px;
	}

	.dsbs-news-chip-group {
		gap: 9px;
		order: 1;
		width: 100%;
	}

	.dsbs-news-order {
		justify-content: flex-start;
		order: 2;
	}

	.dsbs-news-chip {
		font-size: 12px;
		min-height: 36px;
		padding: 8px 14px;
	}

	.dsbs-news-grid {
		gap: 18px;
		grid-template-columns: 1fr;
	}

	.dsbs-news-featured-copy {
		padding: 24px;
	}

	.dsbs-news-featured-image {
		min-height: 230px;
	}

	.dsbs-news-card-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.dsbs-sidebar-card {
		padding: 18px;
	}

	.dsbs-single-article {
		padding: 0;
	}

	.dsbs-single-body {
		font-size: 16px;
	}

	.dsbs-single-body figure {
		margin: 7px 0;
		width: 100%;
	}

	.dsbs-gallery-grid {
		gap: 6px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 6px;
	}

	.dsbs-gallery-grid figure {
		margin: 0;
		width: 100%;
	}

	.dsbs-more-news-grid {
		grid-template-columns: 1fr;
	}

	.dsbs-news-pagination .page-numbers {
		height: 34px;
		min-width: 34px;
	}

}
