/**
 * Adroit Creators (formerly the Writing Hub).
 *
 * Brand colours sampled from adroittutors.com, as in every Adroit module.
 * Everything is scoped to .awh so the theme and Elementor are left alone.
 * Written for phones first.
 */

.awh {
	--awh-brand: #830606;
	--awh-deep: #6f0b0b;
	--awh-tint: #fbeaea;
	--awh-tint-2: #fdf5f5;
	--awh-line: #e8c9c9;
	--awh-ink: #2b2b2b;
	--awh-strong: #161616;
	--awh-muted: #6b7079;
	--awh-faint: #9398a1;
	--awh-rule: #e6e7eb;
	--awh-paper: #ffffff;
	--awh-soft: #f7f7f8;
	--awh-ok: #1b6349;
	--awh-ok-soft: #e4f1eb;
	--awh-warn: #8a5d00;
	--awh-warn-soft: #fdf3df;
	--awh-bad: #a81e17;
	--awh-bad-soft: #fbeae9;
	--awh-wait: #1f4f8a;
	--awh-wait-soft: #e7eef8;
	--awh-gold: #b08d3e;
	--awh-head: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--awh-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--awh-read: Georgia, "Iowan Old Style", "Times New Roman", serif;
	--awh-radius: 12px;
	--awh-radius-s: 8px;
	--awh-shadow: 0 1px 2px rgba(20, 20, 30, .05), 0 4px 16px rgba(20, 20, 30, .05);

	color: var(--awh-ink);
	font-family: var(--awh-body);
	font-size: 16px;
	line-height: 1.6;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 0 3rem;
	-webkit-text-size-adjust: 100%;
}
.awh *, .awh *::before, .awh *::after { box-sizing: border-box; }
.awh img { max-width: 100%; height: auto; }
.awh a { color: var(--awh-brand); text-decoration: none; }
.awh a:hover { text-decoration: underline; }
/* The site kit underlines links. Hub navigation, cards and buttons stay clean. */
body .awh a { text-decoration: none; }
body .awh .awh-prose a, body .awh .awh-terms p a, body .awh .awh-rules a { text-decoration: underline; }
.awh h1, .awh h2, .awh h3, .awh h4 {
	font-family: var(--awh-head); color: var(--awh-strong);
	line-height: 1.25; margin: 0 0 .5rem; font-weight: 600; letter-spacing: -.01em;
}
.awh h1 { font-size: clamp(1.7rem, 5vw, 2.5rem); }
.awh h2 { font-size: clamp(1.3rem, 3.6vw, 1.7rem); }
.awh h3 { font-size: 1.1rem; }
.awh p { margin: 0 0 1rem; }
.awh .screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }

/* Hide the theme title on Writing Hub pages. The hub draws its own. */
body.awh-page .page-header .entry-title,
body.awh-page .entry-header .entry-title { display: none; }

/* ------------------------------------------------------------------ bar -- */

