.dw-blog-shell {
	--dw-yellow: #ffed31;
	--dw-orange: #fd9900;
	--dw-black: #202020;
	--dw-text: #202020;
	--dw-muted: #666;
	--dw-line: #dedede;
	--dw-soft: #f6f6f4;
	color: var(--dw-text);
	font-family: Poppins, sans-serif;
	overflow: clip;
}

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

.dw-blog-shell [hidden] {
	display: none !important;
}

.dw-blog-shell img {
	display: block;
	max-width: 100%;
}

.dw-blog-shell :where(a, button, input) {
	font: inherit;
}

.dw-blog-wrap {
	width: min(1200px, calc(100% - 48px));
	margin-inline: auto;
}

.dw-blog-eyebrow {
	margin: 0 0 12px;
	color: var(--dw-orange);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .18em;
	line-height: 1.4;
	text-transform: uppercase;
}

.dw-blog-hero {
	color: #fff;
	background: var(--dw-black);
}

.dw-blog-hero__inner {
	display: flex;
	min-height: 330px;
	flex-direction: column;
	justify-content: center;
	padding-block: clamp(64px, 8vw, 104px);
}

.dw-blog-hero h1,
.dw-blog-article__header h1 {
	max-width: 900px;
	margin: 0;
	color: inherit;
	font-size: clamp(40px, 5vw, 60px);
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: 1.04;
}

.dw-blog-hero__inner > p:last-child {
	max-width: 720px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, .82);
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.65;
}

.dw-blog-discovery,
.dw-blog-related {
	padding-block: clamp(64px, 8vw, 96px);
	background: #fff;
}

.dw-blog-discovery__heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
	gap: 48px;
	align-items: end;
	margin-bottom: 32px;
}

.dw-blog-discovery h2,
.dw-blog-related h2,
.dw-blog-cta h2 {
	margin: 0;
	color: var(--dw-black);
	font-size: clamp(32px, 4vw, 46px);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.12;
}

.dw-blog-search label {
	display: block;
	margin-bottom: 8px;
	color: var(--dw-black);
	font-size: 14px;
	font-weight: 600;
}

.dw-blog-search__control {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 8px;
}

.dw-blog-search input {
	width: 100%;
	min-width: 0;
	min-height: 52px;
	padding: 12px 16px;
	color: var(--dw-black);
	background: #fff;
	border: 1px solid #bcbcbc;
	border-radius: 8px;
	outline: 0;
}

.dw-blog-search input::placeholder {
	color: #777;
	opacity: 1;
}

