/**
 * DELTA Webinars — front-end styles.
 * Tokens taken from the DELTA 2026 brand & UI guidelines.
 * Everything is scoped under .dw so it cannot leak into the theme.
 */

.dw {
	--dw-ink: #0B1F3A;
	--dw-ink-2: #3A475E;
	--dw-ink-3: #6B7689;
	--dw-line: #E8EAEF;
	--dw-line-2: #F1F3F6;
	--dw-bg-2: #FAFAFB;
	--dw-red: #E71B2C;
	--dw-orange: #FD9600;
	--dw-amber: #FFC043;
	--dw-amber-ink: #1A1200;
	--dw-sky: #00A5CC;
	--dw-sky-2: #4FC8E8;
	--dw-sky-deep: #0077A3;
	--dw-green: #16A34A;

	--dw-radius-btn: 10px;
	--dw-radius-sm: 14px;
	--dw-radius: 20px;
	--dw-radius-lg: 22px;

	--dw-cta: linear-gradient(100deg, #E71B2C 0%, #FD9600 100%);
	--dw-spectrum: linear-gradient(100deg, var(--dw-red) 0%, var(--dw-orange) 55%, var(--dw-sky) 100%);
	--dw-shadow-soft: 0 1px 2px rgba(11, 31, 58, .04), 0 8px 24px rgba(11, 31, 58, .05);
	--dw-shadow-card: 0 1px 2px rgba(11, 31, 58, .04), 0 18px 40px -12px rgba(11, 31, 58, .10);

	--dw-container: 1240px;
	--dw-gutter: 28px;
	--dw-section: 84px;

	--dw-font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
	--dw-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

	font-family: var(--dw-font);
	font-feature-settings: "ss01", "cv11";
	color: var(--dw-ink);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	box-sizing: border-box;
}

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

.dw p {
	text-wrap: pretty;
}

.dw h1,
.dw h2,
.dw h3,
.dw h4 {
	font-weight: 600;
	letter-spacing: -.02em;
	text-wrap: balance;
	margin: 0;
	color: var(--dw-ink);
}

.dw a {
	color: var(--dw-sky-deep);
	text-decoration: none;
}

.dw a:hover {
	color: var(--dw-sky);
}

/* ------------------------------------------------------------------ *
 * Theme reset
 *
 * Themes commonly underline every link with a rule that outranks a
 * plugin stylesheet, and some draw the underline as a border or
 * background image. These rules stop that leaking into webinar markup.
 * Scoped to .dw so nothing else on the site is affected.
 * ------------------------------------------------------------------ */

.dw a,
.dw a:link,
.dw a:visited,
.dw a:hover,
.dw a:focus,
.dw a:active {
	text-decoration: none !important;
	border-bottom: 0 !important;
	box-shadow: none !important;
	background-image: none;
}

.dw .dw-btn,
.dw .dw-btn:link,
.dw .dw-btn:visited,
.dw .dw-btn:hover,
.dw .dw-btn:focus,
.dw .dw-btn:active {
	text-decoration: none !important;
}

/* Keep our own button shadows, which the reset above would otherwise strip. */

.dw .dw-btn--amber,
.dw .dw-btn--amber:hover {
	box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset, 0 6px 18px -6px rgba(253, 150, 0, .45) !important;
}

.dw .dw-btn--gradient,
.dw .dw-btn--gradient:hover {
	box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 6px 18px -6px rgba(253, 150, 0, .45) !important;
}

.dw a:focus-visible,
.dw button:focus-visible {
	outline: 2px solid var(--dw-sky-deep);
	outline-offset: 3px;
	border-radius: 4px;
}

.dw-container {
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 0 var(--dw-gutter);
	width: 100%;
}

/* ------------------------------------------------------------------ *
 * Type
 * ------------------------------------------------------------------ */

.dw .dw-h2 {
	font-size: clamp(26px, 3.4vw, 36px);
	font-weight: 600;
	letter-spacing: -.03em;
	line-height: 1.1;
	margin: 0 0 18px;
	text-transform: none;
}

.dw .dw-h3 {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -.02em;
	line-height: 1.25;
	margin: 0;
	text-transform: none;
}

.dw-accent {
	font-style: italic;
	font-weight: 500;
	background: var(--dw-spectrum);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding-right: .14em;
	margin-right: -.06em;
}

.dw-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--dw-mono);
	font-size: 11.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--dw-red);
	font-weight: 500;
	margin-bottom: 14px;
}