.awh-bar {
	display: flex; align-items: center; gap: .75rem;
	padding: .75rem 0; margin: 0 0 1.25rem;
	border-bottom: 1px solid var(--awh-rule);
	position: relative;
}
.awh-bar__brand {
	font-family: var(--awh-head); font-weight: 600; color: var(--awh-strong) !important;
	white-space: nowrap; font-size: 1rem; display: flex; align-items: center; gap: .45rem;
}
.awh-bar__brand span { color: var(--awh-brand); }
.awh-bar__brand .awh-bar__mark { color: #fff; }
.awh-bar__mark {
	display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
	background: var(--awh-brand); color: #fff; font-size: .85rem; font-weight: 700; flex: 0 0 auto;
}
.awh-bar__mark svg { width: 19px; height: 19px; display: block; }
.awh-bar__links {
	display: flex; gap: .15rem; overflow-x: auto; scrollbar-width: none;
	flex: 1 1 auto; margin: 0 -.25rem; padding: 0 .25rem;
}
.awh-bar__links::-webkit-scrollbar { display: none; }
.awh-bar__links a {
	white-space: nowrap; padding: .4rem .7rem; border-radius: 999px;
	color: var(--awh-muted); font-size: .92rem; font-weight: 500;
}
.awh-bar__links a:hover { background: var(--awh-soft); color: var(--awh-strong); text-decoration: none; }
.awh-bar__links a[aria-current="page"] { background: var(--awh-tint); color: var(--awh-brand); }
.awh-bar__account { display: flex; gap: .4rem; flex: 0 0 auto; }

@media (max-width: 720px) {
	.awh-bar { flex-wrap: wrap; row-gap: .5rem; }
	.awh-bar__brand { flex: 1 1 auto; }
	.awh-bar__links { order: 3; flex-basis: 100%; }
}

/* -------------------------------------------------------------- buttons -- */

.awh .awh-btn,
.awh button.awh-btn,
.awh input[type="submit"].awh-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
	min-height: 44px; padding: .6rem 1.15rem; cursor: pointer;
	font-family: var(--awh-head); font-size: .95rem; font-weight: 600; line-height: 1.2;
	color: #fff; background: var(--awh-brand);
	border: 1px solid var(--awh-brand); border-radius: var(--awh-radius-s);
	text-decoration: none; text-transform: none; letter-spacing: normal; box-shadow: none;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.awh .awh-btn:hover, .awh .awh-btn:focus { background: var(--awh-deep); border-color: var(--awh-deep); color: #fff; text-decoration: none; }
.awh .awh-btn--ghost, .awh button.awh-btn--ghost { background: #fff; color: var(--awh-brand); border-color: var(--awh-line); }
.awh .awh-btn--ghost:hover, .awh .awh-btn--ghost:focus, .awh button.awh-btn--ghost:hover, .awh button.awh-btn--ghost:focus { background: var(--awh-tint); color: var(--awh-brand); border-color: var(--awh-line); }
.awh .awh-btn--quiet, .awh button.awh-btn--quiet { background: transparent; color: var(--awh-muted); border-color: var(--awh-rule); }
.awh .awh-btn--quiet:hover, .awh .awh-btn--quiet:focus, .awh button.awh-btn--quiet:hover, .awh button.awh-btn--quiet:focus { background: var(--awh-soft); color: var(--awh-strong); border-color: var(--awh-rule); }
.awh .awh-btn--danger, .awh button.awh-btn--danger { background: #fff; color: var(--awh-bad); border-color: #f0c4c1; }
.awh .awh-btn--danger:hover, .awh .awh-btn--danger:focus, .awh button.awh-btn--danger:hover, .awh button.awh-btn--danger:focus { background: var(--awh-bad-soft); color: var(--awh-bad); border-color: #f0c4c1; }
.awh .awh-btn--small, .awh button.awh-btn--small { min-height: 36px; padding: .35rem .8rem; font-size: .85rem; }
.awh .awh-btn--wide { width: 100%; }
.awh .awh-btn:focus-visible, .awh a:focus-visible, .awh input:focus-visible, .awh select:focus-visible, .awh textarea:focus-visible, .awh summary:focus-visible {
	outline: 3px solid rgba(131, 6, 6, .35); outline-offset: 2px;
}

/* --------------------------------------------------------------- flash -- */

.awh-flash {
	padding: .8rem 1rem; margin: 0 0 1.25rem; border-radius: var(--awh-radius-s);
	border: 1px solid var(--awh-rule); background: var(--awh-soft); font-size: .95rem;
}
.awh-flash--ok { background: var(--awh-ok-soft); border-color: #bfdccf; color: var(--awh-ok); }
.awh-flash--error { background: var(--awh-bad-soft); border-color: #f0c4c1; color: var(--awh-bad); }
.awh-flash--info { background: var(--awh-wait-soft); border-color: #c9d8ee; color: var(--awh-wait); }

/* ----------------------------------------------------------------- hero -- */

.awh-hero {
	display: grid; gap: 1.5rem; align-items: center;
	padding: clamp(1.5rem, 5vw, 3rem); margin: 0 0 2rem;
	border-radius: 18px; color: #fff;
	background:
		radial-gradient(1200px 400px at 110% -20%, rgba(255, 255, 255, .12), transparent 60%),
		linear-gradient(135deg, #830606 0%, #5a0707 100%);
}
.awh-hero h1 { color: #fff; margin-bottom: .75rem; }
.awh-hero p { color: rgba(255, 255, 255, .88); font-size: 1.05rem; max-width: 36rem; }
.awh-hero__kicker {
	display: inline-block; margin-bottom: .75rem; padding: .25rem .7rem; border-radius: 999px;
	background: rgba(255, 255, 255, .14); font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.awh-hero__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
.awh-hero .awh-btn { background: #fff; color: var(--awh-brand); border-color: #fff; }
.awh-hero .awh-btn:hover, .awh-hero .awh-btn:focus { background: var(--awh-tint); color: var(--awh-deep); border-color: var(--awh-tint); }
.awh-hero .awh-btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.awh-hero .awh-btn--ghost:hover, .awh-hero .awh-btn--ghost:focus { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }
.awh-hero__panel {
	background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
	border-radius: var(--awh-radius); padding: 1.1rem 1.2rem; color: #fff;
}
.awh-hero__panel h2 { color: #fff; font-size: 1.05rem; }
.awh-hero__panel ol { margin: 0; padding-left: 1.2rem; }
.awh-hero__panel li { margin: .25rem 0; color: rgba(255, 255, 255, .9); font-size: .95rem; }
@media (min-width: 880px) { .awh-hero { grid-template-columns: 1.4fr 1fr; } }

/* -------------------------------------------------------------- section -- */

.awh-section { margin: 0 0 2.5rem; }
.awh-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.awh-section__head h2 { margin: 0; }
.awh-section__head a { font-size: .92rem; font-weight: 600; }
.awh-lede { color: var(--awh-muted); font-size: 1.02rem; max-width: 44rem; }
.awh-muted { color: var(--awh-muted); }
.awh-small { font-size: .86rem; }

.awh-panel {
	background: var(--awh-paper); border: 1px solid var(--awh-rule);
	border-radius: var(--awh-radius); padding: 1.15rem 1.25rem; box-shadow: var(--awh-shadow);
}
.awh-panel + .awh-panel { margin-top: 1rem; }
.awh-panel--tint { background: var(--awh-tint-2); border-color: var(--awh-line); box-shadow: none; }

.awh-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .awh-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 640px) { .awh-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .awh-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 640px) { .awh-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .awh-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------------------------------------------------------------- chips -- */

.awh-chips { display: flex; gap: .45rem; overflow-x: auto; padding: .1rem 0 .4rem; margin: 0 0 1.25rem; scrollbar-width: thin; }
.awh-chip {
	flex: 0 0 auto; display: inline-flex; align-items: center; gap: .35rem;
	padding: .38rem .85rem; border-radius: 999px; white-space: nowrap;
	border: 1px solid var(--awh-rule); background: #fff; color: var(--awh-ink) !important;
	font-size: .88rem; font-weight: 500;
}
.awh-chip:hover { border-color: var(--awh-line); background: var(--awh-tint-2); text-decoration: none !important; }
.awh-chip[aria-current="true"], .awh-chip.is-on { background: var(--awh-brand); border-color: var(--awh-brand); color: #fff !important; }
.awh-chip__count { font-size: .78rem; opacity: .75; }

.awh-tag {
	display: inline-block; padding: .12rem .55rem; border-radius: 999px;
	background: var(--awh-tint); color: var(--awh-brand) !important; font-size: .76rem; font-weight: 600;
	letter-spacing: .01em;
}
.awh-tag--plain { background: var(--awh-soft); color: var(--awh-muted) !important; }

/* ---------------------------------------------------------------- cards -- */

.awh-cards { display: grid; gap: 1rem; }
@media (min-width: 640px) { .awh-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .awh-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.awh-cards--list { grid-template-columns: 1fr !important; }

/* A row that does not fill looks like a mistake. Whatever is left over at
   the end spreads across the rest of its row instead of sitting alone. */
@media (min-width: 640px) and (max-width: 979px) {
	.awh-cards > :last-child:nth-child(odd) { grid-column: span 2; }
}
@media (min-width: 980px) {
	.awh-cards > :last-child:nth-child(3n + 1) { grid-column: span 3; }
	.awh-cards > :last-child:nth-child(3n + 2) { grid-column: span 2; }
}
.awh-cards--list > :last-child { grid-column: auto !important; }

.awh-card {
	display: flex; flex-direction: column; min-width: 0;
	background: #fff; border: 1px solid var(--awh-rule); border-radius: var(--awh-radius);
	overflow: hidden; box-shadow: var(--awh-shadow); transition: transform .15s ease, box-shadow .15s ease;
}
.awh-card:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(20, 20, 30, .06), 0 10px 28px rgba(20, 20, 30, .08); }
.awh-card__image { display: block; aspect-ratio: 16 / 9; max-height: 260px; background: var(--awh-tint); overflow: hidden; }
.awh-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Pieces without a picture of their own. The panel is drawn from the
   category, so the grid keeps one shape and the page still has colour. */
.awh-card__image--art {
	position: relative; display: grid; place-items: center;
	background: linear-gradient(140deg, var(--awh-art-1), var(--awh-art-2));
}
.awh-art__letter {
	font-family: var(--awh-head); font-weight: 700; color: #fff;
	font-size: clamp(2.6rem, 9vw, 3.4rem); line-height: 1; opacity: .9;
}
.awh-art__name {
	position: absolute; left: .85rem; bottom: .7rem;
	font-size: .7rem; letter-spacing: .09em; text-transform: uppercase;
	color: #fff; opacity: .75; font-weight: 600;
}
.awh-card__image--art::after {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(120% 100% at 15% 0%, rgba(255, 255, 255, .18), transparent 60%);
}

/* The same six colourways everywhere a piece has no picture. */
[data-art="0"] { --awh-art-1: #8a1111; --awh-art-2: #b8453a; }
[data-art="1"] { --awh-art-1: #1f3a5f; --awh-art-2: #35719f; }
[data-art="2"] { --awh-art-1: #1b5140; --awh-art-2: #2f7d5f; }
[data-art="3"] { --awh-art-1: #4a2352; --awh-art-2: #7c4487; }
[data-art="4"] { --awh-art-1: #7a4a12; --awh-art-2: #b6862f; }
[data-art="5"] { --awh-art-1: #2c3440; --awh-art-2: #56637a; }
.awh-card__body { padding: 1rem 1.1rem 1.1rem; display: flex; flex-direction: column; gap: .5rem; flex: 1 1 auto; }
.awh-card__meta { display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; }
.awh-card__title { font-size: 1.1rem; margin: 0; }
.awh-card__title a { color: var(--awh-strong); }
.awh-card__title a:hover { color: var(--awh-brand); }
.awh-card__excerpt { color: var(--awh-muted); font-size: .93rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.awh-card__foot { margin-top: auto; padding-top: .6rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; border-top: 1px solid #f0f1f3; font-size: .83rem; color: var(--awh-muted); }
.awh-card__foot .awh-byline { min-width: 0; }

.awh-card--row { flex-direction: row; }
.awh-card--row .awh-card__image { flex: 0 0 34%; aspect-ratio: auto; }
@media (max-width: 560px) { .awh-card--row { flex-direction: column; } .awh-card--row .awh-card__image { aspect-ratio: 16 / 9; } }

.awh-hearts { display: inline-flex; align-items: center; gap: .25rem; white-space: nowrap; color: var(--awh-brand); font-weight: 600; }
.awh-hearts svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------- byline -- */

.awh-byline { display: flex; align-items: center; gap: .6rem; min-width: 0; }
.awh-byline__text { min-width: 0; line-height: 1.3; }
.awh-byline__name { display: block; font-weight: 600; color: var(--awh-strong) !important; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.awh-byline__line { display: block; color: var(--awh-muted); font-size: .85em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.awh-avatar { border-radius: 50%; object-fit: cover; flex: 0 0 auto; background: var(--awh-tint); display: block; }
.awh-avatar--initials { display: inline-grid; place-items: center; color: var(--awh-brand); font-family: var(--awh-head); font-weight: 600; }

/* ---------------------------------------------------------------- stats -- */

.awh-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
@media (min-width: 760px) { .awh-stats--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.awh-stat { background: #fff; border: 1px solid var(--awh-rule); border-radius: var(--awh-radius); padding: .9rem 1rem; }
.awh-stat__value { display: block; font-family: var(--awh-head); font-size: 1.6rem; font-weight: 600; color: var(--awh-strong); line-height: 1.1; }
.awh-stat__label { display: block; font-size: .82rem; color: var(--awh-muted); margin-top: .2rem; }
.awh-stat--brand { background: var(--awh-tint-2); border-color: var(--awh-line); }
.awh-stat--brand .awh-stat__value { color: var(--awh-brand); }
.awh-stats__group { margin-bottom: 1rem; }
.awh-stats__group h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--awh-muted); margin-bottom: .5rem; }

.awh-progress { height: 10px; border-radius: 999px; background: #eee; overflow: hidden; margin: .5rem 0; }
.awh-progress span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #b21b1b, #830606); }

/* ---------------------------------------------------------------- forms -- */

.awh-form { max-width: 44rem; }
.awh-form--narrow { max-width: 28rem; margin-left: auto; margin-right: auto; }
.awh-form--choices { max-width: 46rem; margin-left: auto; margin-right: auto; }
.awh-field { margin: 0 0 1.1rem; }
.awh-field > label, .awh-field > .awh-label, .awh-fieldset legend {
	display: block; margin-bottom: .35rem;
	font-family: var(--awh-head); font-size: .9rem; font-weight: 600; color: var(--awh-strong);
}
.awh-field .awh-optional { font-weight: 400; color: var(--awh-faint); font-size: .85em; }
.awh-help { display: block; margin-top: .3rem; font-size: .83rem; color: var(--awh-muted); }
.awh input[type="text"], .awh input[type="email"], .awh input[type="password"], .awh input[type="search"], .awh input[type="url"],
.awh input[type="file"], .awh select, .awh textarea {
	width: 100%; max-width: 100%; min-height: 46px;
	padding: .6rem .75rem; font: inherit; font-size: 16px; line-height: 1.4;
	color: var(--awh-ink); background: #fff;
	border: 1px solid #d5d7dc; border-radius: var(--awh-radius-s);
	box-shadow: none; appearance: none; -webkit-appearance: none;
}
.awh select { background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 2.2rem; }
.awh textarea { min-height: 7rem; resize: vertical; }
.awh input:focus, .awh select:focus, .awh textarea:focus { border-color: var(--awh-brand); outline: 3px solid rgba(131, 6, 6, .15); outline-offset: 0; }
.awh input[type="file"] { padding: .5rem; background: var(--awh-soft); }
.awh-row { display: grid; gap: 0 1rem; }
@media (min-width: 640px) { .awh-row--2 { grid-template-columns: 1fr 1fr; } .awh-row--3 { grid-template-columns: 1fr 1fr 1fr; } }
.awh-fieldset { border: 0; padding: 0; margin: 0 0 1.1rem; min-width: 0; }
.awh-check { display: flex; gap: .6rem; align-items: flex-start; margin: .45rem 0; font-size: .95rem; cursor: pointer; }
.awh-check input { margin-top: .25rem; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--awh-brand); }
.awh-counter { float: right; font-size: .78rem; color: var(--awh-faint); font-weight: 400; }
.awh-counter.is-over { color: var(--awh-bad); font-weight: 600; }
.awh-honey { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.awh-actions { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-top: 1.25rem; }
.awh-actions--split { justify-content: space-between; }
.awh-sticky-actions { position: sticky; bottom: 0; z-index: 5; background: rgba(255, 255, 255, .96); backdrop-filter: blur(6px); padding: .75rem 0; border-top: 1px solid var(--awh-rule); margin-top: 1.5rem; }

.awh-picks { display: grid; gap: .5rem; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.awh-pick { position: relative; display: block; cursor: pointer; }
.awh-pick input { position: absolute; opacity: 0; pointer-events: none; }
.awh-pick span {
	display: flex; align-items: center; min-height: 48px; height: 100%; padding: .55rem .75rem;
	border: 1px solid #d5d7dc; border-radius: var(--awh-radius-s); background: #fff;
	font-size: .9rem; font-weight: 500; line-height: 1.25;
}
.awh-pick input:checked + span { border-color: var(--awh-brand); background: var(--awh-tint); color: var(--awh-brand); box-shadow: inset 0 0 0 1px var(--awh-brand); }
.awh-pick input:focus-visible + span { outline: 3px solid rgba(131, 6, 6, .35); outline-offset: 2px; }

.awh-avatar-edit { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.awh-image-preview img { border-radius: var(--awh-radius-s); max-height: 180px; width: auto; border: 1px solid var(--awh-rule); }

.awh-editor .wp-editor-container { border: 1px solid #d5d7dc; border-radius: var(--awh-radius-s); overflow: hidden; }
.awh-editor .wp-editor-area { font-family: var(--awh-read) !important; font-size: 17px !important; line-height: 1.7 !important; min-height: 320px; border: 0 !important; }
.awh-editor .mce-tinymce { border: 0 !important; box-shadow: none !important; }
.awh-editor .wp-editor-tabs { float: right; }
.awh-editor .wp-switch-editor { font-size: 13px; }

.awh-rules { margin: 0 0 1.5rem; border: 1px solid var(--awh-line); background: var(--awh-tint-2); border-radius: var(--awh-radius); }
.awh-rules summary { cursor: pointer; padding: .85rem 1.1rem; font-family: var(--awh-head); font-weight: 600; color: var(--awh-brand); list-style: none; }
.awh-rules summary::-webkit-details-marker { display: none; }
.awh-rules summary::after { content: "+"; float: right; font-weight: 400; }
.awh-rules[open] summary::after { content: "−"; }
.awh-rules__body { padding: 0 1.1rem 1rem; font-size: .93rem; }
.awh-rules__body ul { margin: 0 0 .75rem 1.1rem; padding: 0; }
.awh-rules__body li { margin: .25rem 0; }

/* ----------------------------------------------------------- dashboard -- */

.awh-dash { display: grid; gap: 1.5rem; grid-template-columns: minmax(0, 1fr); }
.awh-dash__side, .awh-dash__main { min-width: 0; }
@media (min-width: 900px) { .awh-dash { grid-template-columns: 230px minmax(0, 1fr); align-items: start; } }
.awh-dash__side { background: #fff; border: 1px solid var(--awh-rule); border-radius: var(--awh-radius); padding: .9rem; }
@media (min-width: 900px) { .awh-dash__side { position: sticky; top: 1rem; } }
.awh-dash__me { display: flex; align-items: center; gap: .65rem; padding: .25rem .25rem .85rem; border-bottom: 1px solid var(--awh-rule); margin-bottom: .6rem; }
.awh-dash__nav { display: flex; flex-direction: column; gap: .1rem; }
.awh-dash__nav a {
	display: flex; align-items: center; justify-content: space-between; gap: .5rem;
	padding: .55rem .7rem; border-radius: var(--awh-radius-s); color: var(--awh-ink); font-weight: 500; font-size: .95rem;
}
.awh-dash__nav a:hover { background: var(--awh-soft); text-decoration: none; }
.awh-dash__nav a[aria-current="page"] { background: var(--awh-tint); color: var(--awh-brand); }
.awh-dash__nav hr { border: 0; border-top: 1px solid var(--awh-rule); margin: .5rem 0; }
.awh-badge-count { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--awh-brand); color: #fff; font-size: .74rem; font-weight: 700; }
@media (max-width: 899px) {
	.awh-dash__side { padding: .6rem; }
	.awh-dash__me { display: none; }
	.awh-dash__nav { flex-direction: row; overflow-x: auto; scrollbar-width: none; }
	.awh-dash__nav::-webkit-scrollbar { display: none; }
	.awh-dash__nav a { white-space: nowrap; flex: 0 0 auto; }
	.awh-dash__nav hr { display: none; }
}
.awh-dash__main > h1 { font-size: clamp(1.4rem, 4vw, 1.9rem); }

.awh-notices { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: .5rem; }
.awh-notice { display: flex; gap: .75rem; align-items: flex-start; padding: .8rem 1rem; border-radius: var(--awh-radius-s); background: #fff; border: 1px solid var(--awh-rule); border-left: 4px solid var(--awh-brand); font-size: .95rem; }
.awh-notice--ok { border-left-color: var(--awh-ok); }
.awh-notice--warn { border-left-color: var(--awh-gold); }
.awh-notice--bad { border-left-color: var(--awh-bad); }
.awh-notice time { display: block; font-size: .78rem; color: var(--awh-faint); }

.awh-pill { display: inline-flex; align-items: center; gap: .3rem; padding: .16rem .6rem; border-radius: 999px; font-size: .76rem; font-weight: 600; white-space: nowrap; }
.awh-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.awh-pill--quiet { background: var(--awh-soft); color: var(--awh-muted); }
.awh-pill--wait { background: var(--awh-wait-soft); color: var(--awh-wait); }
.awh-pill--warn { background: var(--awh-warn-soft); color: var(--awh-warn); }
.awh-pill--bad { background: var(--awh-bad-soft); color: var(--awh-bad); }
.awh-pill--ok { background: var(--awh-ok-soft); color: var(--awh-ok); }

.awh-list { list-style: none; margin: 0; padding: 0; border: 1px solid var(--awh-rule); border-radius: var(--awh-radius); background: #fff; overflow: hidden; }
.awh-list__item { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 1rem; border-top: 1px solid var(--awh-rule); }
.awh-list__item:first-child { border-top: 0; }
.awh-list__main { min-width: 0; }
.awh-list__title { display: block; font-weight: 600; color: var(--awh-strong) !important; overflow-wrap: anywhere; }
.awh-list__meta { display: flex; flex-wrap: wrap; gap: .25rem .75rem; font-size: .82rem; color: var(--awh-muted); margin-top: .15rem; }
.awh-list__side { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; }
@media (max-width: 560px) { .awh-list__item { flex-direction: column; align-items: flex-start; } .awh-list__side { flex-direction: row; align-items: center; } }

.awh-status { padding: 1rem 1.1rem; border-radius: var(--awh-radius); margin: 0 0 1.25rem; border: 1px solid var(--awh-rule); background: #fff; }
.awh-status h2 { font-size: 1.1rem; margin: .35rem 0; }
.awh-status--warn { background: var(--awh-warn-soft); border-color: #f0dcae; }
.awh-status--bad { background: var(--awh-bad-soft); border-color: #f0c4c1; }
.awh-status--ok { background: var(--awh-ok-soft); border-color: #bfdccf; }
.awh-status--wait { background: var(--awh-wait-soft); border-color: #c9d8ee; }
.awh-note { margin: .75rem 0 0; padding: .8rem 1rem; background: #fff; border-radius: var(--awh-radius-s); border: 1px dashed var(--awh-line); white-space: pre-wrap; font-size: .95rem; }
.awh-note__label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--awh-muted); margin-bottom: .25rem; white-space: normal; }

.awh-timeline { list-style: none; margin: 0; padding: 0 0 0 1rem; border-left: 2px solid var(--awh-rule); }
.awh-timeline li { position: relative; padding: 0 0 .9rem .6rem; font-size: .92rem; }
.awh-timeline li::before { content: ""; position: absolute; left: -1.43rem; top: .4rem; width: 10px; height: 10px; border-radius: 50%; background: #fff; border: 2px solid var(--awh-brand); }
.awh-timeline time { display: block; font-size: .78rem; color: var(--awh-faint); }

.awh-empty { text-align: center; padding: 2rem 1rem; border: 1px dashed var(--awh-rule); border-radius: var(--awh-radius); color: var(--awh-muted); background: #fff; }
.awh-empty p { margin-bottom: .75rem; }

/* ------------------------------------------------------------- profile -- */

.awh-profile { display: grid; gap: 1.25rem; align-items: center; padding: clamp(1.25rem, 4vw, 2rem); border-radius: 18px; background: linear-gradient(135deg, #fdf5f5, #fff 60%); border: 1px solid var(--awh-line); margin-bottom: 1.5rem; }
@media (min-width: 720px) { .awh-profile { grid-template-columns: auto 1fr; } }
.awh-profile__photo .awh-avatar { width: 128px; height: 128px; border: 4px solid #fff; box-shadow: var(--awh-shadow); }
.awh-profile__photo .awh-avatar--initials { font-size: 2.6rem !important; }
.awh-profile h1 { margin-bottom: .15rem; }
.awh-profile__headline { font-weight: 600; color: var(--awh-brand); margin: 0 0 .25rem; }
.awh-profile__where { color: var(--awh-muted); margin: 0 0 .75rem; font-size: .95rem; }
.awh-profile__bio { margin: 0 0 .75rem; max-width: 46rem; }
.awh-profile__interests { display: flex; flex-wrap: wrap; gap: .35rem; }
.awh-profile__handle { color: var(--awh-faint); font-size: .88rem; }

.awh-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.awh-badge {
	display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .8rem; border-radius: 999px;
	background: #fff; border: 1px solid var(--awh-line); font-size: .88rem; font-weight: 600; color: var(--awh-strong);
}
.awh-badge__icon { font-size: 1.05rem; line-height: 1; }
.awh-badge--gold { background: #fbf5e6; border-color: #ead9ae; }

.awh-certs { display: grid; gap: .75rem; }
@media (min-width: 640px) { .awh-certs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.awh-cert { display: flex; gap: .85rem; align-items: center; padding: .9rem 1rem; border-radius: var(--awh-radius); background: #fff; border: 1px solid var(--awh-rule); }
.awh-cert__icon { flex: 0 0 auto; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 10px; background: #fbf5e6; font-size: 1.4rem; }
.awh-cert__title { display: block; font-weight: 600; color: var(--awh-strong); }
.awh-cert__meta { display: block; font-size: .8rem; color: var(--awh-muted); }
.awh-cert__actions { margin-left: auto; display: flex; gap: .35rem; flex-wrap: wrap; justify-content: flex-end; }

/* --------------------------------------------------------- leaderboard -- */

.awh-board { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.awh-board__row { display: grid; grid-template-columns: 2.4rem minmax(0, 1fr) auto; gap: .75rem; align-items: center; padding: .7rem .9rem; background: #fff; border: 1px solid var(--awh-rule); border-radius: var(--awh-radius); }
.awh-board__place { display: grid; place-items: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--awh-soft); font-family: var(--awh-head); font-weight: 700; color: var(--awh-muted); }
.awh-board__row--1 { border-color: #ead9ae; background: #fffbf1; }
.awh-board__row--1 .awh-board__place { background: #f3e2b3; color: #6f5317; }
.awh-board__row--2 .awh-board__place { background: #e6e8ec; color: #4a4f57; }
.awh-board__row--3 .awh-board__place { background: #f1dfd3; color: #7a4a2a; }
.awh-board__score { text-align: right; font-family: var(--awh-head); font-weight: 700; color: var(--awh-brand); white-space: nowrap; }
.awh-board__score small { display: block; font-family: var(--awh-body); font-weight: 400; color: var(--awh-muted); font-size: .76rem; }

.awh-winner { display: grid; gap: 1rem; align-items: center; padding: 1.2rem; border-radius: var(--awh-radius); background: linear-gradient(135deg, #fffbf1, #fff); border: 1px solid #ead9ae; }
@media (min-width: 560px) { .awh-winner { grid-template-columns: auto 1fr; } }
.awh-winner .awh-avatar { width: 84px; height: 84px; border: 3px solid #fff; box-shadow: var(--awh-shadow); }
.awh-winner__label { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #6f5317; margin-bottom: .2rem; }
.awh-winner h3 { margin: 0 0 .2rem; font-size: 1.25rem; }

.awh-rulelist { margin: 0; padding-left: 1.1rem; }
.awh-rulelist li { margin: .3rem 0; }

/* --------------------------------------------------------------- reading -- */

.awh-work { max-width: 760px; margin: 0 auto; }
.awh-work__head { margin: 1.5rem 0 1.25rem; }
.awh-work__head h1 { font-size: clamp(1.8rem, 5.5vw, 2.7rem); margin: .6rem 0 .9rem; overflow-wrap: anywhere; }
.awh-work__summary { font-size: 1.12rem; color: var(--awh-muted); margin: 0 0 1.1rem; }
.awh-work__byline { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: .9rem 0; border-top: 1px solid var(--awh-rule); border-bottom: 1px solid var(--awh-rule); }
.awh-work__byline .awh-byline__name { font-size: 1.02rem; white-space: normal; }
.awh-work__byline .awh-byline__line { white-space: normal; }
.awh-work__facts { font-size: .85rem; color: var(--awh-muted); display: flex; flex-wrap: wrap; gap: .2rem .8rem; margin-top: .15rem; }
.awh-work__image { margin: 1.25rem 0; }
.awh-work__image img { width: 100%; border-radius: var(--awh-radius); display: block; }
.awh-work__image figcaption { font-size: .8rem; color: var(--awh-faint); margin-top: .4rem; }
.awh-prose { font-family: var(--awh-read); font-size: clamp(1.06rem, 2.6vw, 1.18rem); line-height: 1.8; color: #222; overflow-wrap: anywhere; }
.awh-prose p { margin: 0 0 1.3em; }
.awh-prose h2, .awh-prose h3, .awh-prose h4 { margin: 1.6em 0 .6em; }
.awh-prose blockquote { margin: 1.5em 0; padding: .2em 0 .2em 1.1em; border-left: 3px solid var(--awh-brand); color: #444; font-style: italic; }
.awh-prose ul, .awh-prose ol { margin: 0 0 1.3em 1.3em; padding: 0; }
.awh-prose a { text-decoration: underline; text-underline-offset: 2px; }
.awh-prose pre { white-space: pre-wrap; background: var(--awh-soft); padding: 1em; border-radius: var(--awh-radius-s); font-size: .9em; }
.awh-prose hr { border: 0; text-align: center; margin: 2em 0; }
.awh-prose hr::after { content: "\2022\2002\2022\2002\2022"; color: var(--awh-faint); }
.awh-prose--verse { font-size: clamp(1.08rem, 2.8vw, 1.22rem); line-height: 1.9; overflow-wrap: normal; }
.awh-prose--verse p { margin: 0 0 1.6em; }
.awh-prose--verse p, .awh-prose--verse li { overflow-wrap: anywhere; }

.awh-like-row { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin: 2rem 0; padding: 1rem 1.1rem; background: var(--awh-tint-2); border: 1px solid var(--awh-line); border-radius: var(--awh-radius); }
.awh-like-row p { margin: 0; flex: 1 1 14rem; font-size: .93rem; color: var(--awh-muted); }

.awh-like { display: inline-flex; margin: 0; }
.awh .awh-like__btn {
	display: inline-flex; align-items: center; gap: .45rem; min-height: 44px; padding: .5rem 1rem;
	border-radius: 999px; border: 1px solid var(--awh-line); background: #fff; color: var(--awh-brand);
	font-family: var(--awh-head); font-weight: 600; font-size: .95rem; cursor: pointer; line-height: 1;
	text-transform: none; letter-spacing: normal; box-shadow: none; text-decoration: none;
	transition: transform .12s ease, background-color .15s ease;
}
.awh .awh-like__btn:hover, .awh .awh-like__btn:focus { background: var(--awh-tint); color: var(--awh-brand); border-color: var(--awh-line); text-decoration: none; }
.awh .awh-like__btn:active { transform: scale(.96); }
.awh .awh-like__btn svg { width: 20px; height: 20px; }
.awh .awh-like__btn .awh-heart-fill { fill: transparent; transition: fill .15s ease; }
.awh .awh-like__btn[aria-pressed="true"] { background: var(--awh-brand); color: #fff; border-color: var(--awh-brand); }
.awh .awh-like__btn[aria-pressed="true"] .awh-heart-fill { fill: currentColor; }
.awh .awh-like__btn[disabled] { opacity: .6; cursor: default; }
.awh-like__msg { font-size: .82rem; color: var(--awh-muted); margin-left: .5rem; align-self: center; }

.awh-topics { display: flex; flex-wrap: wrap; gap: .35rem; margin: 1.5rem 0; }

.awh-rights { font-size: .83rem; color: var(--awh-muted); border-top: 1px solid var(--awh-rule); padding-top: 1rem; margin-top: 2rem; }

.awh-author { display: grid; gap: 1rem; padding: 1.25rem; border-radius: var(--awh-radius); background: #fff; border: 1px solid var(--awh-rule); box-shadow: var(--awh-shadow); margin: 1.5rem 0 2.5rem; }
@media (min-width: 560px) { .awh-author { grid-template-columns: auto 1fr; } }
.awh-author .awh-avatar { width: 88px; height: 88px; }
.awh-author__label { font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--awh-muted); }
.awh-author h2 { font-size: 1.25rem; margin: .1rem 0 .15rem; }
.awh-author p { margin: .35rem 0 .75rem; font-size: .95rem; }

.awh-crumbs { font-size: .85rem; color: var(--awh-muted); margin: 0 0 .5rem; display: flex; flex-wrap: wrap; gap: .35rem; }
.awh-crumbs a { color: var(--awh-muted); }

/* ------------------------------------------------------------ writers -- */

.awh-writers { display: grid; gap: .75rem; }
@media (min-width: 640px) { .awh-writers { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .awh-writers { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.awh-writer { display: flex; gap: .85rem; align-items: center; padding: 1rem; background: #fff; border: 1px solid var(--awh-rule); border-radius: var(--awh-radius); color: inherit !important; box-shadow: var(--awh-shadow); }
.awh-writer:hover { border-color: var(--awh-line); text-decoration: none !important; }
.awh-writer__name { display: block; font-weight: 600; color: var(--awh-strong); }
.awh-writer__line { display: block; font-size: .83rem; color: var(--awh-muted); }
.awh-writer__nums { display: flex; gap: .75rem; font-size: .8rem; color: var(--awh-muted); margin-top: .25rem; }
.awh-writer__nums strong { color: var(--awh-strong); }

.awh-search { display: flex; gap: .5rem; margin: 0 0 1rem; max-width: 34rem; }
.awh-search input { flex: 1 1 auto; }

/* ------------------------------------------------------------ paging -- */

.awh-pages { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; margin: 1.75rem 0 0; }
.awh-pages a, .awh-pages span { display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 .7rem; border-radius: var(--awh-radius-s); border: 1px solid var(--awh-rule); background: #fff; font-weight: 600; font-size: .92rem; color: var(--awh-ink); }
.awh-pages a:hover { border-color: var(--awh-line); text-decoration: none; background: var(--awh-tint-2); }
.awh-pages [aria-current="page"] { background: var(--awh-brand); border-color: var(--awh-brand); color: #fff; }

/* ------------------------------------------------------------- steps -- */

.awh-steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
@media (min-width: 640px) { .awh-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .awh-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.awh-steps li { counter-increment: step; position: relative; padding: 1rem 1rem 1rem 3.4rem; background: #fff; border: 1px solid var(--awh-rule); border-radius: var(--awh-radius); }
.awh-steps li::before { content: counter(step); position: absolute; left: 1rem; top: 1rem; width: 1.8rem; height: 1.8rem; border-radius: 50%; display: grid; place-items: center; background: var(--awh-tint); color: var(--awh-brand); font-family: var(--awh-head); font-weight: 700; font-size: .9rem; }
.awh-steps strong { display: block; color: var(--awh-strong); font-family: var(--awh-head); }
.awh-steps span { font-size: .9rem; color: var(--awh-muted); }

/* ------------------------------------------------------------- two ways -- */

.awh-choices { display: grid; gap: 1rem; }
@media (min-width: 720px) { .awh-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.awh-choice {
	display: flex; flex-direction: column; gap: .6rem;
	background: #fff; border: 1px solid var(--awh-rule); border-radius: var(--awh-radius);
	padding: 1.25rem; box-shadow: var(--awh-shadow);
}
.awh-choice h2 { font-size: 1.15rem; margin: 0; }
.awh-choice p { margin: 0; color: var(--awh-muted); font-size: .93rem; flex: 1 1 auto; }
.awh-choice .awh-btn { margin-top: .4rem; }
.awh-choice--brand { border-color: var(--awh-line); background: var(--awh-tint-2); }

/* The short version near the foot of the landing page. It explains, it does
   not compete with the work above it, so it is quieter than a card grid. */
.awh-how .awh-section__head h2 { font-size: 1.2rem; }
.awh-steps--brief li { background: transparent; border: 0; border-top: 2px solid var(--awh-line); border-radius: 0; padding: .9rem 0 0 0; }
.awh-steps--brief li::before {
	position: static; display: inline-grid; margin: 0 0 .35rem;
	width: 1.6rem; height: 1.6rem; font-size: .8rem;
}
.awh-steps--brief strong { font-size: 1.05rem; }
.awh-how--join { margin: 0 0 1.75rem; }
.awh-how--join h2 { font-size: 1.15rem; }
.awh-how--join .awh-steps li { padding: .8rem .9rem .8rem 3rem; }
.awh-how--join .awh-steps li::before { left: .8rem; top: .85rem; width: 1.6rem; height: 1.6rem; font-size: .8rem; }
.awh-how--join .awh-steps span { font-size: .85rem; }

/* On a phone six boxes would push the first field off the screen, so the
   steps become plain lines there. */
@media (max-width: 639px) {
	.awh-how--join .awh-steps { gap: .55rem; }
	.awh-how--join .awh-steps li { background: transparent; border: 0; border-radius: 0; padding: 0 0 0 2.2rem; }
	.awh-how--join .awh-steps li::before { left: 0; top: .1rem; width: 1.5rem; height: 1.5rem; font-size: .75rem; }
	.awh-how--join .awh-steps strong { font-size: .95rem; }
	.awh-how--join .awh-steps span { font-size: .82rem; line-height: 1.45; }
}

.awh-cta { text-align: center; padding: clamp(1.5rem, 5vw, 2.5rem); border-radius: 18px; background: var(--awh-tint-2); border: 1px solid var(--awh-line); }
.awh-cta .awh-hero__actions { justify-content: center; }

/* -------------------------------------------------------------- terms -- */

.awh-terms { max-width: 46rem; }
.awh-terms h2 { margin-top: 1.75rem; font-size: 1.25rem; }
.awh-terms .awh-panel { margin-bottom: 1.5rem; }
.awh-terms ul { padding-left: 1.2rem; }

/* -------------------------------------------------------- certificate -- */

.awh-certificate { max-width: 44rem; margin: 0 auto; text-align: center; padding: clamp(1.5rem, 5vw, 3rem); border-radius: 14px; background: #fffdf9; border: 3px solid var(--awh-brand); box-shadow: inset 0 0 0 8px #fffdf9, inset 0 0 0 9px var(--awh-gold); }
.awh-certificate__org { font-family: var(--awh-head); letter-spacing: .25em; font-weight: 700; color: var(--awh-brand); font-size: .9rem; }
.awh-certificate h1 { font-family: var(--awh-read); margin: 1rem 0 .25rem; }
.awh-certificate__name { font-family: var(--awh-read); font-size: clamp(1.7rem, 5vw, 2.4rem); color: var(--awh-brand); font-weight: 700; margin: .5rem 0; }
.awh-certificate__title { font-family: var(--awh-head); font-size: 1.25rem; font-weight: 600; color: var(--awh-strong); }
.awh-certificate__ref { margin-top: 1.5rem; font-size: .85rem; color: var(--awh-muted); }
.awh-verified { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .8rem; border-radius: 999px; background: var(--awh-ok-soft); color: var(--awh-ok); font-weight: 600; font-size: .85rem; }
.awh-verified--bad { background: var(--awh-bad-soft); color: var(--awh-bad); }

@media print {
	.awh-bar, .awh-actions, .site-header, .site-footer { display: none !important; }
}

/* =====================================================================
 * 0.2 Livelier landing page, trending, bigger faces, editor, pictures
 * ================================================================== */

/* ------------------------------------------------------------ live hero -- */

.awh-hero--live { position: relative; overflow: hidden; isolation: isolate; min-height: 420px; }
@media (min-width: 880px) { .awh-hero--live { grid-template-columns: 1.15fr 1fr; } }
.awh-hero__copy { position: relative; z-index: 2; }
.awh-hero--live h1 { font-size: clamp(2rem, 6vw, 3.2rem); line-height: 1.08; }
.awh-hero__shine {
	background: linear-gradient(90deg, #fff 0%, #ffd8c9 30%, #fff 60%, #ffd8c9 100%);
	background-size: 250% 100%;
	-webkit-background-clip: text; background-clip: text; color: transparent;
	animation: awh-shine 6s linear infinite;
}
.awh-hero__rotor { font-size: 1.15rem !important; color: #fff !important; margin-bottom: .5rem !important; }
.awh-rotor {
	display: inline-block; padding: 0 .4rem; border-radius: 6px;
	background: rgba(255, 255, 255, .16); font-weight: 700; white-space: nowrap;
	transition: opacity .35s ease, transform .35s ease;
}
.awh-rotor.is-out { opacity: 0; transform: translateY(-.4em); }
.awh-live-dot {
	display: inline-block; width: 8px; height: 8px; margin-right: .45rem; border-radius: 50%;
	background: #6ee7a8; box-shadow: 0 0 0 0 rgba(110, 231, 168, .7); vertical-align: middle;
	animation: awh-pulse 1.8s ease-out infinite;
}
.awh-hero__kicker { text-transform: none !important; letter-spacing: 0 !important; font-size: .85rem !important; }

.awh-hero__numbers { display: flex; flex-wrap: wrap; gap: .75rem 1.75rem; margin: 1.6rem 0 0; padding: 0; }
.awh-hero__numbers div { min-width: 5.5rem; }
.awh-hero__numbers dt { order: 2; font-size: .8rem; color: rgba(255, 255, 255, .75); margin: 0; }
.awh-hero__numbers dd { margin: 0; font-family: var(--awh-head); font-size: 1.8rem; font-weight: 700; color: #fff; line-height: 1.1; }
.awh-hero__numbers div { display: flex; flex-direction: column-reverse; }

.awh-hero__blob { position: absolute; z-index: 0; border-radius: 50%; filter: blur(40px); opacity: .55; pointer-events: none; }
.awh-hero__blob--a { width: 340px; height: 340px; background: #c2185b; top: -120px; right: -60px; animation: awh-drift 14s ease-in-out infinite alternate; }
.awh-hero__blob--b { width: 260px; height: 260px; background: #f57c00; bottom: -120px; left: 30%; opacity: .35; animation: awh-drift 18s ease-in-out infinite alternate-reverse; }
.awh-hero__blob--c { width: 200px; height: 200px; background: #5e0b0b; top: 30%; left: -80px; animation: awh-drift 16s ease-in-out infinite alternate; }

.awh-hero__stage { position: relative; z-index: 1; min-height: 440px; }
@media (max-width: 879px) { .awh-hero__stage { min-height: 400px; margin-top: .5rem; } }
.awh-float {
	position: absolute; display: flex; flex-direction: column; gap: .4rem;
	width: min(290px, 78%); padding: .95rem 1rem; border-radius: 14px;
	background: #fff; color: var(--awh-ink) !important; text-decoration: none !important;
	box-shadow: 0 18px 40px rgba(40, 0, 0, .35);
	animation: awh-float 7s ease-in-out infinite;
	will-change: transform;
}
.awh-float:hover { box-shadow: 0 22px 48px rgba(40, 0, 0, .45); }
.awh-float--1 { top: 0; right: 6%; transform: rotate(3deg); animation-delay: 0s; z-index: 3; }
.awh-float--2 { top: 33%; left: 0; transform: rotate(-4deg); animation-delay: -2.3s; z-index: 2; }
.awh-float--3 { bottom: 0; right: 0; transform: rotate(2deg); animation-delay: -4.6s; z-index: 1; }
.awh-float__tag { align-self: flex-start; padding: .1rem .5rem; border-radius: 999px; background: var(--awh-tint); color: var(--awh-brand); font-size: .72rem; font-weight: 700; }
.awh-float__title { font-family: var(--awh-head); font-weight: 600; font-size: 1rem; line-height: 1.3; color: var(--awh-strong); }
.awh-float__by { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--awh-muted); }
.awh-float__likes { position: absolute; top: .8rem; right: .9rem; display: inline-flex; align-items: center; gap: .2rem; color: var(--awh-brand); font-weight: 700; font-size: .82rem; }
.awh-float__likes svg { width: 14px; height: 14px; }
.awh-float__likes .awh-heart-fill { fill: currentColor; }
.awh-float--sample { opacity: .95; }
.awh-quill { position: absolute; left: 4%; top: 2%; width: 56px; height: 56px; color: rgba(255, 255, 255, .85); animation: awh-write 5s ease-in-out infinite; z-index: 4; }
.awh-quill svg { width: 100%; height: 100%; }

@media (max-width: 879px) {
	.awh-float { width: min(270px, 82%); padding: .8rem .9rem; }
	.awh-float--1 { right: 2%; }
	.awh-float--2 { top: 31%; }
	.awh-float--3 { right: 1%; }
	.awh-quill { width: 44px; height: 44px; top: 4%; left: 2%; }
}

@keyframes awh-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }
@keyframes awh-drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(-40px, 30px) scale(1.15); } }
@keyframes awh-shine { from { background-position: 0% 0; } to { background-position: -250% 0; } }
@keyframes awh-pulse { 0% { box-shadow: 0 0 0 0 rgba(110, 231, 168, .7); } 80%, 100% { box-shadow: 0 0 0 10px rgba(110, 231, 168, 0); } }
@keyframes awh-write { 0%, 100% { transform: translate(0, 0) rotate(-8deg); } 25% { transform: translate(14px, 6px) rotate(4deg); } 50% { transform: translate(28px, 0) rotate(-6deg); } 75% { transform: translate(12px, 8px) rotate(5deg); } }
@keyframes awh-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- ticker -- */

.awh-ticker { position: relative; overflow: hidden; margin: -1rem 0 2rem; padding: .7rem 0; border-top: 1px solid var(--awh-rule); border-bottom: 1px solid var(--awh-rule);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.awh-ticker__track { display: flex; width: max-content; animation: awh-ticker 40s linear infinite; }
.awh-ticker:hover .awh-ticker__track, .awh-ticker:focus-within .awh-ticker__track { animation-play-state: paused; }
.awh-ticker__group { display: flex; gap: 2.2rem; padding-right: 2.2rem; }
.awh-ticker__item { display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; font-weight: 600; color: var(--awh-strong) !important; font-size: .92rem; }
.awh-ticker__label { padding: .1rem .45rem; border-radius: 4px; background: var(--awh-brand); color: #fff; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }
.awh-ticker__by { color: var(--awh-muted); font-weight: 400; }

/* -------------------------------------------------------------- trending -- */

.awh-topics-bar { display: flex; align-items: center; gap: .75rem; margin: 0 0 1.5rem; flex-wrap: wrap; }
.awh-topics-bar__label { font-family: var(--awh-head); font-weight: 700; color: var(--awh-strong); white-space: nowrap; }
.awh-topics-bar .awh-chips { margin: 0; flex: 1 1 0; min-width: 0; }
.awh-chip--topic { background: var(--awh-tint-2); border-color: var(--awh-line); color: var(--awh-brand) !important; font-weight: 600; }

.awh-trend-grid { display: grid; gap: 1rem; }
@media (min-width: 900px) {
	.awh-trend-grid { grid-template-columns: 1.1fr 1fr; align-items: stretch; }
	.awh-trend-grid--few { grid-template-columns: minmax(0, 1fr); }
	.awh-trend-grid--few .awh-lead { min-height: 340px; }
}
.awh-lead {
	position: relative; display: flex; align-items: flex-end; min-height: 380px; height: 100%;
	border-radius: 18px; overflow: hidden; color: #fff !important; text-decoration: none !important;
	background: linear-gradient(135deg, #830606, #3d0404); background-size: cover; background-position: center;
	box-shadow: var(--awh-shadow); transition: transform .25s ease;
}
.awh-lead:hover { transform: translateY(-3px); }
.awh-lead__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(20,0,0,.85) 100%); }
.awh-lead--image .awh-lead__shade { background: linear-gradient(180deg, rgba(0,0,0,0) 10%, rgba(20,0,0,.88) 100%); }
.awh-lead__rank { position: absolute; top: 1rem; left: 1rem; padding: .3rem .75rem; border-radius: 999px; background: #fff; color: var(--awh-brand); font-family: var(--awh-head); font-weight: 700; font-size: .8rem; z-index: 1; }
.awh-lead__body { position: relative; display: flex; flex-direction: column; gap: .55rem; padding: 1.4rem; width: 100%; }
.awh-lead__body .awh-tag { align-self: flex-start; background: rgba(255,255,255,.18); color: #fff !important; }
.awh-lead__title { font-family: var(--awh-head); font-weight: 700; font-size: clamp(1.4rem, 3.4vw, 2rem); line-height: 1.2; }
.awh-lead__excerpt { color: rgba(255,255,255,.85); font-size: .95rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.awh-lead__foot { display: flex; align-items: center; gap: .6rem; margin-top: .3rem; }
.awh-lead__foot .awh-avatar { border: 2px solid #fff; }
.awh-lead__by { font-weight: 600; flex: 1 1 auto; }
.awh-lead .awh-hearts { color: #fff; }
.awh-lead .awh-hearts .awh-heart-fill { fill: currentColor; }

.awh-trend-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; align-content: start; grid-auto-rows: min-content; counter-reset: none; }
.awh-trend { display: grid; grid-template-columns: 2.1rem 76px minmax(0, 1fr) auto; gap: .8rem; align-items: center; padding: .8rem 1rem; background: #fff; border: 1px solid var(--awh-rule); border-radius: var(--awh-radius); box-shadow: var(--awh-shadow); transition: transform .2s ease, border-color .2s ease; }
.awh-trend:hover { transform: translateX(4px); border-color: var(--awh-line); }
.awh-trend__thumb { display: block; width: 76px; height: 76px; border-radius: 12px; overflow: hidden; background: var(--awh-tint); }
.awh-trend__thumb img, .awh-trend__img { display: block; width: 100%; height: 100%; object-fit: cover; }
.awh-trend__img--none {
	display: grid; place-items: center; font-family: var(--awh-head); font-weight: 700;
	font-size: 1.5rem; color: #fff;
	background: linear-gradient(140deg, var(--awh-art-1), var(--awh-art-2));
}
@media (max-width: 600px) {
	.awh-trend { grid-template-columns: 1.6rem 52px minmax(0, 1fr) auto; gap: .6rem; padding: .7rem .8rem; }
	.awh-trend__thumb, .awh-trend__img--none { width: 52px; height: 52px; border-radius: 10px; }
}
.awh-trend__rank { font-family: var(--awh-head); font-weight: 800; font-size: 1.7rem; color: var(--awh-line); text-align: center; }
.awh-trend__title { display: block; font-family: var(--awh-head); font-weight: 600; color: var(--awh-strong) !important; margin-bottom: .35rem; line-height: 1.3; }
.awh-trend .awh-hearts .awh-heart-fill, .awh-card .awh-hearts .awh-heart-fill { fill: currentColor; }

/* ---------------------------------------------------------------- reveal -- */

.awh-motion .awh-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.awh-motion .awh-reveal.is-in { opacity: 1; transform: none; }
.awh-motion .awh-trend.awh-reveal:nth-child(2) { transition-delay: .08s; }
.awh-motion .awh-trend.awh-reveal:nth-child(3) { transition-delay: .16s; }
.awh-motion .awh-trend.awh-reveal:nth-child(4) { transition-delay: .24s; }
.awh-motion .awh-trend.awh-reveal:nth-child(5) { transition-delay: .32s; }

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

/* -------------------------------------------------------- bigger faces -- */

.awh-work__byline .awh-byline { gap: .9rem; }
.awh-avatar--byline { width: 80px !important; height: 80px !important; border: 3px solid #fff; box-shadow: 0 4px 14px rgba(0,0,0,.12); }
.awh-avatar--author { width: 140px !important; height: 140px !important; border: 4px solid #fff; box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.awh-author { align-items: center; }
@media (max-width: 559px) {
	.awh-avatar--byline { width: 64px !important; height: 64px !important; }
	.awh-author { justify-items: center; text-align: center; }
	.awh-author .awh-avatar--author { width: 120px !important; height: 120px !important; }
}
.awh-profile__photo .awh-avatar { width: 168px; height: 168px; }
@media (max-width: 719px) { .awh-profile { justify-items: center; text-align: center; } .awh-profile__interests { justify-content: center; } .awh-profile__photo .awh-avatar { width: 140px; height: 140px; } }
.awh-card__foot .awh-avatar { width: 40px; height: 40px; }
.awh-writer .awh-avatar { width: 72px; height: 72px; }
.awh-winner .awh-avatar { width: 104px; height: 104px; }

/* ------------------------------------------------------------ pictures -- */

.awh-prose figure, .awh-prose .awh-figure { margin: 1.8em 0; }
.awh-prose img { display: block; max-width: 100%; height: auto; margin: 0 auto; border-radius: var(--awh-radius-s); }
.awh-prose figcaption { margin-top: .5em; text-align: center; font-family: var(--awh-body); font-size: .85rem; color: var(--awh-muted); }

/* ---------------------------------------------------------------- editor -- */

.awh-editor__head { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: .45rem; }
.awh-editor__head .awh-label { margin: 0; }
.awh-image-panel { margin: 0 0 .75rem; padding: 1rem 1.1rem; border: 1px solid var(--awh-line); border-radius: var(--awh-radius); background: var(--awh-tint-2); }
.awh-image-panel[hidden] { display: none; }
.awh-image-panel__lede { margin: 0 0 .75rem !important; font-size: .92rem; }
.awh-image-status { font-size: .88rem; color: var(--awh-muted); }

/* The site kit styles every button in brand red, which made the editor
   toolbar look rough. Put the editor back to a calm, consistent look. */
.awh .awh-editor .wp-editor-wrap { border-radius: var(--awh-radius); }
.awh .awh-editor .wp-editor-tools { display: flex; justify-content: flex-end; padding: 0; margin: 0; background: transparent; }
.awh .awh-editor .wp-editor-tabs { float: none; display: flex; gap: 2px; }
.awh .awh-editor button.wp-switch-editor,
.awh .awh-editor .wp-switch-editor {
	float: none; margin: 0; height: auto; min-height: 0; padding: .35rem .9rem !important;
	border: 1px solid #d5d7dc !important; border-bottom: 0 !important; border-radius: 8px 8px 0 0 !important;
	background: #f3f4f6 !important; color: var(--awh-muted) !important;
	font: 500 13px/1.4 var(--awh-body) !important; text-transform: none !important; letter-spacing: 0 !important; box-shadow: none !important;
}
.awh .awh-editor .tmce-active .switch-tmce,
.awh .awh-editor .html-active .switch-html { background: #fff !important; color: var(--awh-strong) !important; }
.awh .awh-editor .wp-editor-container { border: 1px solid #d5d7dc !important; border-radius: 0 0 var(--awh-radius) var(--awh-radius) !important; overflow: hidden; background: #fff; }
.awh .awh-editor .mce-tinymce, .awh .awh-editor .mce-panel { border: 0 !important; box-shadow: none !important; background: #fff !important; }
.awh .awh-editor .mce-toolbar-grp { background: #fafafa !important; border-bottom: 1px solid #e6e7eb !important; padding: 4px 6px !important; }
.awh .awh-editor .mce-toolbar .mce-btn-group { padding: 0 !important; }
.awh .awh-editor .mce-toolbar .mce-btn-group .mce-btn { margin: 1px !important; }
.awh .awh-editor .mce-btn,
.awh .awh-editor .mce-btn button,
.awh .awh-editor .mce-btn.mce-active,
.awh .awh-editor .mce-btn:hover,
.awh .awh-editor .mce-btn:focus {
	background: transparent !important; background-image: none !important; box-shadow: none !important;
	border-color: transparent !important; text-transform: none !important; letter-spacing: 0 !important;
}
.awh .awh-editor .mce-btn button {
	min-height: 0 !important; height: 32px !important; padding: 4px 6px !important; margin: 0 !important;
	border: 0 !important; border-radius: 6px !important; color: #3c434a !important; line-height: 24px !important;
	font: 400 14px/24px var(--awh-body) !important; width: auto !important;
}
.awh .awh-editor .mce-btn { border-radius: 6px !important; }
.awh .awh-editor .mce-btn:hover button, .awh .awh-editor .mce-btn:focus-within button { background: #eef0f3 !important; color: var(--awh-strong) !important; }
.awh .awh-editor .mce-btn.mce-active button, .awh .awh-editor .mce-btn.mce-active:hover button { background: var(--awh-tint) !important; color: var(--awh-brand) !important; }
.awh .awh-editor .mce-ico { color: inherit !important; font-size: 18px !important; }
.awh .awh-editor .mce-ico::before { font-size: 18px !important; line-height: 20px !important; }
.awh .awh-editor .mce-i-image { width: 20px !important; height: 20px !important; line-height: 20px !important; padding: 0 !important; margin: 0 !important; vertical-align: top !important; }
.awh .awh-editor .mce-i-image::before { font-family: dashicons !important; content: "\f128" !important; display: block; width: 20px; height: 20px; font-size: 20px !important; }
.awh .awh-editor .mce-listbox button { border: 1px solid #d5d7dc !important; background: #fff !important; padding-right: 22px !important; }
.awh .awh-editor .mce-listbox .mce-txt { font-size: 13px !important; color: var(--awh-strong) !important; }
.awh .awh-editor .quicktags-toolbar { background: #fafafa; border-bottom: 1px solid #e6e7eb; padding: 4px 6px; }
.awh .awh-editor .quicktags-toolbar input.button,
.awh .awh-editor .quicktags-toolbar input[type="button"] {
	min-height: 30px !important; height: auto !important; margin: 2px !important; padding: 2px 10px !important;
	border: 1px solid #d5d7dc !important; border-radius: 6px !important; background: #fff !important;
	color: #3c434a !important; font: 500 13px/1.6 var(--awh-body) !important; text-transform: none !important; box-shadow: none !important;
}
.awh .awh-editor .quicktags-toolbar input[type="button"]:hover { background: var(--awh-tint) !important; color: var(--awh-brand) !important; border-color: var(--awh-line) !important; }
.awh .awh-editor textarea.wp-editor-area { border: 0 !important; border-radius: 0 !important; padding: 14px 16px !important; }
.awh .awh-editor .mce-edit-area iframe { min-height: 360px; }

@media (max-width: 600px) { .awh-hero__rotor br { display: none; } }

/* ------------------------------------------ 0.4 phones, sharing, comments -- */

/* A shorter stack of cards on phones. Two cards, no quill. */
@media (max-width: 600px) {
	.awh-hero__stage { min-height: 236px; margin-top: 1.25rem; }
	.awh-float { width: 76%; padding: .7rem .8rem; gap: .3rem; border-radius: 12px; box-shadow: 0 12px 28px rgba(40, 0, 0, .35); }
	.awh-float__title { font-size: .92rem; }
	.awh-float__by { font-size: .76rem; }
	.awh-float__by .awh-avatar { width: 26px !important; height: 26px !important; }
	.awh-float__likes { top: .65rem; right: .75rem; font-size: .76rem; }
	.awh-float--1 { top: 0; right: 0; }
	.awh-float--2 { top: auto; bottom: 0; left: 0; }
	.awh-float--3, .awh-quill { display: none; }
	@keyframes awh-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
}

/* Share buttons. */
.awh-share { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.awh-share__native[hidden] { display: none; }
.awh-share__status:empty { display: none; }
.awh-share__url {
	width: 100%; margin: .25rem 0 .75rem; padding: .6rem .75rem;
	border: 1px solid var(--awh-line); border-radius: 10px; background: #fafafa;
	font-size: .92rem; color: var(--awh-strong);
}
.awh-share-row { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem; margin: 1rem 0 0; }
.awh-share-panel h2 { font-size: 1.15rem; }

/* Comments sit in the reading column and use the theme's own form. */
.awh-comments {
	max-width: 46rem; margin: 2.5rem auto 0; padding: 1.5rem 1.25rem;
	border: 1px solid var(--awh-line); border-radius: 16px; background: #fff;
}
.awh-comments .comments-title, .awh-comments .comment-reply-title, .awh-comments h2, .awh-comments h3 {
	font-family: var(--awh-head); color: var(--awh-strong); font-size: 1.2rem; margin: 0 0 1rem;
}
.awh-comments ol, .awh-comments ul { list-style: none; margin: 0; padding: 0; }
.awh-comments .comment-body, .awh-comments article.comment { padding: .9rem 0; border-bottom: 1px solid var(--awh-line); }
.awh-comments .children { padding-left: 1.25rem; border-left: 2px solid var(--awh-tint); }
.awh-comments .avatar { border-radius: 50%; }
.awh-comments textarea, .awh-comments input[type="text"], .awh-comments input[type="email"], .awh-comments input[type="url"] {
	width: 100%; max-width: 100%; padding: .65rem .8rem; border: 1px solid var(--awh-line); border-radius: 10px; font: inherit;
}
.awh-comments .comment-form p { margin: 0 0 .9rem; }
.awh-comments textarea { min-height: 7.5rem; height: 7.5rem; resize: vertical; }
.awh-comments .form-submit input[type="submit"], .awh-comments .submit {
	background: var(--awh-brand); color: #fff; border: 0; border-radius: 10px; padding: .7rem 1.4rem; font-weight: 700; cursor: pointer;
}
.awh-comments .nocomments { color: var(--awh-muted); }

/* Comment counts beside likes. */
.awh-card__counts { display: inline-flex; align-items: center; gap: .7rem; }
.awh-comment-count { display: inline-flex; align-items: center; gap: .25rem; color: var(--awh-muted) !important; font-weight: 600; font-size: .85rem; text-decoration: none !important; }
.awh-comment-count svg { width: 15px; height: 15px; }
a.awh-comment-count:hover, a.awh-comment-count:focus { color: var(--awh-brand) !important; }

/* Several competitions in one month. */
.awh-boards { display: grid; gap: 1rem; }
@media (min-width: 900px) { .awh-boards { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; } }
.awh-standings { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .5rem; }
.awh-standings__row {
	display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem;
	padding: .6rem .8rem; border: 1px solid var(--awh-rule); border-radius: 12px; background: #fff;
}
.awh-standings__row.is-leading { border-color: var(--awh-line); background: var(--awh-tint-2); }
.awh-standings__name { font-family: var(--awh-head); font-weight: 600; color: var(--awh-strong); }
.awh-standings__where { color: var(--awh-muted); font-size: .9rem; }
.awh-standings__prize { margin-left: auto; font-weight: 700; color: var(--awh-brand); font-size: .9rem; }

/* The comment section, drawn by Creators. */
.awh-comments__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.awh-comments__title { font-family: var(--awh-head); font-size: 1.2rem; color: var(--awh-strong); margin: 0 0 1rem; }
.awh-comments__list, .awh-comments__list .children { list-style: none; margin: 0; padding: 0; }
.awh-comments__list .children { margin: .6rem 0 0 2.6rem; padding-left: .9rem; border-left: 2px solid var(--awh-tint); }
.awh-comment { margin: 0 0 .9rem; }
.awh-comment__row { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: .7rem; align-items: start; }
.awh-comment__row .awh-avatar, .awh-comment__row img.avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.awh-comment__bubble { background: #f2f3f5; border-radius: 16px; padding: .6rem .9rem; }
.awh-comment.is-held .awh-comment__bubble { background: var(--awh-tint-2); border: 1px dashed var(--awh-line); }
.awh-comment__name { display: block; font-family: var(--awh-head); font-weight: 600; font-size: .95rem; color: var(--awh-strong); }
.awh-comment__name a { color: var(--awh-strong) !important; }
.awh-comment__name a:hover { text-decoration: underline !important; }
.awh-comment__badge { margin-left: .4rem; padding: .05rem .45rem; border-radius: 999px; background: var(--awh-tint); color: var(--awh-brand); font-size: .7rem; font-weight: 700; vertical-align: middle; }
.awh-comment__text { margin-top: .15rem; color: var(--awh-ink); line-height: 1.5; }
.awh-comment__text p { margin: 0 0 .4rem; }
.awh-comment__text p:last-child { margin-bottom: 0; }
.awh-comment__meta { display: flex; flex-wrap: wrap; gap: .1rem 1rem; padding: .3rem .9rem 0; font-size: .82rem; }
.awh-comment__meta a { color: var(--awh-muted) !important; font-weight: 600; }
.awh-comment__meta a:hover, .awh-comment__meta a:focus { color: var(--awh-brand) !important; text-decoration: underline !important; }
.awh-comment__held { color: var(--awh-muted); font-style: italic; }
.awh-comments__signin { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem; margin-top: 1rem; }
.awh-comment-form { margin-top: 1.2rem; }
.awh-comment-form .comment-reply-title { font-family: var(--awh-head); font-size: 1rem; color: var(--awh-strong); margin: 0 0 .6rem; }
.awh-comment-form__me { display: flex; align-items: center; gap: .6rem; margin: 0 0 .6rem; font-weight: 600; color: var(--awh-strong); }
.awh-comment-form__me .awh-avatar, .awh-comment-form__me img.avatar { width: 36px; height: 36px; border-radius: 50%; }
.awh-comment-form__field textarea { width: 100%; min-height: 3.2rem; padding: .7rem .9rem; border: 1px solid var(--awh-line); border-radius: 18px; font: inherit; background: #f7f8fa; }
.awh-comment-form__field textarea:focus { background: #fff; outline: 2px solid var(--awh-brand); outline-offset: 1px; }
.awh-comment-form .form-submit { margin: .6rem 0 0; }
#cancel-comment-reply-link { margin-left: .6rem; font-size: .85rem; font-weight: 600; }