.dw-blog-search__clear,
.dw-blog-search__submit {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border: 1px solid var(--dw-black);
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.dw-blog-search__clear {
	color: var(--dw-black);
	background: #fff;
}

.dw-blog-search__submit {
	color: var(--dw-black);
	font-weight: 700;
	background: var(--dw-yellow);
}

.dw-blog-search__clear:hover,
.dw-blog-search__clear:focus-visible,
.dw-blog-search__submit:hover,
.dw-blog-search__submit:focus-visible {
	color: #fff;
	background: var(--dw-orange);
}

.dw-blog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.dw-blog-filter {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 9px 18px;
	color: var(--dw-black);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	background: #fff;
	border: 1px solid var(--dw-black);
	border-radius: 999px;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.dw-blog-filter.is-active,
.dw-blog-filter[aria-current="page"] {
	color: var(--dw-black);
	background: var(--dw-yellow);
	border-color: var(--dw-black);
}

.dw-blog-filter:hover,
.dw-blog-filter:focus-visible {
	color: #fff;
	background: var(--dw-orange);
	border-color: var(--dw-black);
}

.dw-blog-status {
	min-height: 24px;
	margin: 0 0 20px;
	color: var(--dw-muted);
	font-size: 14px;
}

.dw-blog-results {
	transition: opacity 180ms ease;
}

.dw-blog-results[aria-busy="true"] {
	opacity: .55;
}

.dw-blog-lead {
	margin-bottom: 24px;
}

.dw-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.dw-blog-grid--archive {
	margin-top: 32px;
}

.dw-blog-card {
	height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: 14px;
	box-shadow: 0 8px 28px rgba(32, 32, 32, .06);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.dw-blog-card:hover,
.dw-blog-card:focus-within {
	border-color: var(--dw-orange);
	box-shadow: 0 10px 32px rgba(32, 32, 32, .11);
}

.dw-blog-card__link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.dw-blog-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	margin: 0;
	overflow: hidden;
	background: #ececeb;
}

.dw-blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dw-blog-card__image--fallback {
	padding: 12%;
	object-fit: contain;
	background: var(--dw-black);
}

.dw-blog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.dw-blog-card__topic,
.dw-blog-topic-link {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 12px;
	color: #8c5400;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1.35;
	text-decoration: none;
	text-transform: uppercase;
}

.dw-blog-card h3 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--dw-black);
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.dw-blog-card__excerpt {
	display: -webkit-box;
	margin: 14px 0 18px;
	overflow: hidden;
	color: var(--dw-muted);
	font-size: 15px;
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.dw-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	color: #6e6e6e;
	font-size: 13px;
	line-height: 1.5;
}

.dw-blog-card__cta {
	display: inline-flex;
	width: fit-content;
	min-height: 44px;
	align-items: center;
	margin-top: 18px;
	padding: 8px 0;
	color: var(--dw-black);
	font-size: 15px;
	font-weight: 700;
	border-bottom: 2px solid var(--dw-orange);
}

.dw-blog-card__link:hover .dw-blog-card__cta,
.dw-blog-card__link:focus-visible .dw-blog-card__cta {
	color: #9a5c00;
}

.dw-blog-card--lead .dw-blog-card__link {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
}

.dw-blog-card--lead .dw-blog-card__media {
	min-height: 100%;
	aspect-ratio: auto;
}

.dw-blog-card--lead .dw-blog-card__body {
	justify-content: center;
	padding: clamp(32px, 5vw, 56px);
}

.dw-blog-card--lead h3 {
	font-size: clamp(28px, 3.5vw, 42px);
	-webkit-line-clamp: 4;
}

.dw-blog-card--lead .dw-blog-card__excerpt {
	font-size: 17px;
	-webkit-line-clamp: 4;
}

.dw-blog-load-wrap {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.dw-blog-primary-button,
.dw-blog-secondary-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 11px 24px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.dw-blog-primary-button {
	color: var(--dw-black);
	background: var(--dw-yellow);
	border: 1px solid var(--dw-yellow);
}

.dw-blog-secondary-button {
	color: var(--dw-black);
	background: #fff;
	border: 1px solid var(--dw-black);
}

.dw-blog-primary-button:hover,
.dw-blog-primary-button:focus-visible,
.dw-blog-secondary-button:hover,
.dw-blog-secondary-button:focus-visible {
	color: #fff;
	background: var(--dw-orange);
}

.dw-blog-primary-button:hover,
.dw-blog-primary-button:focus-visible {
	border-color: var(--dw-orange);
}

.dw-blog-secondary-button:hover,
.dw-blog-secondary-button:focus-visible {
	border-color: var(--dw-black);
}

.dw-blog-primary-button:disabled {
	cursor: wait;
	opacity: .55;
}

.dw-blog-empty {
	padding: clamp(32px, 5vw, 56px);
	text-align: center;
	background: var(--dw-soft);
	border: 1px solid var(--dw-line);
	border-radius: 14px;
}

.dw-blog-empty h3 {
	margin: 0 0 8px;
	font-size: clamp(22px, 3vw, 30px);
}

.dw-blog-empty p {
	max-width: 620px;
	margin: 0 auto 24px;
	color: var(--dw-muted);
	line-height: 1.65;
}

.dw-blog-cta {
	padding-block: clamp(56px, 7vw, 84px);
	color: #fff;
	background: var(--dw-black);
}

.dw-blog-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 48px;
	align-items: center;
}

.dw-blog-cta h2 {
	color: #fff;
}

.dw-blog-cta__inner > div > p:last-child {
	max-width: 700px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .75);
	font-size: 17px;
	line-height: 1.65;
}

.dw-blog-pagination {
	margin-top: 48px;
}

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

.dw-blog-pagination a,
.dw-blog-pagination span {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	color: var(--dw-black);
	text-decoration: none;
	background: #fff;
	border: 1px solid var(--dw-black);
	border-radius: 7px;
}

.dw-blog-pagination .current {
	background: var(--dw-yellow);
}

.dw-blog-pagination a:hover,
.dw-blog-pagination a:focus-visible {
	color: #fff;
	background: var(--dw-orange);
}

.dw-blog-article__header {
	padding-block: clamp(56px, 8vw, 96px);
	color: #fff;
	background: var(--dw-black);
}

.dw-blog-article__header h1 {
	max-width: 1050px;
	font-size: clamp(38px, 5.5vw, 66px);
}

.dw-blog-back-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	margin-bottom: 32px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.dw-blog-back-link::before {
	margin-right: 8px;
	content: "←";
}

.dw-blog-back-link:hover,
.dw-blog-back-link:focus-visible,
.dw-blog-topic-link:hover,
.dw-blog-topic-link:focus-visible {
	color: var(--dw-yellow);
}

.dw-blog-article__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
	color: rgba(255, 255, 255, .72);
	font-size: 14px;
	line-height: 1.5;
}