.dw-eyebrow--amber {
	color: var(--dw-amber);
}

.dw-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--dw-mono);
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--dw-red);
	font-weight: 500;
	margin-bottom: 8px;
}

.dw-kicker::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--dw-red), var(--dw-orange));
}

.dw-lede {
	color: var(--dw-ink-2);
	max-width: 64ch;
	margin: 0;
	font-size: 16.5px;
}

/* ------------------------------------------------------------------ *
 * Buttons
 * ------------------------------------------------------------------ */

.dw .dw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 20px;
	border-radius: var(--dw-radius-btn);
	font-family: inherit;
	font-weight: 500;
	font-size: 14.5px;
	line-height: 1.2;
	border: 0;
	cursor: pointer;
	text-align: center;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.dw .dw-btn--amber {
	background: var(--dw-amber);
	color: var(--dw-amber-ink);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset, 0 6px 18px -6px rgba(253, 150, 0, .45);
}

.dw .dw-btn--amber:hover {
	color: var(--dw-amber-ink);
	transform: translateY(-1px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset, 0 10px 22px -8px rgba(253, 150, 0, .55);
}

.dw .dw-btn--gradient {
	background: var(--dw-cta);
	color: #fff;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 6px 18px -6px rgba(253, 150, 0, .45);
}

.dw .dw-btn--gradient:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 10px 22px -8px rgba(253, 150, 0, .55);
}

.dw .dw-btn--ghost {
	background: transparent;
	color: var(--dw-ink);
	border: 1px solid var(--dw-line);
}

.dw .dw-btn--ghost:hover {
	color: var(--dw-ink);
	transform: translateY(-1px);
	box-shadow: var(--dw-shadow-soft);
}

.dw .dw-btn--ghost-dark {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .22);
}

.dw .dw-btn--ghost-dark:hover {
	color: #fff;
	background: rgba(255, 255, 255, .08);
	transform: translateY(-1px);
}

.dw-cta-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	margin: 20px 0 0;
}

.dw-cta-note {
	font-size: 13.5px;
	color: var(--dw-ink-3);
}

/* ------------------------------------------------------------------ *
 * Hero (navy band)
 * ------------------------------------------------------------------ */

.dw-hero {
	background: var(--dw-ink);
	color: #fff;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: 76px 0 68px;
}

.dw-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(45% 70% at 0% 0%, rgba(231, 27, 44, .16), transparent 60%),
		radial-gradient(55% 70% at 100% 100%, rgba(253, 150, 0, .16), transparent 65%);
}

.dw-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000 30%, transparent 80%);
	mask-image: radial-gradient(70% 70% at 50% 30%, #000 30%, transparent 80%);
}

.dw-hero__inner {
	position: relative;
}

.dw .dw-hero__title {
	color: #fff;
	font-size: clamp(32px, 5vw, 52px);
	letter-spacing: -.03em;
	line-height: 1.08;
	max-width: 22ch;
	margin: 0;
}

.dw-hero__copy {
	margin-top: 18px;
	max-width: 62ch;
}

.dw-hero__copy p {
	color: rgba(255, 255, 255, .78);
	margin: 0 0 12px;
	font-size: 16.5px;
}

.dw-hero__copy p:last-child {
	margin-bottom: 0;
}

.dw-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.dw-hero__note {
	margin: 14px 0 0;
	font-size: 13.5px;
	color: rgba(255, 255, 255, .6);
}

/* Meta strip: date | time | online | free */

.dw-meta {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	margin: 26px 0 0;
	padding: 0;
	font-family: var(--dw-mono);
	font-size: 12.5px;
	letter-spacing: .04em;
}

.dw-meta li {
	color: var(--dw-ink-2);
	padding: 0 16px;
	border-left: 1px solid var(--dw-line);
	line-height: 1.4;
}

.dw-meta li:first-child {
	padding-left: 0;
	border-left: 0;
}

.dw-meta--hero li {
	color: rgba(255, 255, 255, .82);
	border-left-color: rgba(255, 255, 255, .2);
}

.dw-meta--hero li:first-child {
	color: var(--dw-amber);
}

/* ------------------------------------------------------------------ *
 * Page body layout
 * ------------------------------------------------------------------ */

.dw-body {
	padding: var(--dw-section) 0;
	background: #fff;
}

