/* ========================================
   ANTHRO — SINGLE ARTICLE PAGE STYLES
   Extends style.css
======================================== */

/* ============ READING PROGRESS ============ */
.reading-progress {
  position: fixed;
  top: var(--hdr-h);
  left: 0; right: 0;
  height: 3px;
  background: rgba(104,104,72,0.12);
  z-index: 999;
}
.reading-bar {
  height: 100%;
  background: linear-gradient(to left, var(--copper), var(--olive));
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ============ ARTICLE HERO ============ */
.article-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.article-hero-bg {
  position: absolute;
  inset: 0;
}
/* صارت <img> حقيقيّة لا خلفيّة CSS — انظر single.php.
   object-fit يعطي سلوك background-size:cover نفسه. */
.article-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-hero-img--pattern {
  background-repeat: repeat;
  background-size: 220px;
  background-color: var(--olive-dk);
  opacity: 0.7;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31,31,31,0.3) 0%,
    rgba(31,31,31,0.6) 50%,
    rgba(31,31,31,0.92) 100%
  );
}
.article-hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--hdr-h) + 60px);
  padding-bottom: 64px;
  color: var(--white);
  max-width: 860px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(246,243,236,0.55);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.bc-link { color: rgba(246,243,236,0.55); transition: color var(--transition); }
.bc-link:hover { color: var(--cream); }
.bc-sep { color: rgba(246,243,236,0.3); display: flex; align-items: center; }
.bc-current { color: var(--copper-lt); }

.article-category-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--olive);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.article-main-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.article-lead {
  font-size: 1.1rem;
  color: rgba(246,243,236,0.8);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 32px;
  font-weight: 400;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.art-author-full {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity var(--transition);
}
.art-author-full:hover { opacity: 0.85; }
.av--lg { width: 48px !important; height: 48px !important; border: 2px solid rgba(246,243,236,0.3) !important; }

.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-name-full { font-size: 0.95rem; font-weight: 700; color: var(--cream); }
.author-title { font-size: 0.75rem; color: rgba(246,243,236,0.55); }

.article-meta-details {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(246,243,236,0.55);
}

/* Share bar in hero */
.article-share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.share-label { font-size: 0.78rem; color: rgba(246,243,236,0.5); }
.share-btns { display: flex; gap: 8px; }
.share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(246,243,236,0.7);
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.share-btn:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }

/* ============ ARTICLE LAYOUT ============ */
.article-layout {
  display: grid;
  grid-template-columns: 64px 1fr 300px;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 80px;
  align-items: start;
}

/* ============ LEFT SIDEBAR (Share + TOC) ============ */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sticky-widget {
  position: sticky;
  top: calc(var(--hdr-h) + 24px);
}

/* Sidebar share */
.sidebar-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  padding: 16px 12px;
}
.widget-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-text);
}
.sidebar-share-btns { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.s-share-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--olive);
  transition: all var(--transition);
}
.s-share-btn:hover { background: var(--olive); color: var(--cream); }
.sidebar-divider { width: 100%; height: 1px; background: var(--sand); }
.s-bookmark-btn.bookmarked { background: var(--copper); color: var(--cream); }

/* TOC Widget */
.toc-widget {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  margin-top: 20px;
}
.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}
.toc-link {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--olive-text);
  padding: 6px 10px;
  border-right: 2px solid transparent;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  transition: all var(--transition);
  line-height: 1.4;
}
.toc-link:hover { color: var(--olive); background: var(--sand); border-right-color: var(--olive-lt); }
.toc-link.active { color: var(--olive); font-weight: 700; border-right-color: var(--olive); background: rgba(104,104,72,0.06); }

/* ============ ARTICLE CONTENT ============ */
.article-content {
  max-width: 100%;
  font-family: 'Cairo', sans-serif;
  font-size: 1.12rem;
  line-height: 2.0;
  color: #222222;
}

.article-content p {
  margin-bottom: 28px;
}

.article-content h2 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(107, 111, 74,0.3);
  position: relative;
}
.article-content h2::after {
  content: '';
  position: absolute;
  bottom: -1px; right: 0;
  width: 56px; height: 2px;
  background: var(--olive);
}

/* Opening quote */
.article-opening-quote {
  border-right: 4px solid var(--olive);
  padding: 24px 28px;
  margin-bottom: 40px;
  background: rgba(104,104,72,0.05);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.article-opening-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--olive-dk);
  line-height: 1.8;
  margin-bottom: 8px;
}
.article-opening-quote cite {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--olive-text);
  font-style: normal;
}

/* Pull quote */
.article-pullquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--olive-dk);
  text-align: center;
  padding: 36px 48px;
  margin: 48px 0;
  position: relative;
  line-height: 1.7;
  border-top: 1px dashed var(--olive);
  border-bottom: 1px dashed var(--olive);
  background: rgba(104,104,72,0.03);
}
.article-pullquote::before {
  content: '"';
  position: absolute;
  top: -24px; right: 24px;
  font-size: 5rem;
  color: var(--copper-text);
  line-height: 1;
  font-family: var(--font);
}

