/*
Theme Name: Reisezoom 2026
Theme URI: https://reisezoom.com
Author: Marc Arzt
Description: Cream-Editorial-Theme für reisezoom.com. Mobile-first, Magazin-Optik, Video-Hero, dezente Affiliate-Integration. Version 1.0 — Mai 2026.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reisezoom-2026
*/

/* ======================================================================
   Design Tokens
   ====================================================================== */
:root {
	/* Basis */
	--color-bg:        #f4ede0;
	--color-paper:     #fbf6ec;
	--color-paper-2:   #efe7d6;
	--color-ink:       #1c1814;
	--color-muted:     #7a6f60;
	--color-rule:      #e3d9c5;
	--color-rule-soft: rgba(28,24,20,.08);

	/* Akzente */
	--color-green:      #2f8a3e;
	--color-green-soft: rgba(47,138,62,.12);
	--color-terra:      #c46a3a;
	--color-terra-soft: rgba(196,106,58,.12);
	--color-indigo:     #3a456b;

	/* Schriften */
	--font-serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
	--font-sans:  Manrope, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--font-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

	/* Spacing — 4pt-Raster */
	--s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
	--s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

	/* Radien */
	--r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 18px; --r-pill: 999px;

	/* Schatten */
	--shadow-card: 0 1px 0 rgba(0,0,0,.02);
	--shadow-hover: 0 8px 24px rgba(28,24,20,.06);
	--shadow-overlay: 0 24px 60px rgba(28,24,20,.18);

	/* Container */
	--container-max: 1180px;
	--reading-max: 680px;
}

/* ======================================================================
   Reset & Basis
   ====================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-ink);
	font: 400 17px/1.6 var(--font-sans);
	font-feature-settings: "ss01", "cv11";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-green); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--color-ink); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--color-green); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
	html { scroll-behavior: auto; }
}

/* Typografie */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; margin: 0 0 .35em; }
h1 { font-size: clamp(32px, 5vw, 64px); line-height: .98; letter-spacing: -.015em; }
h2 { font-size: clamp(26px, 3.5vw, 42px); line-height: 1; letter-spacing: -.01em; }
h3 { font-size: clamp(22px, 2.6vw, 26px); line-height: 1.1; }
h4, h5, h6 { font-family: var(--font-sans); font-weight: 600; line-height: 1.25; margin: 0 0 .35em; }
h4 { font-size: 18px; }
p { margin: 0 0 1em; }
strong { font-weight: 700; }
em, i { font-style: italic; }
blockquote {
	margin: var(--s-6) 0; padding: 0 0 0 var(--s-5);
	border-left: 3px solid var(--color-green);
	font: italic 400 21px/1.45 var(--font-serif);
	color: var(--color-ink);
}
blockquote p:last-child { margin-bottom: 0; }
hr { border: 0; height: 1px; background: var(--color-rule); margin: var(--s-7) 0; }
code { font-family: var(--font-mono); font-size: .92em; background: var(--color-rule-soft); padding: 2px 6px; border-radius: 4px; }
pre code { display: block; padding: var(--s-4); overflow-x: auto; }

/* ======================================================================
   Container & Grid
   ====================================================================== */
.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 1024px) { .container { padding-inline: 36px; } }
.reading-col { max-width: var(--reading-max); margin-inline: auto; }
.section { padding: var(--s-7) 0; }
@media (min-width: 1024px) { .section { padding: var(--s-8) 0; } }
.eyebrow { font: 700 11px/1.2 var(--font-mono); letter-spacing: 1.2px; text-transform: uppercase; color: var(--color-muted); margin: 0 0 var(--s-3); }

/* ======================================================================
   Komponenten
   ====================================================================== */

/* Button */
.btn {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 10px 16px; border-radius: var(--r-pill);
	font: 700 13px/1 var(--font-sans);
	border: none; cursor: pointer; text-decoration: none !important;
	transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--color-ink); color: var(--color-paper); }