.dw-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 56px;
	align-items: start;
}

.dw-layout__main > * + * {
	margin-top: 48px;
}

.dw-sticky {
	position: sticky;
	top: 32px;
}

/* ------------------------------------------------------------------ *
 * Editor content
 *
 * Everything from the webinar overview down is pasted into the WYSIWYG,
 * so these rules give plain editor output the brand treatment:
 * bullet lists become green checks, numbered lists become numbered cards.
 * ------------------------------------------------------------------ */

.dw-prose {
	color: var(--dw-ink-2);
	font-size: 16.5px;
	max-width: 68ch;
}

.dw-prose > * {
	margin-top: 18px;
	margin-bottom: 0;
}

.dw-prose > *:first-child {
	margin-top: 0;
}

.dw-prose h2 {
	font-size: clamp(26px, 3.4vw, 36px);
	letter-spacing: -.03em;
	line-height: 1.1;
	margin-top: 48px;
}

.dw-prose h3 {
	font-size: 22px;
	margin-top: 36px;
}

.dw-prose h4 {
	font-size: 18px;
	margin-top: 30px;
}

.dw-prose strong {
	color: var(--dw-ink);
	font-weight: 600;
}

.dw-prose img {
	max-width: 100%;
	height: auto;
	border-radius: var(--dw-radius-sm);
}

.dw-prose hr {
	border: 0;
	border-top: 1px solid var(--dw-line);
	margin-top: 36px;
}

.dw-prose blockquote {
	margin-left: 0;
	margin-right: 0;
	padding: 20px 24px;
	background: var(--dw-bg-2);
	border: 1px solid var(--dw-line);
	border-radius: var(--dw-radius-sm);
	font-size: 16px;
}

.dw-prose blockquote p {
	margin: 0;
}

/* Bullet lists → green check list */

.dw-prose ul {
	list-style: none;
	margin-top: 22px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dw-prose ul li {
	font-size: 15.5px;
	color: var(--dw-ink-2);
	padding-left: 30px;
	position: relative;
}

.dw-prose ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(22, 163, 74, .15);
}

.dw-prose ul li::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 9px;
	width: 7px;
	height: 4px;
	border-left: 2px solid var(--dw-green);
	border-bottom: 2px solid var(--dw-green);
	transform: rotate(-45deg);
}

/* Nested lists stay plain */

.dw-prose ul ul {
	list-style: disc;
	margin-top: 10px;
	padding-left: 20px;
	gap: 6px;
}

.dw-prose ul ul li {
	padding-left: 0;
}

.dw-prose ul ul li::before,
.dw-prose ul ul li::after {
	content: none;
}

/* Numbered lists → numbered cards */

.dw-prose ol {
	list-style: none;
	counter-reset: dw-prose-q;
	margin-top: 22px;
	padding: 0;
	display: grid;
	gap: 12px;
}

.dw-prose ol li {
	counter-increment: dw-prose-q;
	position: relative;
	padding: 18px 22px 18px 62px;
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: var(--dw-radius-sm);
	box-shadow: var(--dw-shadow-soft);
	color: var(--dw-ink-2);
	font-size: 15.5px;
}

.dw-prose ol li::before {
	content: counter(dw-prose-q);
	position: absolute;
	left: 22px;
	top: 18px;
	font-family: var(--dw-mono);
	font-size: 13px;
	font-weight: 500;
	background: var(--dw-cta);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dw-prose ol ol {
	margin-top: 10px;
	gap: 8px;
}

/* Green-check list */

.dw-check {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 68ch;
}

.dw-check li {
	font-size: 15.5px;
	color: var(--dw-ink-2);
	padding-left: 30px;
	position: relative;
}

.dw-check li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(22, 163, 74, .15);
}

.dw-check li::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 9px;
	width: 7px;
	height: 4px;
	border-left: 2px solid var(--dw-green);
	border-bottom: 2px solid var(--dw-green);
	transform: rotate(-45deg);
}

/* Numbered questions */

.dw-numbered {
	list-style: none;
	counter-reset: dw-q;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
	max-width: 68ch;
}

.dw-numbered li {
	counter-increment: dw-q;
	position: relative;
	padding: 18px 22px 18px 62px;
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: var(--dw-radius-sm);
	box-shadow: var(--dw-shadow-soft);
	color: var(--dw-ink-2);
	font-size: 15.5px;
}