/* Figures */
.article-figure {
  margin: 40px 0;
}
.article-img-placeholder {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, #6B6F4A 0%, #4D5035 50%, #C47A44 100%);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.article-img-placeholder--wide { height: 460px; }
.img-caption-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(31,31,31,0.8), transparent);
  padding: 20px 20px 16px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.img-caption-overlay span {
  font-size: 0.75rem;
  color: rgba(246,243,236,0.7);
}
figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--olive-text);
  text-align: center;
  line-height: 1.6;
}

/* Stats box */
.article-stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand-md);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 40px 0;
}
.stat-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 32px 24px;
  background: var(--white);
}
.sh-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--olive);
}
.sh-label {
  font-size: 0.82rem;
  color: var(--olive-text);
  line-height: 1.5;
}

/* Tags */
.article-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 48px 0 32px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}
.tags-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--olive-text);
  letter-spacing: 0.06em;
}
.art-tag-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--olive);
  background: rgba(104,104,72,0.08);
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid rgba(104,104,72,0.15);
  transition: all var(--transition);
}
.art-tag-link:hover { background: var(--olive); color: var(--cream); }

/* Author Bio Card */
.author-bio-card {
  display: flex;
  gap: 24px;
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.author-bio-photo { flex-shrink: 0; }
.author-bio-text { display: flex; flex-direction: column; gap: 8px; }
.author-bio-header { display: flex; flex-direction: column; gap: 4px; }
.author-bio-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  transition: color var(--transition);
}
.author-bio-name:hover { color: var(--olive); }
.author-bio-title { font-size: 0.8rem; color: var(--olive-text); }
.author-bio-desc { font-size: 0.88rem; color: #5a5a4a; line-height: 1.75; }
.author-bio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--copper-text);
  transition: gap var(--transition), color var(--transition);
}
.author-bio-link:hover { gap: 10px; color: var(--olive); }

/* Article Navigation */
.article-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--sand);
}
.art-nav-btn {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  transition: all var(--transition);
}
.art-nav-btn:hover { border-color: var(--olive); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.art-nav-btn--next { text-align: left; align-items: flex-start; }
.art-nav-btn--prev { text-align: right; align-items: flex-end; }
.art-nav-dir {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-text);
}
.art-nav-btn h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}
.art-nav-sep { width: 1px; height: 60px; background: var(--sand); }

/* ============ RIGHT SIDEBAR ============ */
.article-sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--hdr-h) + 24px);
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  padding: 24px;
}

.widget-heading {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand);
}

/* Related articles */
.related-articles { display: flex; flex-direction: column; gap: 16px; }
.related-card {
  display: flex;
  gap: 12px;
  transition: opacity var(--transition);
}
.related-card:hover { opacity: 0.85; }
.related-img {
  width: 70px;
  height: 70px;
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.related-body { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.related-cat { font-size: 0.68rem; font-weight: 700; color: var(--copper-text); text-transform: uppercase; letter-spacing: 0.08em; }
.related-title a { font-size: 0.82rem; font-weight: 700; color: var(--dark); line-height: 1.4; transition: color var(--transition); }
.related-title a:hover { color: var(--olive); }
.related-time { font-size: 0.72rem; color: var(--olive-text); }

/* Newsletter widget */
.sidebar-nl {
  background: linear-gradient(135deg, var(--olive), var(--olive-dk));
  border-color: transparent;
}
.sidebar-nl-icon {
  width: 40px; height: 40px;
  color: var(--copper-lt);
  margin-bottom: 12px;
}
.sidebar-nl-icon svg { width: 100%; height: 100%; }
.sidebar-nl .widget-heading { color: var(--cream); border-bottom-color: rgba(246,243,236,0.15); }
.widget-desc { font-size: 0.82rem; color: rgba(246,243,236,0.7); line-height: 1.6; margin-bottom: 14px; }
.sidebar-nl-input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--cream);
  outline: none;
  direction: rtl;
  font-family: var(--font);
  transition: border-color var(--transition);
}
.sidebar-nl-input::placeholder { color: rgba(246,243,236,0.4); }
.sidebar-nl-input:focus { border-color: var(--copper); }
.sidebar-nl .btn--primary { background: var(--copper); border-color: var(--copper); }
.sidebar-nl .btn--primary:hover { background: var(--copper-lt); }

