/*
 * Shining Awards — premium widget layer.
 *
 * Two halves:
 *   1. `.sa-w*` — the four Shining widgets (Live Standings / Closing Soon /
 *      Trending Idols / Winners' Circle) + compact sidebar tuning for the
 *      Ongoing Votes cards.
 *   2. A premium restyle of the GENERIC widget area (Jannah's editorial
 *      widgets) — typography, spacing, hover micro-interactions. Sidebar
 *      widgets stay FLAT by design (skin.css strips the .container-wrapper
 *      panel); premium here means rhythm and detail, not boxes.
 *
 * Token-driven throughout (tokens.css is the single source of truth).
 */

/* ══════════════════════════════════════════════════════════════════════════
   1a. Widget title — shared crown for every sidebar widget.
   Jannah markup: .widget-title > .the-subtitle. skin.css already sets the
   display face; here: the ✦ spark + gradient hairline that brands the block.
   ══════════════════════════════════════════════════════════════════════════ */
.sidebar .widget-title {
	margin-bottom: 1rem;
}
.sidebar .widget-title .the-subtitle {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: .01em;
	padding-bottom: .55rem;
	position: relative;
}
.sidebar .widget-title .the-subtitle::before {
	content: "\2726"; /* ✦ */
	font-size: .78em;
	background: var(--sa-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	transform: translateY(-1px);
}
.sidebar .widget-title .the-subtitle::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 44px;
	height: 3px;
	border-radius: var(--sa-radius-pill);
	background: var(--sa-gradient);
}
.sidebar .widget {
	margin-bottom: 2.2rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   1b. Shared Shining-widget atoms.
   ══════════════════════════════════════════════════════════════════════════ */
.sa-w {
	font-size: .88rem;
}
.sa-w ol,
.sa-w ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Avatar — the shared focal-crop formula, verbatim from vote-frame.css
   (`.sa-nom__av--photo img`), renamed only: the image is blown up to
   308% × zoom of the frame and offset by the per-nominee focal point. */
.sa-w-av {
	position: relative;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--sa-gradient);
	color: var(--sa-on-accent);
	font-family: var(--sa-font-display);
	font-size: .72rem;
	font-weight: 800;
}
.sa-w-av--photo {
	background: var(--sa-surface-2);
	border: 1px solid var(--sa-border);
}
.sa-w-av--photo img {
	position: absolute;
	width: calc(308% * var(--np-zoom, 1));
	height: calc(308% * var(--np-zoom, 1));
	max-width: none;
	max-height: none;
	left: calc(var(--np-fx, .5) * (1 - 3.08 * var(--np-zoom, 1)) * 100%);
	top: calc(var(--np-fy, .4) * (1 - 3.08 * var(--np-zoom, 1)) * 100%);
	object-fit: cover;
	object-position: center 40%;
}

/* Group tag riding a name. */
.sa-w-grp {
	font-style: normal;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--sa-pink);
}

/* Footer row: context + "more" link. */
.sa-w-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	margin-top: .9rem;
	padding-top: .7rem;
	border-top: 1px solid var(--sa-border);
	font-size: .78rem;
	color: var(--sa-text-dim);
}
.sa-w-more {
	margin-left: auto;
	font-family: var(--sa-font-display);
	font-size: .78rem;
	font-weight: 700;
	color: var(--sa-violet-light);
	transition: color .18s ease, transform .18s ease;
}
.sa-w-more:hover {
	color: var(--sa-pink);
	transform: translateX(2px);
}

/* ══════════════════════════════════════════════════════════════════════════
   1c. Live Standings.
   ══════════════════════════════════════════════════════════════════════════ */