.dw-numbered li::before {
	content: counter(dw-q);
	position: absolute;
	left: 22px;
	top: 18px;
	font-family: var(--dw-mono);
	font-size: 13px;
	font-weight: 500;
	background: var(--dw-cta);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ------------------------------------------------------------------ *
 * Registration / form / video
 * ------------------------------------------------------------------ */

.dw-register__panel {
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: var(--dw-radius-lg);
	padding: 26px;
	box-shadow: var(--dw-shadow-card);
}

.dw-register__panel > *:last-child {
	margin-bottom: 0;
}

.dw .dw-register__title {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -.02em;
	line-height: 1.25;
	margin: 0 0 6px;
	text-transform: none;
}

.dw-register__note {
	color: var(--dw-ink-3);
	font-size: 13.5px;
	margin: 0 0 16px;
}

.dw-form iframe {
	display: block;
	width: 100%;
	border: 0;
}

.dw-video {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--dw-ink);
	border-radius: var(--dw-radius);
	overflow: hidden;
	box-shadow: var(--dw-shadow-card);
}

.dw-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.dw-aside__calendar {
	margin: 16px 0 0;
	font-size: 13.5px;
	text-align: center;
}

/* ------------------------------------------------------------------ *
 * Panel
 * ------------------------------------------------------------------ */

.dw-panel {
	padding: var(--dw-section) 0;
	background: var(--dw-bg-2);
	border-top: 1px solid var(--dw-line-2);
	border-bottom: 1px solid var(--dw-line-2);
}

.dw-panel > .dw-h2,
.dw-panel > .dw-panel__grid {
	max-width: var(--dw-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--dw-gutter);
	padding-right: var(--dw-gutter);
}

.dw-panel > .dw-h2 {
	margin-bottom: 30px;
}

.dw-panel__grid {
	display: grid;
	gap: 22px;
}

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

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

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

.dw-person {
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: var(--dw-radius);
	padding: 26px;
	box-shadow: var(--dw-shadow-soft);
}

.dw-person__photo {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 18px;
	background: var(--dw-line-2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.dw-person__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dw-person__photo.is-empty {
	border: 1px solid var(--dw-line);
}

.dw-person__initials {
	font-family: var(--dw-mono);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: .02em;
	background: var(--dw-cta);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dw .dw-person__name {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
	text-transform: none;
}

.dw-person__role {
	margin: 6px 0 0;
	font-size: 13.5px;
	color: var(--dw-sky-deep);
}

.dw-person__bio {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--dw-line);
}

.dw-person__bio p {
	font-size: 14.5px;
	color: var(--dw-ink-2);
	margin: 0 0 10px;
}

.dw-person__bio p:last-child {
	margin-bottom: 0;
}

/* ------------------------------------------------------------------ *
 * Closing band
 * ------------------------------------------------------------------ */

.dw-closing {
	background: var(--dw-ink);
	color: #fff;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: 64px 0;
}

.dw-closing::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(45% 70% at 0% 0%, rgba(231, 27, 44, .16), transparent 60%),
		radial-gradient(55% 70% at 100% 100%, rgba(253, 150, 0, .16), transparent 65%);
}

.dw .dw-closing__title {
	color: #fff;
	margin-bottom: 0;
}

.dw-closing__copy {
	color: rgba(255, 255, 255, .75);
	margin: 14px 0 0;
	max-width: 58ch;
}

/* ------------------------------------------------------------------ *
 * Listings
 * ------------------------------------------------------------------ */

.dw-listing + .dw-listing {
	margin-top: 64px;
}

.dw-listing__head {
	margin-bottom: 28px;
}

.dw-cards {
	display: grid;
	gap: 22px;
}

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

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

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

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

.dw-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: var(--dw-radius);
	overflow: hidden;
	box-shadow: var(--dw-shadow-soft);
	transition: transform .2s ease, box-shadow .2s ease;
}

.dw-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--dw-shadow-card);
}

.dw-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--dw-line-2);
}

.dw-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dw-card__media--placeholder {
	position: relative;
	background: var(--dw-ink);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	isolation: isolate;
}

.dw-card__media--placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(45% 70% at 0% 0%, rgba(231, 27, 44, .18), transparent 60%),
		radial-gradient(55% 70% at 100% 100%, rgba(253, 150, 0, .18), transparent 65%);
}

.dw-card__placeholder {
	font-family: var(--dw-mono);
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .82);
	padding: 0 20px;
	text-align: center;
}

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