/* Podcast CTA widget */
.sidebar-pod {
  background: var(--dark);
  border-color: rgba(246,243,236,0.06);
}
.pod-widget-season {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-text);
  margin-bottom: 8px;
}
.pod-widget-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
}
.pod-widget-desc { font-size: 0.82rem; color: rgba(246,243,236,0.6); line-height: 1.65; }
.sidebar-pod .btn--outline {
  border-color: rgba(246,243,236,0.25);
  color: var(--cream);
}
.sidebar-pod .btn--outline:hover { background: var(--olive); border-color: var(--olive); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .article-layout { grid-template-columns: 64px 1fr; }
  .article-sidebar-right { display: none; }
  .toc-widget { display: none; }
}
@media (max-width: 800px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .article-hero-content { max-width: 100%; }
  .article-stats-box { grid-template-columns: 1fr; }
  .article-nav { grid-template-columns: 1fr; }
  .art-nav-sep { display: none; }
  .article-hero-meta { flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  .article-main-title { font-size: 1.8rem; }
  .article-pullquote { padding: 24px 20px; font-size: 1.1rem; }
  .author-bio-card { flex-direction: column; }
}


/* =========================================================
   G-16 — EDITORIAL TYPOGRAPHY
   الحرف الاستهلالي وتفاصيل قراءة المقال.
   ========================================================= */

/*
 * الحرف الاستهلالي في العربية ليس كاللاتينية: الحروف متّصلة،
 * فتكبير أوّل حرف وإسقاطه يكسر الكلمة. الحل هنا هو تكبير أوّل
 * *كلمة* لا أوّل حرف — وهو التقليد الطباعي العربي في المطبوعات.
 */
.entry-content--dropcap > p:first-of-type::first-line {
  font-weight: 600;
}

.entry-content--dropcap > p:first-of-type {
  font-size: 1.06em;
}

.entry-content--dropcap > p:first-of-type > strong:first-child,
.entry-content--dropcap > p:first-of-type > b:first-child {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--olive-dk);
  line-height: 1.4;
}

/* فاصل زخرفي بين أقسام المقال — نقش الهوية لا خطّ عادي */
.entry-content hr {
  border: 0;
  height: 22px;
  margin: 44px auto;
  max-width: 180px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='22' viewBox='0 0 180 22'%3E%3Cg fill='none' stroke='%236B6F4A' stroke-width='1.2' opacity='0.231'%3E%3Cpath d='M0 11h68M112 11h68'/%3E%3Cpath d='M90 3l8 8-8 8-8-8z'/%3E%3C/g%3E%3Ccircle cx='90' cy='11' r='2' fill='%23C47A44'/%3E%3C/svg%3E");
}

/* الاقتباسات داخل المتن */
.entry-content blockquote {
  position: relative;
  margin: 32px 0;
  padding: 20px 26px;
  background: var(--sand);
  border-inline-start: 3px solid var(--copper);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 1.08em;
  line-height: 1.9;
  color: var(--olive-dk);
}
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.78em;
  font-weight: 700;
  font-style: normal;
  color: var(--olive);
}

/* شرح الصور */
.entry-content figcaption,
.entry-content .wp-element-caption {
  margin-top: 10px;
  padding-inline-start: 12px;
  border-inline-start: 2px solid var(--sand-md);
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--olive-text);
}

/* عناوين المتن — مسافة تنفّس قبلها أكبر منها بعدها */
.entry-content h2,
.entry-content h3 {
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--olive-dk);
}
.entry-content h2 { font-size: 1.55rem; }
.entry-content h3 { font-size: 1.25rem; }
.entry-content h2:first-child,
.entry-content h3:first-child { margin-top: 0; }


/* =========================================================
   G-15 — REPUBLISH
   ========================================================= */
.republish {
  margin: 48px 0 8px;
}

.republish-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;

  padding: 22px 26px;
  background: var(--sand);
  border: 1px dashed rgba(107, 111, 74, 0.35);
  border-radius: var(--r-lg);
}

.republish-bar__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--olive-dk);
  margin-bottom: 4px;
}
.republish-bar__note {
  font-size: 0.84rem;
  color: var(--olive-text);
  margin: 0;
}
.republish-bar__note a {
  color: var(--copper-text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.republish-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
}

/* ---------- النافذة ---------- */
.republish-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.republish-modal[hidden] { display: none; }

.republish-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.republish-modal__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 86vh;
  overflow-y: auto;

  padding: 32px;
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);

  animation: republish-in 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes republish-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.republish-modal__close {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 16px;

  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;

  color: var(--olive);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}
.republish-modal__close:hover { background: var(--sand); }
.republish-modal__close:focus-visible { outline: 2px solid var(--olive); outline-offset: 2px; }

.republish-modal__title {
  font-size: 1.3rem;
  color: var(--olive-dk);
  margin-bottom: 16px;
  padding-inline-end: 40px;
}

.republish-modal__body { font-size: 0.92rem; line-height: 1.85; }
.republish-modal__body > p { margin-bottom: 16px; }
.republish-modal__body a { color: var(--copper-text); font-weight: 600; }

.republish-terms {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-inline-start: 20px;
  font-size: 0.88rem;
  color: var(--dark);
}
.republish-terms li::marker { color: var(--copper-text); }

.republish-credit {
  padding-top: 20px;
  border-top: 1px solid var(--sand-md);
}
.republish-credit__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--olive);
}
.republish-credit__text {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;

  font-family: inherit;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--dark);

  background: var(--white);
  border: 1px solid var(--sand-md);
  border-radius: var(--r-sm);
  resize: vertical;
}
.republish-credit__text:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 1px;
  border-color: transparent;
}

.republish-copy.is-copied {
  background: var(--olive-dk);
  pointer-events: none;
}

@media (max-width: 560px) {
  .republish-bar { flex-direction: column; align-items: stretch; }
  .republish-open { justify-content: center; }
  .republish-modal__panel { padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .republish-modal__panel { animation: none; }
  .republish-modal__close { transition: none; }
}