.btn--primary:hover { color: var(--color-paper); opacity: .9; }
.btn--accent  { background: var(--color-green); color: #fff; }
.btn--accent:hover { color: #fff; opacity: .9; }
.btn--terra   { background: var(--color-terra); color: #fff; }
.btn--terra:hover { color: #fff; opacity: .9; }
.btn--ghost   { background: transparent; color: var(--color-ink); border: 1px solid var(--color-rule); }
.btn--ghost:hover { color: var(--color-ink); border-color: var(--color-ink); }
.btn--lg { padding: 14px 22px; font-size: 14px; }
.btn--sm { padding: 8px 12px; font-size: 12px; }

/* Pill / Tag */
.pill {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 4px 10px; border-radius: var(--r-pill);
	font: 600 11px/1 var(--font-mono);
	letter-spacing: 0.6px; text-transform: uppercase;
}
.pill--green { background: var(--color-green-soft); color: var(--color-green); }
.pill--terra { background: var(--color-terra-soft); color: var(--color-terra); }
.pill--ink   { background: var(--color-ink); color: var(--color-paper); }
.pill--ghost { background: transparent; color: var(--color-muted); border: 1px solid var(--color-rule); }
.pill--white { background: #fff; color: var(--color-ink); }

/* Top-Nav */
.top-nav {
	position: sticky; top: 0; z-index: 50;
	background: color-mix(in srgb, var(--color-bg) 88%, transparent);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-rule);
}
.top-nav__inner {
	display: flex; align-items: center; gap: var(--s-5);
	padding: var(--s-4) 0;
}
.top-nav__logo {
	display: inline-flex; align-items: center; gap: 10px;
	color: var(--color-ink); text-decoration: none !important;
	flex-shrink: 0; line-height: 1;
}
.top-nav__logo-mark {
	display: block; width: 42px; height: 42px;
	object-fit: contain; flex-shrink: 0;
}
.top-nav__logo-words {
	display: flex; flex-direction: column; gap: 2px;
	min-width: 0;
}
.top-nav__logo-name {
	font: 400 22px/1 var(--font-serif);
	letter-spacing: -.015em;
	color: var(--color-ink);
}
.top-nav__logo-tag {
	font: 500 10px/1 var(--font-mono);
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--color-muted);
}
@media (min-width: 768px) {
	.top-nav__logo { gap: 12px; }
	.top-nav__logo-mark { width: 48px; height: 48px; }
	.top-nav__logo-name { font-size: 26px; }
	.top-nav__logo-tag { font-size: 11px; }
}
/* Auf sehr kleinen Screens nur Logo + Name, Tagline weg */
@media (max-width: 380px) {
	.top-nav__logo-tag { display: none; }
}
.top-nav__menu { display: none; gap: var(--s-5); margin-left: auto; }
.top-nav__menu a { font: 500 14px/1 var(--font-sans); color: var(--color-ink); }
.top-nav__menu a:hover { color: var(--color-green); }
.top-nav__cta { margin-left: auto; }
.top-nav__search { display: none; }
@media (min-width: 768px) {
	.top-nav__menu { display: flex; }
	.top-nav__cta { margin-left: 0; }
}

/* Hero — minimal (Featured YouTube-Video als Zentrum) */
.hero-minimal {
	padding: var(--s-6) 0 var(--s-7);
	border-bottom: 1px solid var(--color-rule);
	text-align: center;
}
.hero-minimal__eyebrow {
	margin: 0 0 var(--s-3);
	color: var(--color-terra);
}
.hero-minimal__title {
	font-size: clamp(28px, 4.5vw, 48px);
	line-height: 1.05;
	letter-spacing: -.015em;
	max-width: 22ch;
	margin: 0 auto var(--s-5);
}
.hero-minimal__video {
	max-width: 920px;
	margin: 0 auto;
}

/* Two-Click-Video (DSGVO-konform — Thumbnail lokal, Klick lädt YouTube) */
.rz-hero-video {
	position: relative; display: block;
	aspect-ratio: 16/9;
	background: var(--color-ink);
	border-radius: var(--r-xl);
	overflow: hidden;
	cursor: pointer;
	box-shadow: var(--shadow-card);
	transition: box-shadow .2s ease, transform .2s ease;
}
.rz-hero-video:hover { box-shadow: var(--shadow-hover); transform: translateY(-1px); }
.rz-hero-video__thumb {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	margin: 0 !important;
	transition: transform .3s ease;
}
.rz-hero-video:hover .rz-hero-video__thumb { transform: scale(1.02); }
.rz-hero-video__play {
	position: absolute; left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	border: 0; background: transparent;
	padding: 0; cursor: pointer;
	transition: transform .2s ease;
}
.rz-hero-video__play svg { display: block; }
.rz-hero-video:hover .rz-hero-video__play { transform: translate(-50%, -50%) scale(1.08); }
.rz-hero-video.is-loaded { cursor: default; }
.rz-hero-video.is-loaded .rz-hero-video__thumb,
.rz-hero-video.is-loaded .rz-hero-video__play { display: none; }
.rz-hero-video.is-loaded iframe {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	border: 0; display: block;
}
.rz-hero-video__hint {
	font: 400 11px/1.4 var(--font-mono);
	color: var(--color-muted);
	text-align: center;
	margin: var(--s-3) 0 0;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.hero-minimal__cta {
	margin-top: var(--s-5);
	display: flex; justify-content: center;
}
@media (min-width: 900px) {
	.hero-minimal { padding: var(--s-7) 0 var(--s-8); }
}

/* Video-Hero (Featured-Video, 4:5 oder 16:9) */
.video-hero {
	position: relative; display: block;
	border-radius: var(--r-xl); overflow: hidden;
	background: var(--color-ink);
	box-shadow: var(--shadow-card);
	transition: box-shadow .2s ease, transform .2s ease;
}
.video-hero:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.video-hero__cover { position: relative; width: 100%; aspect-ratio: 16/9; }
.video-hero__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(20,15,10,.7) 100%);
	display: flex; flex-direction: column; justify-content: space-between;
	padding: var(--s-5); color: #fff;
}
.video-hero__overlay-top { display: flex; gap: var(--s-3); align-items: center; }
.video-hero__overlay-bottom { display: flex; flex-direction: column; gap: var(--s-2); }
.video-hero__title {
	font: 400 clamp(22px, 3.5vw, 36px)/1.05 var(--font-serif);
	margin: 0; color: #fff;
}
.video-hero__meta { font: 500 12px/1 var(--font-sans); opacity: .85; }
.video-hero__play {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
	width: 72px; height: 72px; border-radius: 50%;
	background: rgba(255,255,255,.92); color: var(--color-terra);
	display: flex; align-items: center; justify-content: center;
	transition: transform .2s ease, background .2s ease;
}
.video-hero:hover .video-hero__play { transform: translate(-50%,-50%) scale(1.05); background: #fff; }

/* Story-Karten (Listenelement) */
.story-grid {
	display: grid; grid-template-columns: 1fr; gap: var(--s-5);
}
@media (min-width: 600px) {
	.story-grid--cards { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}
@media (min-width: 900px) {
	.story-grid--cards { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
}
.story {
	display: grid; grid-template-columns: 1fr;
	gap: var(--s-3); align-items: start;
	text-decoration: none !important;
	color: inherit;
	transition: transform .15s ease;
}
.story:hover { transform: translateY(-2px); }
.story:hover .story__title { color: var(--color-green); }
.story--horizontal { grid-template-columns: 140px 1fr; align-items: center; gap: var(--s-4); }
.story__media {
	overflow: hidden; border-radius: var(--r-md);
	background: var(--color-rule-soft);
}
.story__media img {
	width: 100%; height: auto; aspect-ratio: 3/2;
	object-fit: cover; display: block;
	transition: transform .3s ease;
}
.story:hover .story__media img { transform: scale(1.03); }
.story--horizontal .story__media { aspect-ratio: 4/3; }
.story--horizontal .story__media img { height: 110px; aspect-ratio: 4/3; }
.story--card .story__media img { aspect-ratio: 3/2; }
.story__body { display: flex; flex-direction: column; gap: var(--s-2); }
.story__tag { font: 600 10.5px/1 var(--font-mono); letter-spacing: 0.6px; color: var(--color-green); text-transform: uppercase; }
.story__title {
	font: 400 clamp(20px, 2.5vw, 26px)/1.1 var(--font-serif);
	margin: 0; color: var(--color-ink); transition: color .15s ease;
}
.story--horizontal .story__title { font-size: 21px; }
.story__meta { font: 400 11.5px/1.4 var(--font-sans); color: var(--color-muted); margin: 0; }
.story__lead { font: 400 14px/1.5 var(--font-sans); color: var(--color-muted); margin: 0; }

/* Featured Story (groß) */
.story-featured {
	display: grid; grid-template-columns: 1fr; gap: var(--s-5);
}
@media (min-width: 900px) {
	.story-featured { grid-template-columns: 1.4fr 1fr; gap: var(--s-7); align-items: center; }
}
.story-featured .story__media img { aspect-ratio: 4/3; }
.story-featured .story__title { font-size: clamp(28px, 3.5vw, 48px); }

/* Video-Strip (Watch-Sektion) */
.video-strip {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4);
}
@media (min-width: 600px) { .video-strip { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }
@media (min-width: 960px) { .video-strip { grid-template-columns: repeat(5, 1fr); } }
.video-card {
	display: block; text-decoration: none !important;
	color: var(--color-ink);
	transition: transform .15s ease;
}
.video-card:hover { transform: translateY(-2px); }
.video-card:hover .video-card__title { color: var(--color-green); }
.video-card__cover { position: relative; aspect-ratio: 9/16; border-radius: var(--r-md); overflow: hidden; background: var(--color-rule-soft); }
.video-card__cover--16x9 { aspect-ratio: 16/9; }
.video-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.video-card__cover::after {
	content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
	background: linear-gradient(180deg, transparent, rgba(0,0,0,.5));
}
.video-card__duration {
	position: absolute; right: 8px; bottom: 8px;
	font: 700 10.5px/1 var(--font-mono); color: #fff;
	background: rgba(0,0,0,.6); padding: 4px 8px; border-radius: var(--r-pill);
	z-index: 1;
}
.video-card__title { font: 400 16px/1.2 var(--font-serif); margin: 10px 0 4px; transition: color .15s ease; }
.video-card__meta { font: 400 11.5px/1.4 var(--font-sans); color: var(--color-muted); }

/* Affiliate-Karte (im Artikel) */
.rz-affiliate {
	background: var(--color-paper);
	border: 1px solid var(--color-rule);
	border-radius: var(--r-xl);
	padding: var(--s-5);
	margin: var(--s-6) 0;
}
.rz-affiliate__label {
	font: 700 10px/1 var(--font-mono);
	letter-spacing: .6px; color: var(--color-muted);
	text-transform: uppercase;
}
.rz-affiliate__row {
	display: grid; grid-template-columns: 80px 1fr;
	gap: var(--s-4); align-items: center;
	margin-top: var(--s-3);
}
.rz-affiliate__thumb {
	width: 80px; height: 80px; object-fit: cover;
	border-radius: var(--r-md);
	background: var(--color-rule-soft);
}
.rz-affiliate__title { font: 400 22px/1.05 var(--font-serif); margin: 0 0 var(--s-1); }
.rz-affiliate__rating { font: 400 12px/1 var(--font-sans); color: var(--color-muted); margin: 0; }
.rz-affiliate__cta { grid-column: 1 / -1; margin-top: var(--s-3); display: flex; justify-content: center; }
@media (min-width: 640px) {
	.rz-affiliate__row { grid-template-columns: 90px 1fr auto; }
	.rz-affiliate__cta { grid-column: auto; margin-top: 0; justify-content: flex-end; }
}

/* Newsletter-Block */
.newsletter {
	background: var(--color-paper);
	border-top: 1px solid var(--color-rule);
	border-bottom: 1px solid var(--color-rule);
	padding: var(--s-7) 0;
}
.newsletter__inner { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
@media (min-width: 768px) { .newsletter__inner { grid-template-columns: 1.2fr 1fr; gap: var(--s-7); align-items: center; } }
.newsletter h2 { font-size: clamp(24px, 3vw, 36px); margin: var(--s-3) 0 var(--s-2); }
.newsletter p { color: var(--color-muted); margin: 0; }
.newsletter form { display: flex; gap: var(--s-2); flex-direction: column; }
@media (min-width: 480px) { .newsletter form { flex-direction: row; } }
.newsletter input[type="email"] {
	flex: 1; padding: 12px 16px;
	font: 400 16px/1 var(--font-sans);
	background: #fff; color: var(--color-ink);
	border: 1px solid var(--color-rule);
	border-radius: var(--r-pill);
}
.newsletter input[type="email"]:focus { outline: 2px solid var(--color-green); outline-offset: 1px; }

/* Footer */
.site-footer {
	background: var(--color-paper);
	padding: var(--s-7) 0 var(--s-5);
	font-size: 14px;
	color: var(--color-muted);
	border-top: 1px solid var(--color-rule);
}
.site-footer h4 { color: var(--color-ink); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 var(--s-3); font-weight: 700; }
.site-footer__cols { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
@media (min-width: 700px) { .site-footer__cols { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-7); } }
.site-footer a { color: var(--color-ink); }
.site-footer a:hover { color: var(--color-green); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 4px 0; }
.site-footer__bottom {
	margin-top: var(--s-6); padding-top: var(--s-4);
	border-top: 1px solid var(--color-rule);
	display: flex; flex-direction: column; gap: var(--s-2);
	align-items: center; text-align: center;
	font-size: 12px;
}
.site-footer__bottom-legal a { margin: 0 var(--s-3); }
@media (min-width: 700px) {
	.site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
	.site-footer__bottom-legal a { margin-left: 0; margin-right: var(--s-4); }
}

/* Mobile Tab-Bar */
.tab-bar {
	display: flex; justify-content: space-around;
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
	background: color-mix(in srgb, var(--color-paper) 95%, transparent);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--color-rule);
	padding: 12px 12px calc(20px + env(safe-area-inset-bottom));
}
.tab-bar a {
	display: flex; flex-direction: column; gap: 4px; align-items: center;
	font: 600 10px/1.1 var(--font-sans); color: var(--color-muted);
	text-decoration: none !important;
	min-width: 56px; padding-top: 3px;
	border-top: 3px solid transparent;
	transition: color .15s ease, border-color .15s ease;
}
.tab-bar a:hover { color: var(--color-ink); }
.tab-bar a.is-active { color: var(--color-green); border-top-color: var(--color-green); }
.tab-bar svg { width: 22px; height: 22px; }
@media (min-width: 768px) {
	.tab-bar { display: none; }
}

/* Body braucht Padding-Bottom für Tab-Bar auf Mobile */
@media (max-width: 767px) {
	body { padding-bottom: 78px; }
}

/* Article (Single) */
.article-hero { max-width: 760px; margin: var(--s-7) auto var(--s-5); padding: 0 20px; }
.article-hero h1 { font-size: clamp(32px, 5vw, 64px); margin-bottom: var(--s-4); }
.article-hero__lead { font: 400 19px/1.55 var(--font-sans); color: var(--color-muted); margin: 0; }
.article-hero__meta { display: flex; gap: var(--s-3); align-items: center; margin-top: var(--s-5); font-size: 13px; color: var(--color-muted); flex-wrap: wrap; }
.article-cover { max-width: 1100px; margin: var(--s-5) auto var(--s-7); padding: 0 20px; }
.article-cover img { width: 100%; border-radius: var(--r-xl); aspect-ratio: 16/9; object-fit: cover; }
.article-body { max-width: var(--reading-max); margin: 0 auto; padding: 0 20px; }
.article-body > :first-child::first-letter {
	font-family: var(--font-serif); font-size: 4em; line-height: .9;
	float: left; padding: 4px 8px 0 0; color: var(--color-green); font-weight: 400;
}
.article-body p { font-size: 17px; line-height: 1.65; }
.article-body h2 { font-size: clamp(26px, 3vw, 36px); margin: var(--s-7) 0 var(--s-3); }
.article-body h3 { font-size: clamp(22px, 2.4vw, 26px); margin: var(--s-6) 0 var(--s-3); }
.article-body img { border-radius: var(--r-md); margin: var(--s-5) 0; }
.article-body ul, .article-body ol { padding-left: 1.4em; margin: 1em 0; }
.article-body li { margin-bottom: .35em; }
.article-body table { width: 100%; border-collapse: collapse; margin: var(--s-5) 0; font-size: 14px; }
.article-body th, .article-body td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--color-rule); }
.article-body th { font-weight: 700; background: var(--color-paper); }

/* Lite YouTube */
lite-youtube {
	display: block; position: relative; aspect-ratio: 16/9;
	background-color: #000; background-position: center;
	background-size: cover; cursor: pointer; max-width: 100%;
	border-radius: var(--r-md); overflow: hidden;
}
lite-youtube::before {
	content: ''; display: block; position: absolute; top: 0; left: 0;
	width: 100%; height: 60px; padding: 25px 0 0 18px; color: hsl(0,0%,93.9%);
	background-image: linear-gradient(180deg, hsla(0,0%,0%,.67) 0%, hsla(0,0%,0%,0) 100%);
	box-sizing: border-box;
}
lite-youtube::after { content: ''; display: block; padding-bottom: calc(100% / (16 / 9)); }
lite-youtube > iframe { width: 100%; height: 100%; position: absolute; inset: 0; border: 0; }
lite-youtube > .lty-playbtn { width: 70px; height: 46px; background-color: #212121; z-index: 1; opacity: .8; border-radius: 14%; transition: all .2s; border: 0; display: block; position: absolute; top: 50%; left: 50%; transform: translate3d(-50%, -50%, 0); cursor: pointer; }
lite-youtube:hover > .lty-playbtn { background-color: #f00; opacity: 1; }
lite-youtube > .lty-playbtn::before { content: ''; border-style: solid; border-width: 11px 0 11px 19px; border-color: transparent transparent transparent #fff; position: absolute; top: 50%; left: 50%; transform: translate3d(-50%, -50%, 0); }
lite-youtube.lyt-activated { cursor: unset; }
lite-youtube.lyt-activated::before, lite-youtube.lyt-activated > .lty-playbtn { opacity: 0; pointer-events: none; }

/* WP-Specific */
.alignleft, .alignright, .aligncenter { display: block; margin: 1em auto; }
@media (min-width: 640px) {
	.alignleft { float: left; margin: .5em var(--s-4) var(--s-3) 0; }
	.alignright { float: right; margin: .5em 0 var(--s-3) var(--s-4); }
}
.wp-caption { max-width: 100%; }
.wp-caption-text { font: 400 12px/1.4 var(--font-mono); color: var(--color-muted); margin-top: var(--s-2); text-align: center; }
