.rags-masthead {
	position: relative;
	overflow: hidden;
	padding: 36px 0 28px;
	border-bottom: 6px solid var(--yellow);
	background: #100d14;
	isolation: isolate;
}

.rags-masthead::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.22;
	mix-blend-mode: screen;
	background-image: image-set(
		url("../layers/hero-lights-sm.webp") type("image/webp"),
		url("../layers/hero-lights-sm.jpg") type("image/jpeg")
	);
	background-position: center top;
	background-size: cover;
}

.rags-masthead .wrap {
	position: relative;
	z-index: 1;
	text-align: center;
}

.rags-masthead__issue,
.rags-masthead__tag {
	margin: 0;
	color: var(--yellow);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.rags-masthead__title {
	margin: 8px 0 10px;
	font-family: var(--font-metal);
	font-size: clamp(3.2rem, 10vw, 7rem);
	line-height: 0.86;
	text-transform: uppercase;
	color: var(--chrome);
	text-shadow: 0 0 24px rgba(255, 43, 214, 0.35);
}

.rags-masthead__tag {
	color: var(--muted);
	letter-spacing: 0.14em;
}

.rags-cover {
	display: grid;
	gap: 0;
	margin: 28px 0 36px;
	background: var(--panel);
	border: 1px solid var(--line);
	box-shadow: 10px 10px 0 rgba(255, 43, 214, 0.18);
}

.rags-cover__link {
	display: grid;
	grid-template-columns: 1fr;
	color: inherit;
	text-decoration: none;
	min-height: 100%;
}

.rags-cover__art {
	position: relative;
	min-height: 240px;
	background: #0b0a10 center / cover no-repeat;
	border-bottom: 1px solid var(--line);
}

.rags-cover__art--empty {
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 43, 214, 0.28), transparent 46%),
		linear-gradient(135deg, #1a1520, #0b0a10);
}

.rags-cover__body {
	padding: 22px 22px 26px;
}

.rags-cover time {
	color: var(--magenta);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.rags-cover h2 {
	margin: 10px 0 12px;
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 5vw, 3rem);
	line-height: 1.05;
	text-transform: uppercase;
}

.rags-cover p {
	max-width: 62ch;
	color: var(--muted);
}

.rags-cover .btn {
	margin-top: 8px;
}

.rags-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.rags-card {
	background: var(--panel);
	border: 1px solid var(--line);
}

.rags-card__link {
	display: grid;
	grid-template-columns: 1fr;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.rags-card__art {
	position: relative;
	min-height: 160px;
	background: #0b0a10 center / cover no-repeat;
	border-bottom: 1px solid var(--line);
}

.rags-card__art--empty {
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 43, 214, 0.22), transparent 46%),
		linear-gradient(135deg, #1a1520, #0b0a10);
}

.rags-card__body {
	padding: 16px 18px 18px;
}

.rags-card time {
	color: var(--muted);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rags-card h2 {
	margin: 8px 0;
	font-size: 1.25rem;
	text-transform: uppercase;
}

.rags-story {
	background: rgba(18, 16, 24, 0.92);
	border: 1px solid var(--line);
	padding: 28px 22px 32px;
}

.rags-story .story__head {
	margin-bottom: 22px;
	padding-bottom: 16px;
	border-bottom: 4px solid var(--yellow);
}

.rags-story .story__head h1 {
	margin: 0 0 12px;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 6vw, 4.2rem);
	line-height: 1.02;
	text-transform: uppercase;
}

.rags-story .story__deck,
.rags-story .meta {
	max-width: 68ch;
	color: var(--muted);
}

.rags-story .story__deck {
	margin: 0 0 10px;
	font-size: 1.15rem;
}

.rags-story .entry {
	max-width: 68ch;
}

.rags-story .entry > p:first-of-type::first-letter {
	float: left;
	margin: 0.08em 0.12em 0 0;
	color: var(--magenta);
	font-family: var(--font-metal);
	font-size: 4.4em;
	line-height: 0.72;
}

.rags-story .entry img,
.rags-story .entry .wp-caption,
.rags-story .entry .alignleft,
.rags-story .entry .alignright,
.rags-story .entry .aligncenter,
.rags-story .entry .alignnone {
	float: none;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 1.35rem 0;
}

.rags-story .entry blockquote {
	margin: 1.8rem 0;
	padding: 0.4rem 0 0.4rem 1.1rem;
	border-left: 6px solid var(--magenta);
	color: var(--yellow);
	font-family: var(--font-display);
	font-size: 1.35rem;
	line-height: 1.35;
	text-transform: none;
}

.rags-story .entry blockquote p {
	color: inherit;
	margin-bottom: 0.4rem;
}

@media (min-width: 720px) {
	.rags-cover__link {
		grid-template-columns: 1.1fr 1fr;
	}

	.rags-cover__art {
		min-height: 360px;
		border-bottom: 0;
		border-right: 1px solid var(--line);
	}

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

	.rags-story {
		padding: 36px 40px 42px;
	}
}

@media (min-width: 700px) {
	.rags-masthead::before {
		background-image: image-set(
			url("../layers/hero-lights.webp") type("image/webp"),
			url("../layers/hero-lights.jpg") type("image/jpeg")
		);
	}
}

@media (min-width: 1100px) {
	.rags-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