.sa-w-stand__poll {
	margin: 0 0 .8rem;
	font-size: .78rem;
	font-weight: 600;
	color: var(--sa-text-dim);
}
.sa-w-stand__item + .sa-w-stand__item {
	margin-top: .35rem;
}
.sa-w-stand__row {
	display: flex;
	align-items: center;
	gap: .6rem;
	padding: .45rem .55rem;
	border-radius: var(--sa-radius-sm);
	color: var(--sa-text);
	transition: background .18s ease, transform .18s ease;
}
a.sa-w-stand__row:hover {
	background: var(--sa-surface-1);
	transform: translateX(2px);
}
a.sa-w-stand__row:hover .sa-w-stand__name {
	color: var(--sa-violet-light);
}
.sa-w-stand__rank {
	flex: 0 0 1.15rem;
	font-family: var(--sa-font-display);
	font-size: .8rem;
	font-weight: 700;
	color: var(--sa-text-dim);
	text-align: center;
}
.sa-w-stand__item.is-lead .sa-w-stand__rank {
	background: var(--sa-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.sa-w-stand__item.is-lead .sa-w-av {
	border-color: var(--sa-border-strong);
	box-shadow: 0 0 0 2px rgba(255, 61, 174, .18);
}
.sa-w-stand__meta {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: .3rem;
}
.sa-w-stand__name {
	font-weight: 600;
	font-size: .85rem;
	line-height: 1.25;
	color: var(--sa-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color .18s ease;
}
.sa-w-stand__bar {
	display: block;
	height: 4px;
	border-radius: var(--sa-radius-pill);
	background: var(--sa-surface-2);
	overflow: hidden;
}
.sa-w-stand__bar i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--sa-gradient);
	transition: width .6s cubic-bezier(.22, .8, .3, 1);
}
.sa-w-stand__val {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: .1rem;
	line-height: 1.1;
}
.sa-w-stand__val b {
	font-family: var(--sa-font-display);
	font-size: .82rem;
	font-weight: 700;
	color: var(--sa-text);
}
.sa-w-stand__val i {
	font-style: normal;
	font-size: .68rem;
	color: var(--sa-text-dim);
}
.sa-w-stand__total b {
	color: var(--sa-text-muted);
	font-weight: 700;
}
/* A vote count that just moved (live refresh) pops once. */
@keyframes sa-w-bump {
	0% { transform: scale(1); }
	40% { transform: scale(1.18); color: var(--sa-pink); }
	100% { transform: scale(1); }
}
.sa-w-bump {
	display: inline-block;
	animation: sa-w-bump .45s ease;
}

/* ══════════════════════════════════════════════════════════════════════════
   1d. Closing Soon.
   ══════════════════════════════════════════════════════════════════════════ */
.sa-w-close__item + .sa-w-close__item {
	margin-top: .4rem;
}
.sa-w-close__row {
	display: flex;
	flex-direction: column;
	gap: .45rem;
	padding: .65rem .7rem;
	border: 1px solid var(--sa-border);
	border-radius: var(--sa-radius-sm);
	transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.sa-w-close__row:hover {
	background: var(--sa-surface-1);
	border-color: var(--sa-border-strong);
	transform: translateY(-1px);
}
.sa-w-close__title {
	font-weight: 600;
	font-size: .85rem;
	line-height: 1.3;
	color: var(--sa-text);
	transition: color .18s ease;
}
.sa-w-close__row:hover .sa-w-close__title {
	color: var(--sa-violet-light);
}
.sa-w-close__meta {
	display: flex;
	align-items: center;
	gap: .6rem;
}
.sa-w-close__cd {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	font-size: .72rem;
	font-weight: 700;
	color: var(--sa-text-muted);
	background: var(--sa-surface-2);
	border-radius: var(--sa-radius-pill);
	padding: .22rem .6rem;
}
.sa-w-close__cd b {
	font-family: var(--sa-font-display);
	color: var(--sa-text);
}
.sa-w-close__ic {
	width: .8rem;
	height: .8rem;
}
/* Under 24h: the chip warms up. */
.sa-w-close__cd.is-soon {
	background: var(--sa-gradient);
	color: var(--sa-on-accent, #fff);
}
.sa-w-close__cd.is-soon b {
	color: var(--sa-on-accent, #fff);
}
.sa-w-close__cd.is-closed {
	background: var(--sa-surface-2);
	color: var(--sa-text-dim);
}
.sa-w-close__votes {
	font-size: .74rem;
	color: var(--sa-text-dim);
}

/* ══════════════════════════════════════════════════════════════════════════
   1e. Trending Idols.
   ══════════════════════════════════════════════════════════════════════════ */
.sa-w-trend__item + .sa-w-trend__item {
	margin-top: .35rem;
}
.sa-w-trend__row {
	display: flex;
	align-items: center;
	gap: .6rem;
	padding: .45rem .55rem;
	border-radius: var(--sa-radius-sm);
	transition: background .18s ease, transform .18s ease;
}
a.sa-w-trend__row:hover {
	background: var(--sa-surface-1);
	transform: translateX(2px);
}
a.sa-w-trend__row:hover .sa-w-trend__name {
	color: var(--sa-violet-light);
}
.sa-w-trend__rank {
	flex: 0 0 1.15rem;
	font-family: var(--sa-font-display);
	font-size: .8rem;
	font-weight: 700;
	color: var(--sa-text-dim);
	text-align: center;
}
.sa-w-trend__item:first-child .sa-w-trend__rank {
	background: var(--sa-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.sa-w-trend__meta {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: .12rem;
}
.sa-w-trend__name {
	font-weight: 600;
	font-size: .85rem;
	line-height: 1.25;
	color: var(--sa-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color .18s ease;
}
.sa-w-trend__poll {
	font-size: .7rem;
	color: var(--sa-text-dim);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.sa-w-trend__chip {
	flex: 0 0 auto;
	font-family: var(--sa-font-display);
	font-size: .72rem;
	font-weight: 700;
	color: var(--sa-text-muted);
	background: var(--sa-surface-2);
	border-radius: var(--sa-radius-pill);
	padding: .22rem .55rem;
}
.sa-w-trend__chip.is-up {
	background: var(--sa-gradient);
	color: var(--sa-on-accent, #fff);
}

/* ══════════════════════════════════════════════════════════════════════════
   1f. Winners' Circle — rotating champion spotlight + avatar-thumb pager.
   Server renders slide 0 visible, the rest [hidden]; widgets.js only swaps
   which one shows. The shine sweep is FINITE (two passes per activation,
   armed by JS) per the house shine rule.
   ══════════════════════════════════════════════════════════════════════════ */
.sa-w-win__slide[hidden] {
	display: none; /* explicit — a display rule on the slide would outrank [hidden] */
}
.sa-w-win__hero {
	display: flex;
	align-items: center;
	gap: .75rem;
}

/* Gradient ring around the champion, with the bounded shine sweep. */
.sa-w-win__ring {
	position: relative;
	flex: none;
	width: 64px;
	height: 64px;
	padding: 3px;
	border-radius: 50%;
	background: var(--sa-gradient);
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(255, 61, 174, .22);
}
.sa-w-win__ring .sa-w-av {
	width: 100%;
	height: 100%;
	font-size: .95rem;
}
.sa-w-win__ring::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, .38) 50%, transparent 68%);
	transform: translateX(-130%);
	pointer-events: none;
}
.sa-w-win__ring.is-lit::after {
	animation: sa-w-winshine 1.15s ease .2s 2;
}
@keyframes sa-w-winshine {
	from { transform: translateX(-130%); }
	to   { transform: translateX(130%); }
}

.sa-w-win__who {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: .4rem;
}
.sa-w-win__tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .35rem;
}
.sa-w-win__badge {
	display: inline-flex;
	align-items: center;
	gap: .28rem;
	font-family: var(--sa-font-display);
	font-size: .6rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--sa-on-accent, #fff);
	background: var(--sa-gradient);
	border-radius: var(--sa-radius-pill);
	padding: .2rem .55rem;
}
.sa-w-win__heart {
	width: .72rem;
	height: .72rem;
}
.sa-w-win__month {
	font-size: .64rem;
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--sa-text-dim);
	background: var(--sa-surface-2);
	border-radius: var(--sa-radius-pill);
	padding: .2rem .55rem;
}
.sa-w-win__name {
	font-family: var(--sa-font-display);
	font-size: 1.04rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--sa-text);
}
.sa-w-win__name .sa-w-grp {
	font-size: .66rem;
}

.sa-w-win__for {
	margin: .6rem 0 0;
	font-size: .8rem;
	line-height: 1.4;
	color: var(--sa-text-dim);
}
.sa-w-win__won {
	font-weight: 700;
	color: var(--sa-text-muted);
}
.sa-w-win__for a {
	font-weight: 600;
	color: var(--sa-text);
	transition: color .18s ease;
}
.sa-w-win__for a:hover {
	color: var(--sa-violet-light);
}

/* Vote-share bar + counts. */
.sa-w-win__bar {
	display: block;
	height: 6px;
	margin-top: .6rem;
	border-radius: var(--sa-radius-pill);
	background: var(--sa-surface-2);
	overflow: hidden;
}
.sa-w-win__bar i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--sa-gradient);
	transition: width .8s cubic-bezier(.22, .8, .3, 1);
}
.sa-w-win__votes {
	margin: .45rem 0 0;
	font-size: .78rem;
	color: var(--sa-text-dim);
}
.sa-w-win__votes b {
	font-family: var(--sa-font-display);
	font-size: .9rem;
	font-weight: 700;
	color: var(--sa-text);
}
.sa-w-win__runner {
	margin: .3rem 0 0;
	font-size: .74rem;
	color: var(--sa-text-dim);
}

/* Avatar-thumb pager: the recent champions as round photo buttons. */
.sa-w-win__pager {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
	margin-top: .9rem;
}
.sa-w-win__thumb {
	flex: none;
	width: 40px;
	height: 40px;
	padding: 2px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	opacity: .55;
	transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.sa-w-win__thumb .sa-w-av {
	width: 100%;
	height: 100%;
	font-size: .68rem;
}
.sa-w-win__thumb:hover {
	opacity: .85;
	transform: translateY(-1px);
}
.sa-w-win__thumb.is-on {
	opacity: 1;
	background: var(--sa-gradient);
}
.sa-w-win__thumb:focus-visible {
	opacity: 1;
	outline: 2px solid var(--sa-violet-light);
	outline-offset: 2px;
}
.sa-w-win__count {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ══════════════════════════════════════════════════════════════════════════
   1g. Ongoing Votes cards in a sidebar — compact single column.
   The grid cards are sized for main-content width; a 30% rail needs a
   tighter rhythm, smaller type and no multi-column squeeze.
   ══════════════════════════════════════════════════════════════════════════ */
.sidebar .widget .sa-votes--grid {
	grid-template-columns: minmax(0, 1fr);
	gap: .9rem;
}
.sidebar .widget .sa-votes-section {
	margin: 0;
}
.sidebar .widget .sa-votecard__title {
	font-size: .92rem;
	line-height: 1.35;
}

/* ══════════════════════════════════════════════════════════════════════════
   2. Generic widget-area restyle (Jannah editorial widgets).
   ══════════════════════════════════════════════════════════════════════════ */

/* Posts-list widget: rounded thumbs, gentle slide + tint on hover. */
.sidebar .widget.posts-list-big-first .post,
.sidebar .widget.posts-list li {
	transition: transform .18s ease;
}
.sidebar .widget.posts-list li:hover {
	transform: translateX(2px);
}
.sidebar .widget .post-thumbnail,
.sidebar .widget .post-thumbnail img {
	border-radius: var(--sa-radius-sm);
	overflow: hidden;
}
.sidebar .widget .post-title a {
	transition: color .18s ease;
}
.sidebar .widget .post-title a:hover {
	color: var(--sa-violet-light);
}
.sidebar .widget .post-meta {
	color: var(--sa-text-dim);
}

/* Tabs widget: pill tabs on a flat rail. */
.sidebar .widget-tabs .tabs-wrapper .tabs li {
	border-radius: var(--sa-radius-pill);
	overflow: hidden;
}
.sidebar .widget-tabs .tabs-wrapper .tabs li a {
	border-radius: var(--sa-radius-pill);
	font-family: var(--sa-font-display);
	font-size: .78rem;
	font-weight: 700;
}
.sidebar .widget-tabs .tabs-wrapper .tabs li.active a {
	background: var(--sa-gradient);
	color: var(--sa-on-accent, #fff);
}

/* Categories / archive-style link lists: count as a soft pill on the right. */
.sidebar .widget_categories li,
.sidebar .widget.categories-widget li {
	border-color: var(--sa-border);
}
.sidebar .widget_categories li a:hover,
.sidebar .widget.categories-widget li a:hover {
	color: var(--sa-violet-light);
}

/* Tag cloud → brand pills. */
.sidebar .widget .tagcloud a {
	display: inline-block;
	background: var(--sa-surface-1);
	border: 1px solid var(--sa-border);
	border-radius: var(--sa-radius-pill);
	padding: .28rem .7rem;
	margin: 0 .3rem .45rem 0;
	font-size: .74rem !important;
	color: var(--sa-text-muted);
	transition: color .18s ease, border-color .18s ease, transform .18s ease;
}
.sidebar .widget .tagcloud a:hover {
	color: var(--sa-pink);
	border-color: var(--sa-border-strong);
	transform: translateY(-1px);
}

/* Newsletter + login inputs: flat fields with a brand focus ring. */
.sidebar .widget input[type="text"],
.sidebar .widget input[type="email"],
.sidebar .widget input[type="password"],
.sidebar .widget input[type="url"] {
	background: var(--sa-surface-1);
	border: 1px solid var(--sa-border);
	border-radius: var(--sa-radius-sm);
	color: var(--sa-text);
	transition: border-color .18s ease;
}
.sidebar .widget input[type="text"]:focus,
.sidebar .widget input[type="email"]:focus,
.sidebar .widget input[type="password"]:focus,
.sidebar .widget input[type="url"]:focus {
	border-color: var(--sa-border-strong);
}

/* Comments-avatar widget: round faces, hover tint. */
.sidebar .widget.comments-avatar li .comment-avatar img {
	border-radius: 50%;
	border: 1px solid var(--sa-border);
}

/* Social icons widget: round chips with a gradient hover. */
.sidebar .widget .social-icons a {
	border-radius: 50%;
	transition: transform .18s ease, box-shadow .18s ease;
}
.sidebar .widget .social-icons a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

/* ══════════════════════════════════════════════════════════════════════════
   1g. Latest News — a lead featured card + compact photo rows.
   Accent tint rides on --vc-acc (set by shining_vertical_style_attr() per card);
   it falls back to the palette pink when a post has no featured category.
   ══════════════════════════════════════════════════════════════════════════ */
.sa-w-news__lead {
	display: block;
	margin-bottom: 1.1rem;
	color: var(--sa-text);
}
.sa-w-news__lwrap {
	position: relative;
	display: block;
	border-radius: var(--sa-radius);
	overflow: hidden;
}
.sa-w-news__lfig {
	position: relative;
	display: block;
	margin: 0;
	aspect-ratio: 16 / 9;
	background: var(--sa-surface-2);
}
.sa-w-news__lfig .sa-w-news__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.sa-w-news__lead:hover .sa-w-news__lfig .sa-w-news__img {
	transform: scale(1.05);
}
/* A bottom gradient scrim so the overlay chip stays legible over any photo. */
.sa-w-news__lwrap::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 55%;
	background: linear-gradient(to top, rgba(10, 7, 16, .82), rgba(10, 7, 16, 0));
	pointer-events: none;
}
.sa-w-news__lbody {
	display: block;
	padding-top: .7rem;
}
.sa-w-news__ltitle {
	display: block;
	font-family: var(--sa-font-display);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
	color: var(--sa-text);
	transition: color .18s ease;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.sa-w-news__lead:hover .sa-w-news__ltitle {
	color: var(--vc-acc, var(--sa-pink));
}

/* The category chip — frosted overlay on the lead image, inline pill on rows. */
.sa-w-news__cat {
	font-family: var(--sa-font-display);
	font-size: .64rem;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--vc-acc-2, var(--sa-pink));
}
.sa-w-news__cat--over {
	position: absolute;
	left: .6rem;
	bottom: .6rem;
	z-index: 1;
	padding: .28rem .55rem;
	border-radius: var(--sa-radius-pill);
	color: #fff;
	background: color-mix(in srgb, var(--vc-acc, var(--sa-pink)) 78%, transparent);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

/* Compact rows. */
.sa-w-news__item + .sa-w-news__item {
	margin-top: .3rem;
	padding-top: .75rem;
	border-top: 1px solid var(--sa-border);
}
.sa-w-news__row {
	display: flex;
	align-items: flex-start;
	gap: .7rem;
	padding: .35rem .3rem;
	margin: 0 -.3rem;
	border-radius: var(--sa-radius-sm);
	color: var(--sa-text);
	transition: background .18s ease;
}
.sa-w-news__row:hover {
	background: var(--sa-surface-1);
}
.sa-w-news__thumb {
	position: relative;
	flex: none;
	width: 64px;
	height: 64px;
	margin: 0;
	border-radius: var(--sa-radius-sm);
	overflow: hidden;
	background: var(--sa-surface-2);
	border: 1px solid var(--sa-border);
}
.sa-w-news__thumb .sa-w-news__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s cubic-bezier(.2, .7, .2, 1);
}
.sa-w-news__row:hover .sa-w-news__thumb .sa-w-news__img {
	transform: scale(1.07);
}
/* No-image fallback tile. */
.sa-w-news__ph {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 1.2rem;
	background: var(--sa-gradient);
	color: var(--sa-on-accent);
}
.sa-w-news__lfig .sa-w-news__ph {
	font-size: 2rem;
}
.sa-w-news__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: .18rem;
}
.sa-w-news__title {
	font-size: .84rem;
	font-weight: 600;
	line-height: 1.32;
	color: var(--sa-text);
	transition: color .18s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.sa-w-news__row:hover .sa-w-news__title {
	color: var(--vc-acc, var(--sa-pink));
}

/* Meta row — date · reading time. */
.sa-w-news__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .3rem;
	margin-top: .1rem;
	font-size: .72rem;
	color: var(--sa-text-dim);
}
.sa-w-news__lbody .sa-w-news__meta {
	margin-top: .45rem;
}
.sa-w-news__sep {
	font-style: normal;
	opacity: .5;
}
.sa-w-news__rt {
	color: var(--sa-text-muted);
}

/* Reduced motion: keep every hover/count transition instant, never shine. */
@media (prefers-reduced-motion: reduce) {
	.sa-w-win__ring.is-lit::after {
		animation: none;
	}
	.sa-w-stand__bar i,
	.sa-w-stand__row,
	.sa-w-trend__row,
	.sa-w-close__row,
	.sa-w-win__bar i,
	.sa-w-win__thumb,
	.sa-w-win__for a,
	.sa-w-more,
	.sa-w-news__row,
	.sa-w-news__title,
	.sa-w-news__ltitle,
	.sa-w-news__img,
	.sidebar .widget.posts-list li,
	.sidebar .widget .tagcloud a,
	.sidebar .widget .social-icons a {
		transition: none;
	}
}