.dw-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.dw-card__date {
	font-family: var(--dw-mono);
	font-size: 11.5px;
	letter-spacing: .06em;
	color: var(--dw-ink-3);
}

.dw-tag {
	display: inline-flex;
	align-items: center;
	font-family: var(--dw-mono);
	font-size: 10.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 500;
	padding: 4px 10px;
	border-radius: 20px;
	border: 1px solid var(--dw-line);
	color: var(--dw-ink-3);
	background: #fff;
}

.dw-tag--upcoming {
	color: var(--dw-sky-deep);
	border-color: rgba(0, 119, 163, .3);
}

.dw-tag--live {
	color: var(--dw-red);
	border-color: rgba(231, 27, 44, .3);
}

.dw-tag--past {
	color: var(--dw-ink-3);
}

.dw .dw-card__title {
	font-size: 19px;
	font-weight: 600;
	letter-spacing: -.02em;
	line-height: 1.32;
	margin: 0 0 12px;
	text-transform: none;
}

.dw .dw-card__title a {
	color: var(--dw-ink);
}

.dw .dw-card__title a:hover {
	color: var(--dw-sky-deep);
}

.dw-card__excerpt {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--dw-ink-3);
	margin: 0;
}

.dw-card__panel {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--dw-line);
}

.dw-card__names {
	font-size: 12.5px;
	color: var(--dw-ink-3);
	line-height: 1.4;
	padding-top: 2px;
}

.dw-avatars {
	display: flex;
	flex-shrink: 0;
}

.dw-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #fff;
	background: var(--dw-line-2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--dw-mono);
	font-size: 10.5px;
	color: var(--dw-ink-3);
	flex-shrink: 0;
}

.dw-avatar + .dw-avatar {
	margin-left: -10px;
}

.dw-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dw-card__action {
	margin: 20px 0 0;
	padding-top: 0;
}

/* List layout */

.dw-listing--list .dw-cards {
	grid-template-columns: minmax(0, 1fr);
}

.dw-listing--list .dw-card {
	flex-direction: row;
}

.dw-listing--list .dw-card__media {
	flex: 0 0 320px;
	aspect-ratio: auto;
	align-self: stretch;
	position: relative;
	min-height: 240px;
}

.dw-listing--list .dw-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dw-empty {
	color: var(--dw-ink-3);
	background: var(--dw-bg-2);
	border: 1px solid var(--dw-line);
	border-radius: var(--dw-radius-sm);
	padding: 22px 24px;
	margin: 0;
	font-size: 15px;
}

.dw-notice {
	background: #FFFBF6;
	border: 1px solid #F5E3C2;
	border-radius: var(--dw-radius-sm);
	padding: 14px 18px;
	font-size: 14px;
	color: var(--dw-ink-2);
}

.dw-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
	font-size: 14px;
}

.dw-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid var(--dw-line);
	border-radius: var(--dw-radius-btn);
	color: var(--dw-ink-2);
}

.dw-pagination .page-numbers.current {
	border-color: transparent;
	background: var(--dw-ink);
	color: #fff;
}

/* ------------------------------------------------------------------ *
 * Responsive
 * ------------------------------------------------------------------ */

@media (max-width: 1080px) {
	.dw-layout {
		grid-template-columns: minmax(0, 1fr) 340px;
		gap: 40px;
	}

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

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

@media (max-width: 900px) {
	.dw {
		--dw-section: 56px;
	}

	.dw-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.dw-sticky {
		position: static;
	}

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

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

	.dw-listing--list .dw-card {
		flex-direction: column;
	}

	.dw-listing--list .dw-card__media {
		flex: none;
		aspect-ratio: 16 / 9;
		min-height: 0;
	}
}

@media (max-width: 640px) {
	.dw {
		--dw-gutter: 20px;
	}

	.dw-hero {
		padding: 52px 0 48px;
	}

	.dw-cards,
	.dw-panel__grid {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.dw-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.dw-meta li {
		border-left: 0;
		padding: 0;
	}

	.dw-hero__actions .dw-btn {
		width: 100%;
	}

	.dw-register__panel {
		padding: 22px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dw *,
	.dw *::before,
	.dw *::after {
		transition: none !important;
		animation: none !important;
	}

	.dw-card:hover,
	.dw-btn:hover {
		transform: none;
	}
}
