/* ============================================================
   Z916 – Watchdog územního plánování | Main Stylesheet v4
   ============================================================ */

   @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

   /* ── Scale entire page to 90% ── */
   html {
     font-size: 90%;
     scroll-behavior: smooth;
   }
   
   :root {
     --bg-dark:        #111111;
     --bg-darker:      #0a0a0a;
     --bg-card:        #ffffff;
     --bg-card-border: #e0dbd4;
     --bg-feed:        #f0ede8;
     --text-primary:   #111111;
     --text-muted:     #777777;
     --text-body:      #444444;
     --accent:         #f5a000;
     --accent-dark:    #c87d00;
     --danger:         #e03232;
     --font-display:   'Barlow Condensed', sans-serif;
     --font-body:      'Barlow', sans-serif;
     --max-width:      1100px;
     --radius:         2px;
   }
   
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   body {
     background: var(--bg-feed);
     color: var(--text-primary);
     font-family: var(--font-body);
     font-size: 1rem;
     line-height: 1.65;
     -webkit-font-smoothing: antialiased;
   }
   img { max-width: 100%; height: auto; display: block; }
   a { color: inherit; text-decoration: none; }
   
   .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
   
   /* ── Tags ── */
   .tag {
     display: inline-block;
     font-family: var(--font-display);
     font-weight: 700;
     font-size: 12px;
     letter-spacing: .12em;
     text-transform: uppercase;
     padding: 4px 10px;
     border-radius: var(--radius);
   }
   .tag--setreni { background: var(--accent); color: #000; }
   .tag--analyza { background: #444; color: #fff; }
   .tag--dukaz   { background: var(--danger); color: #fff; }
   .tag--zprava  { background: #2a5298; color: #fff; }
   .tag--default { background: #888; color: #fff; }
   
   /* ── Ticker ── */
   .ticker {
     background: var(--accent);
     color: #000;
     font-family: var(--font-display);
     font-weight: 700;
     font-size: 12px;
     letter-spacing: .18em;
     text-transform: uppercase;
     padding: 9px 0;
     overflow: hidden;
     white-space: nowrap;
   }
   .ticker__track {
     display: flex;
     gap: 64px;
     animation: tick 28s linear infinite;
     width: max-content;
   }
   .ticker__track span { flex-shrink: 0; }
   @keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
   
   /* ── Header (dark – stays dark always) ── */
   .site-header {
     background: var(--bg-darker);
     border-bottom: 1px solid #1e1e1e;
     position: sticky; top: 0; z-index: 200;
   }
   .site-header__inner {
     display: flex; align-items: center;
     justify-content: space-between; height: 64px;
   }
   .site-logo {
     font-family: var(--font-display);
     font-weight: 900; font-size: 32px;
     letter-spacing: -.01em; color: #fff;
   }
   .site-nav { display: flex; gap: 28px; align-items: center; }
   .site-nav a {
     font-family: var(--font-display);
     font-weight: 700; font-size: 13px;
     letter-spacing: .14em; text-transform: uppercase;
     color: #888; transition: color .2s;
   }
   .site-nav a:hover { color: #fff; }
   
   /* ══════════════════════════════════════════════════
      FRONT PAGE – HERO SECTION (dark, like original)
   ══════════════════════════════════════════════════ */
   .z916-hero {
     background: var(--bg-darker);
     padding: 64px 0 56px;
     border-bottom: 3px solid var(--accent);
   }
   .z916-hero__inner {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 24px;
     display: grid;
     grid-template-columns: 1fr 380px;
     gap: 48px;
     align-items: center;
   }
   .z916-hero__logo-big {
     font-family: var(--font-display);
     font-weight: 900;
     font-size: clamp(100px, 13vw, 156px);
     line-height: .85;
     letter-spacing: -.03em;
     color: #fff;
   }
   .z916-hero__subtitle {
     font-family: var(--font-display);
     font-weight: 700;
     font-size: 13px;
     letter-spacing: .22em;
     text-transform: uppercase;
     color: #555;
     margin-top: 14px;
     display: flex;
     align-items: center;
     gap: 14px;
   }
   .z916-hero__subtitle::before {
     content: '';
     display: block;
     width: 36px; height: 3px;
     background: var(--accent);
     flex-shrink: 0;
   }
   .z916-hero__tagbox {
     border: 1px solid #2a2a2a;
     padding: 28px 30px;
     color: #999;
     font-size: 15px;
     line-height: 1.7;
     background: rgba(255,255,255,.03);
   }
   
   /* ══════════════════════════════════════════════════
      FRONT PAGE – STATS SECTION (dark)
   ══════════════════════════════════════════════════ */
   .z916-stats {
     background: var(--bg-dark);
     border-bottom: 1px solid #1e1e1e;
   }
   .z916-stats__inner {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 24px;
     display: grid;
     grid-template-columns: 1fr auto 340px;
     align-items: stretch;
     min-height: 280px;
   }
   .z916-stats__label-block {
     padding: 52px 48px 52px 0;
     border-right: 1px solid #1e1e1e;
   }
   .kicker {
     font-family: var(--font-display);
     font-weight: 700;
     font-size: 11px;
     letter-spacing: .22em;
     text-transform: uppercase;
     color: var(--accent);
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 8px;
   }
   .kicker::before {
     content: '';
     display: inline-block;
     width: 15px; height: 15px;
     background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0z' fill='none' stroke='%23f5a000' stroke-width='2' stroke-linejoin='round'/%3E%3Cline x1='12' y1='9' x2='12' y2='13' stroke='%23f5a000' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='17' r='0.5' fill='%23f5a000' stroke='%23f5a000' stroke-width='1.5'/%3E%3C/svg%3E") center/contain no-repeat;
     flex-shrink: 0;
   }
   .z916-stats__headline {
     font-family: var(--font-display);
     font-weight: 900;
     font-size: clamp(38px, 5vw, 56px);
     line-height: .93;
     text-transform: uppercase;
     letter-spacing: -.02em;
     color: #fff;
     margin-bottom: 18px;
   }
   .z916-stats__headline em { color: var(--accent); font-style: normal; }
   .z916-stats__desc {
     font-size: 15px;
     color: #888;
     line-height: 1.7;
     max-width: 440px;
   }
   .z916-stats__divider { width: 1px; background: #1e1e1e; }
   .z916-stats__numbers {
     padding: 40px 0 40px 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 28px;
   }
   .z916-stat-item__num {
     font-family: var(--font-display);
     font-weight: 900;
     font-size: 58px;
     color: var(--accent);
     line-height: 1;
     letter-spacing: -.02em;
   }
   .z916-stat-item__label {
     font-size: 13px;
     color: #555;
     margin-top: 3px;
   }
   
   /* ══════════════════════════════════════════════════
      FRONT PAGE – SECTION HEADER & ARTICLES (WHITE/LIGHT)
   ══════════════════════════════════════════════════ */
   .z916-section-head {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 52px 24px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     border-bottom: 1px solid var(--bg-card-border);
     margin-bottom: 0;
   }
   .z916-section-head__title,
   .z916-section-head__count {
     font-family: var(--font-display);
     font-weight: 700;
     font-size: 12px;
     letter-spacing: .22em;
     text-transform: uppercase;
     color: #999;
   }
   
   .z916-articles {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 24px 64px;
     background: transparent;
   }
   
   /* ── Article Card (WHITE bg) ── */
   .z916-article-card {
     display: grid;
     grid-template-columns: 320px 1fr;
     background: #fff;
     margin-top: 3px;
     overflow: hidden;
     border: 1px solid var(--bg-card-border);
     border-left: 3px solid transparent;
     transition: border-left-color .2s, box-shadow .2s;
   }
   .z916-article-card:hover {
     border-left-color: var(--accent);
     box-shadow: 0 2px 20px rgba(0,0,0,.08);
   }
   .z916-card__image { overflow: hidden; background: #e8e4df; }
   .z916-card__image img {
     width: 100%; height: 100%; object-fit: cover;
     transition: transform .45s;
     display: block;
   }
   .z916-article-card:hover .z916-card__image img { transform: scale(1.04); }
   
   .z916-card__body {
     padding: 32px 36px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
   }
   .z916-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
   .z916-card__date { font-size: 13px; color: #999; }
   .z916-card__title {
     font-family: var(--font-display);
     font-weight: 900;
     font-size: clamp(22px, 2.5vw, 30px);
     line-height: 1.02;
     text-transform: uppercase;
     letter-spacing: -.01em;
     margin-bottom: 12px;
     color: #111;
   }
   .z916-card__excerpt {
     font-size: 15px;
     color: #555;
     line-height: 1.62;
     flex: 1;
     margin-bottom: 20px;
   }
   .z916-card__link {
     font-family: var(--font-display);
     font-weight: 700;
     font-size: 12px;
     letter-spacing: .18em;
     text-transform: uppercase;
     color: var(--accent);
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: gap .2s;
   }
   .z916-card__link:hover { gap: 14px; }
   
   /* ══════════════════════════════════════════════════
      TIPS SECTION (dark)
   ══════════════════════════════════════════════════ */
   .tips-section {
     background: var(--bg-darker);
     border-top: 3px solid var(--accent);
     padding: 80px 0;
   }
   .tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
   .tips__eyebrow {
     font-family: var(--font-display); font-weight: 700; font-size: 12px;
     letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
     display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
   }
   .tips__title {
     font-family: var(--font-display); font-weight: 900;
     font-size: clamp(36px, 4vw, 52px); line-height: .95;
     text-transform: uppercase; margin-bottom: 20px; color: #fff;
   }
   .tips__title em { color: var(--accent); font-style: normal; }
   .tips__desc { font-size: 15px; color: #888; margin-bottom: 24px; line-height: 1.7; }
   .tips__bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
   .tips__bullets li { font-size: 14px; color: #666; display: flex; align-items: center; gap: 10px; }
   .tips__bullets li::before { content: ''; width: 8px; height: 8px; background: var(--accent); flex-shrink: 0; }
   .tips-form { display: flex; flex-direction: column; gap: 14px; }
   .tips-form input, .tips-form textarea {
     background: #1a1a1a; border: 1px solid #2e2e2e;
     color: #fff; font-family: var(--font-body);
     font-size: 15px; padding: 14px 18px; border-radius: var(--radius);
     width: 100%; transition: border-color .2s; resize: vertical;
   }
   .tips-form input:focus, .tips-form textarea:focus { outline: none; border-color: var(--accent); }
   .tips-form input::placeholder, .tips-form textarea::placeholder { color: #444; }
   .tips-form textarea { min-height: 140px; }
   .btn-submit {
     background: var(--accent); color: #000;
     font-family: var(--font-display); font-weight: 700; font-size: 14px;
     letter-spacing: .16em; text-transform: uppercase; border: none; cursor: pointer;
     padding: 16px 24px; border-radius: var(--radius);
     display: flex; align-items: center; justify-content: center; gap: 10px;
     transition: background .2s;
   }
   .btn-submit:hover { background: var(--accent-dark); }
   .btn-success { color: var(--accent); font-family: var(--font-display); font-weight: 700; padding: 16px 0; font-size: 16px; display: none; }
   
   /* ══════════════════════════════════════════════════
      FOOTER (dark)
   ══════════════════════════════════════════════════ */
   .site-footer {
     background: var(--bg-darker);
     border-top: 1px solid #1e1e1e;
     padding: 40px 0;
   }
   .site-footer__inner { display: flex; align-items: center; justify-content: space-between; }
   .footer-logo { font-family: var(--font-display); font-weight: 900; font-size: 28px; color: #fff; }
   .footer-tagline {
     font-family: var(--font-display); font-weight: 700; font-size: 11px;
     letter-spacing: .2em; text-transform: uppercase; color: #555; margin-top: 4px;
   }
   .footer-right { text-align: right; font-size: 13px; color: #555; }
   .footer-right a { color: #555; transition: color .2s; }
   .footer-right a:hover { color: var(--accent); }
   
   /* ══════════════════════════════════════════════════
      SINGLE ARTICLE – nav bar (dark)
   ══════════════════════════════════════════════════ */
   .article-nav {
     background: var(--bg-darker);
     border-bottom: 3px solid var(--accent);
   }
   .article-nav__inner { height: 50px; display: flex; align-items: center; }
   .article-nav__back {
     font-family: var(--font-display); font-weight: 700; font-size: 13px;
     letter-spacing: .12em; text-transform: uppercase; color: #fff;
     display: flex; align-items: center; gap: 10px; transition: color .2s;
   }
   .article-nav__back:hover { color: var(--accent); }
   
   /* ══════════════════════════════════════════════════
      SINGLE ARTICLE – content (WHITE background)
   ══════════════════════════════════════════════════ */
   .single-article {
     background: #fff;
     padding: 64px 0 80px;
   }
   .single-article__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
   .single-article__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
   .single-article__date { font-size: 14px; color: #999; }
   .single-article__title {
     font-family: var(--font-display); font-weight: 900;
     font-size: clamp(36px, 5vw, 60px); line-height: .95;
     text-transform: uppercase; letter-spacing: -.02em;
     margin-bottom: 28px; color: #111;
   }
   .single-article__lead {
     font-size: 18px; color: #444; line-height: 1.7;
     border-left: 3px solid var(--accent); padding-left: 20px; margin-bottom: 40px;
   }
   .single-article__featured-image { margin: 0 0 40px; overflow: hidden; border-radius: var(--radius); }
   .single-article__featured-image img { width: 100%; }
   .single-article__caption {
     font-size: 13px; color: #999; font-style: normal;
     margin-top: 8px; text-align: left;
   }
   
   /* Article body – white bg, dark text */
   .article-content { color: #333; }
   .article-content p { margin-bottom: 20px; }
   .article-content h2 {
     font-family: var(--font-display); font-weight: 900; font-size: 28px;
     text-transform: uppercase; letter-spacing: -.01em; color: #111;
     margin: 40px 0 16px; border-bottom: 1px solid #e0dbd4; padding-bottom: 10px;
   }
   .article-content h3 {
     font-family: var(--font-display); font-weight: 700; font-size: 22px;
     color: #111; margin: 28px 0 12px;
   }
   .article-content strong { color: #111; font-weight: 700; }
   .article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 20px; }
   .article-content li { margin-bottom: 6px; }
   .article-content blockquote {
     border-left: 3px solid var(--accent); padding: 16px 20px;
     margin: 28px 0; background: #f8f5f0; font-style: italic; color: #333;
   }
   .article-content figure { margin: 32px 0; }
   .article-content figcaption { font-size: 13px; color: #999; font-style: normal; margin-top: 8px; text-align: left; }
   .article-content img { border-radius: var(--radius); max-width: 100%; }
   .article-content a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(245,160,0,.3); }
   .article-content a:hover { text-decoration-color: var(--accent); }
   
   /* ══════════════════════════════════════════════════
      ARCHIVE (light bg)
   ══════════════════════════════════════════════════ */
   .archive-header { padding: 64px 0 40px; border-bottom: 1px solid var(--bg-card-border); margin-bottom: 48px; }
   .archive-header h1 {
     font-family: var(--font-display); font-weight: 900;
     font-size: clamp(40px, 5vw, 64px); text-transform: uppercase; letter-spacing: -.02em; color: #111;
   }
   .archive-header p { color: #777; margin-top: 8px; }
   
   /* Old feed classes (index.php fallback) */
   .feed { padding: 0; background: transparent; }
   .feed__header {
     display: flex; align-items: center; justify-content: space-between;
     margin-bottom: 0; border-bottom: 1px solid var(--bg-card-border); padding: 40px 0 16px;
   }
   .feed__title, .feed__count {
     font-family: var(--font-display); font-weight: 700;
     font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: #999;
   }
   .article-card {
     display: grid; grid-template-columns: 320px 1fr;
     border: 1px solid var(--bg-card-border);
     background: #fff;
     margin-bottom: 3px; overflow: hidden;
     border-left: 3px solid transparent;
     transition: border-left-color .2s, box-shadow .2s;
   }
   .article-card:hover { border-left-color: var(--accent); box-shadow: 0 2px 20px rgba(0,0,0,.08); }
   .article-card__image { overflow: hidden; background: #e8e4df; }
   .article-card__image img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; display:block; }
   .article-card:hover .article-card__image img { transform: scale(1.04); }
   .article-card__body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: space-between; }
   .article-card__meta { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
   .article-card__date { font-size:13px; color:#999; }
   .article-card__title {
     font-family: var(--font-display); font-weight: 900;
     font-size: clamp(22px,2.5vw,30px); line-height:1.02;
     text-transform: uppercase; letter-spacing: -.01em;
     margin-bottom:14px; color: #111;
   }
   .article-card__excerpt { font-size:15px; color:#555; line-height:1.6; flex:1; margin-bottom:20px; }
   .article-card__link {
     font-family: var(--font-display); font-weight:700; font-size:13px;
     letter-spacing:.15em; text-transform:uppercase; color:var(--accent);
     display:inline-flex; align-items:center; gap:8px; transition: gap .2s;
   }
   .article-card__link:hover { gap:14px; }
   
   /* ══════════════════════════════════════════════════
      RESPONSIVE
   ══════════════════════════════════════════════════ */
   @media (max-width: 900px) {
     .z916-hero__inner { grid-template-columns: 1fr; }
     .z916-stats__inner { grid-template-columns: 1fr; }
     .z916-stats__label-block { border-right: none; border-bottom: 1px solid #1e1e1e; padding: 40px 0 32px; }
     .z916-stats__divider { display: none; }
     .z916-stats__numbers { flex-direction: row; flex-wrap: wrap; gap: 20px; padding: 28px 0; }
     .z916-article-card { grid-template-columns: 1fr; }
     .z916-card__image { aspect-ratio: 16/7; max-height: 240px; }
     .article-card { grid-template-columns: 1fr; }
     .tips-grid { grid-template-columns: 1fr; gap: 40px; }
     .site-footer__inner { flex-direction: column; gap: 16px; text-align: center; }
     .footer-right { text-align: center; }
   }
   @media (max-width: 600px) {
     .site-nav { display: none; }
     .z916-hero { padding: 40px 0 32px; }
     .z916-hero__logo-big { font-size: 72px; }
     .z916-card__body { padding: 24px 20px; }
     .article-card__body { padding: 24px 20px; }
   }
   
/* ══════════════════════════════════════════════════
   LIGHTBOX (z916)
══════════════════════════════════════════════════ */
#z916-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
}
#z916-lightbox.active { display: flex; }
.z916-lb__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.92);
}
.z916-lb__box {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
}
.z916-lb__img-wrap {
  max-width: 90vw; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
}
.z916-lb__img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  cursor: default !important;
}
.z916-lb__caption {
  margin-top: 12px;
  font-size: 13px; color: #aaa;
  font-family: var(--font-body);
  text-align: left; align-self: flex-start;
}
.z916-lb__counter {
  margin-top: 6px;
  font-size: 12px; color: #555;
  font-family: var(--font-display);
  text-align: left; align-self: flex-start;
  letter-spacing: .1em;
}
.z916-lb__close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none; color: #fff;
  font-size: 28px; cursor: pointer; padding: 4px 10px;
  line-height: 1; opacity: .7; transition: opacity .2s;
}
.z916-lb__close:hover { opacity: 1; }
.z916-lb__prev, .z916-lb__next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); border: none; color: #fff;
  font-size: 48px; cursor: pointer; padding: 0 18px;
  line-height: 1; opacity: .6; transition: opacity .2s;
  border-radius: 2px;
}
.z916-lb__prev:hover, .z916-lb__next:hover { opacity: 1; }
.z916-lb__prev { left: 16px; }
.z916-lb__next { right: 16px; }

/* ══════════════════════════════════════════════════
   ARTICLE IMAGES & CAPTIONS – opravy
══════════════════════════════════════════════════ */

/* Mezery mezi obrázky v obsahu článku */
.article-content figure {
  margin: 28px 0;
}
.article-content figure + figure {
  margin-top: 20px;
}
.article-content .wp-block-image,
.article-content .wp-block-video {
  margin: 24px 0;
}

/* Titulek (figcaption) – pod médiem, vlevo, malý text */
.article-content figcaption,
.article-content .wp-block-image figcaption,
.article-content .wp-block-video figcaption,
.article-content .wp-caption-text,
.single-article__inner figcaption {
  font-size: 13px !important;
  color: #999 !important;
  font-style: normal !important;
  text-align: left !important;
  margin-top: 8px !important;
  padding: 0 !important;
  background: none !important;
  /* Reset any WP defaults that put it over the image */
  position: static !important;
  width: auto !important;
  max-width: 100% !important;
}

/* Fix wp-caption block – nechceme titulek přes obrázek */
.article-content .wp-caption {
  max-width: 100% !important;
  position: relative;
}
.article-content .wp-caption img {
  display: block;
  width: 100%;
}

/* Video titulek */
.article-content .wp-block-video figcaption {
  margin-top: 8px;
}

/* Mezery mezi obrázky v galerii (pokud používáš wp gallery) */
.article-content .wp-block-gallery {
  gap: 12px;
  margin: 28px 0;
}
.article-content .wp-block-gallery figure {
  margin: 0;
}

/* ── File upload button in tips form ── */
.tips-form__file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 18px;
  border: 1px dashed #2e2e2e;
  border-radius: var(--radius);
  color: #555;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color .2s, color .2s;
}
.tips-form__file-label:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.tips-form__file-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

/* ── Paragraph & caption spacing fixes ── */
/* Gap between paragraph and image caption below it */
.article-content figcaption,
.single-article__caption {
  margin-top: 8px;
  margin-bottom: 0;
}
/* Gap between caption and next paragraph */
.article-content figure + p,
.article-content .wp-block-image + p,
.article-content .wp-block-video + p {
  margin-top: 28px;
}
/* General paragraph spacing – tweak this value to taste */
.article-content p {
  margin-bottom: 22px;
  line-height: 1.75;
}
/* Tighter gap between image caption and paragraph directly under it */
.article-content figcaption + p {
  margin-top: 0;
}