.dw-blog-article__media {
	margin-top: clamp(32px, 5vw, 56px);
}

.dw-blog-article__media > img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 14px;
}

.dw-blog-article__layout {
	display: grid;
	width: min(1100px, calc(100% - 48px));
	grid-template-columns: 240px minmax(0, 720px);
	gap: 56px;
	align-items: start;
	justify-content: center;
	margin: clamp(48px, 7vw, 80px) auto;
}

.dw-blog-article__content {
	min-width: 0;
	color: #303030;
	font-size: 18px;
	line-height: 1.75;
}

.dw-blog-article__content > :first-child {
	margin-top: 0;
}

.dw-blog-article__content h2,
.dw-blog-article__content h3 {
	color: var(--dw-black);
	font-weight: 700;
	line-height: 1.25;
	scroll-margin-top: 100px;
}

.dw-blog-article__content h2 {
	margin: 52px 0 18px;
	font-size: clamp(28px, 3vw, 36px);
}

.dw-blog-article__content h3 {
	margin: 36px 0 14px;
	font-size: clamp(22px, 2.5vw, 28px);
}

.dw-blog-article__content p,
.dw-blog-article__content ul,
.dw-blog-article__content ol,
.dw-blog-article__content blockquote {
	margin-block: 0 24px;
}

.dw-blog-article__content :where(img, video, iframe) {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.dw-blog-article__content a {
	color: #8c5400;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.dw-blog-toc {
	position: sticky;
	top: 100px;
	padding: 20px;
	background: var(--dw-soft);
	border-left: 4px solid var(--dw-orange);
	border-radius: 8px;
}

.dw-blog-toc__title {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
}

.dw-blog-toc__toggle {
	display: none;
	width: 100%;
	min-height: 44px;
	margin-bottom: 12px;
	color: var(--dw-black);
	font-weight: 700;
	text-align: left;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.dw-blog-toc ol {
	margin: 0;
	padding-left: 18px;
}

.dw-blog-toc li + li {
	margin-top: 8px;
}

.dw-blog-toc a {
	color: #4f4f4f;
	font-size: 13px;
	line-height: 1.45;
	text-decoration: none;
}

.dw-blog-toc a:hover,
.dw-blog-toc a:focus-visible {
	color: #8c5400;
}

.dw-blog-related {
	background: var(--dw-soft);
}

.dw-blog-related h2 {
	margin-bottom: 32px;
}

.dw-blog-shell :where(a, button, input):focus-visible {
	outline: 3px solid var(--dw-orange);
	outline-offset: 3px;
}

@media (max-width: 1024px) {
	.dw-blog-discovery__heading {
		grid-template-columns: 1fr;
		gap: 28px;
		align-items: start;
	}

	.dw-blog-search {
		max-width: 680px;
	}

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

	.dw-blog-card--lead .dw-blog-card__link {
		grid-template-columns: 1fr 1fr;
	}

	.dw-blog-article__layout {
		grid-template-columns: 210px minmax(0, 720px);
		gap: 36px;
	}
}

@media (max-width: 767px) {
	.dw-blog-wrap,
	.dw-blog-article__layout {
		width: min(100% - 32px, 720px);
	}

	.dw-blog-hero__inner {
		min-height: 260px;
		padding-block: 56px;
	}

	.dw-blog-search__control {
		grid-template-columns: 1fr auto;
	}

	.dw-blog-search__clear {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.dw-blog-filters {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dw-blog-filter {
		width: 100%;
		padding-inline: 10px;
	}

	.dw-blog-grid {
		grid-template-columns: 1fr;
	}

	.dw-blog-card--lead .dw-blog-card__link {
		grid-template-columns: 1fr;
	}

	.dw-blog-card--lead .dw-blog-card__media {
		min-height: auto;
		aspect-ratio: 16 / 9;
	}

	.dw-blog-card--lead .dw-blog-card__body {
		padding: 28px;
	}

	.dw-blog-cta__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.dw-blog-article__layout {
		display: block;
	}

	.dw-blog-toc {
		position: static;
		margin-bottom: 32px;
	}

	.dw-blog-toc__toggle {
		display: block;
	}

	.dw-blog-toc__title {
		display: none;
	}

	.dw-blog-toc ol[hidden] {
		display: none;
	}
}

@media (max-width: 420px) {
	.dw-blog-filters {
		grid-template-columns: 1fr;
	}

	.dw-blog-search__control {
		grid-template-columns: 1fr;
	}

	.dw-blog-search__clear,
	.dw-blog-search__submit {
		grid-column: auto;
		grid-row: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dw-blog-shell *,
	.dw-blog-shell *::before,
	.dw-blog-shell *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
