:root {
  --gold: #c8922a;
  --gold-light: #e8b84b;
  --gold-pale: #f5e6c0;
  --deep: #1a0e05;
  --maroon: #5c1a1a;
  --cream: #fdf6e9;
  --blue-steel: #1e3a5f;
  --text: #2d1f0f;
  --muted: #7a6248;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);
  font-family: "EB Garamond", Georgia, serif;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.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;
}

.top-bar {
  padding: 6px 16px;
  background: var(--maroon);
  color: var(--gold-light);
  font-family: Cinzel, serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-align: center;
}

.site-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 50% -10%, rgba(200, 146, 42, 0.25), transparent 70%),
    linear-gradient(160deg, var(--deep) 0%, #2e1505 60%, var(--maroon) 100%);
}

.site-header::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(200, 146, 42, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 36px 24px 28px;
  text-align: center;
}

.brand-mark {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 2px solid rgba(232, 184, 75, 0.7);
  border-radius: 50%;
  background: #fff9ec;
  color: var(--maroon);
  font-size: 2.8rem;
  filter: drop-shadow(0 0 14px rgba(232, 184, 75, 0.7));
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(232, 184, 75, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(232, 184, 75, 0.9));
  }
}

.site-gurmukhi {
  margin: 0;
  color: var(--gold-pale);
  font-family: "Tiro Devanagari Sanskrit", serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.site-title {
  margin: 0;
  color: var(--gold-light);
  font-family: Cinzel, serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.site-tagline {
  margin: 0;
  color: rgba(245, 230, 192, 0.7);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.12em;
}

.gold-rule {
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
  background: var(--deep);
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.main-nav a {
  display: block;
  padding: 13px 18px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  color: var(--gold-pale);
  font-family: Cinzel, serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--gold-light);
  background: rgba(200, 146, 42, 0.12);
  color: var(--gold-light);
}

.shabad-bar {
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 146, 42, 0.3);
  background: linear-gradient(90deg, var(--maroon), #3d1010, var(--maroon));
}

.shabad-scroll {
  display: flex;
  width: max-content;
  gap: 60px;
  padding: 10px 0;
  white-space: nowrap;
  animation: scroll-left 32s linear infinite;
}

.shabad-scroll span {
  color: var(--gold-light);
  font-family: "Tiro Devanagari Sanskrit", serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.page-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
  max-width: 1100px;
  padding: 32px 20px;
  margin: 0 auto;
}

.hero-slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 7;
  margin-bottom: 32px;
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: 4px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide-1 {
  background: radial-gradient(ellipse at 40% 50%, #2e1a0a, #0d0603);
}

.slide-2 {
  background: radial-gradient(ellipse at 60% 40%, #0a1e2e, #050810);
}

.slide-3 {
  background: radial-gradient(ellipse at 50% 60%, #1a0e00, #2e1505);
}

.slide-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Cinzel, serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.slide h2 {
  margin: 0 0 10px;
  color: var(--gold-pale);
  font-family: "Tiro Devanagari Sanskrit", serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.slide p:last-child {
  max-width: 500px;
  margin: 0;
  color: rgba(245, 230, 192, 0.65);
  font-size: 0.95rem;
  font-style: italic;
}

.slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(200, 146, 42, 0.4);
  cursor: pointer;
}

.dot.active {
  background: var(--gold-light);
}

.section-title {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  margin: 0 0 20px;
  color: var(--maroon);
  font-family: Cinzel, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title::before {
  color: var(--gold);
  content: "❖";
  font-size: 0.8rem;
}

.panel,
.mag-section {
  margin-bottom: 32px;
}

.tribute-banner {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: 3px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--maroon), #3d1010 50%, var(--maroon));
}

.tribute-icon {
  flex-shrink: 0;
  color: var(--gold-light);
  font-size: 2rem;
}

.tribute-banner h2 {
  margin: 0 0 4px;
  color: var(--gold-pale);
  font-family: Cinzel, serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.tribute-banner p {
  margin: 0;
  color: rgba(245, 230, 192, 0.65);
  font-size: 0.88rem;
  font-style: italic;
}

.search-wrap {
  display: flex;
  margin-bottom: 16px;
}

.search-wrap input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid rgba(200, 146, 42, 0.4);
  border-right: 0;
  border-radius: 2px 0 0 2px;
  outline: 0;
  background: var(--cream);
  color: var(--text);
  font-size: 0.95rem;
}

.search-wrap input:focus {
  border-color: var(--gold);
}

.search-wrap button,
.text-button {
  border: 0;
  border-radius: 0 2px 2px 0;
  background: var(--maroon);
  color: var(--gold-pale);
  cursor: pointer;
  font-family: Cinzel, serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s;
}

.search-wrap button {
  padding: 10px 16px;
}

.text-button {
  display: inline-block;
  padding: 8px 16px;
  margin-top: 14px;
  border-radius: 2px;
}

.search-wrap button:hover,
.text-button:hover {
  background: var(--deep);
}

.raag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.raag-btn {
  padding: 4px 10px;
  border: 1px solid rgba(200, 146, 42, 0.4);
  border-radius: 2px;
  background: var(--gold-pale);
  color: var(--maroon);
  cursor: pointer;
  font-family: Cinzel, serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}

.raag-btn:hover,
.raag-btn.active {
  border-color: var(--maroon);
  background: var(--maroon);
  color: var(--gold-pale);
}

.search-results {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

.search-hit {
  padding: 8px 12px;
  border-left: 3px solid var(--gold);
  border-radius: 0 2px 2px 0;
  margin-top: 8px;
  background: var(--gold-pale);
  color: var(--deep);
  font-size: 0.9rem;
  line-height: 1.5;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.news-card,
.sidebar-card {
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 4px;
  background: var(--white);
}

.news-card {
  padding: 16px;
  border-top: 3px solid var(--gold);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
  box-shadow: 0 6px 24px rgba(200, 146, 42, 0.15);
  transform: translateY(-3px);
}

.news-tag {
  margin: 0 0 6px;
  color: var(--maroon);
  font-family: Cinzel, serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.meta,
.section-intro,
.card-note {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
}

.mag-section {
  padding: 24px;
  border: 1px solid rgba(200, 146, 42, 0.25);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--white), var(--gold-pale));
}

.section-intro {
  margin: 0 0 4px;
  font-size: 0.9rem;
}

.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.mag-cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  padding: 10px 8px;
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: 3px;
  background: var(--deep);
  color: var(--gold-pale);
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.mag-cover:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

.mag-cover.latest {
  border-color: var(--gold-light);
  background: linear-gradient(160deg, #2e1505, #1a0e05);
  box-shadow: 0 0 16px rgba(200, 146, 42, 0.2);
}

.ek-onkar {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 1.4rem;
}

.issue-label {
  font-family: Cinzel, serif;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.new-badge {
  padding: 2px 6px;
  border-radius: 2px;
  margin-top: 6px;
  background: var(--gold);
  color: var(--deep);
  font-family: Cinzel, serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  overflow: hidden;
}

.card-head {
  padding: 12px 16px;
  margin: 0;
  background: var(--deep);
  color: var(--gold-light);
  font-family: Cinzel, serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-body {
  padding: 16px;
}

.card-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
}

.card-body p + p {
  margin-top: 10px;
}

.hukamnama-text {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(200, 146, 42, 0.3);
  margin-bottom: 10px;
  color: var(--maroon);
  font-family: "Tiro Devanagari Sanskrit", serif;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
}

.hukamnama-translation,
.card-note {
  text-align: center;
}

.card-note {
  margin-top: 10px;
  font-family: Cinzel, serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audio-player {
  padding: 16px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--deep), #2e1505);
  color: var(--gold-pale);
  text-align: center;
}

.now-playing-label {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: Cinzel, serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.now-playing-title {
  margin: 0 0 12px;
  color: var(--gold-pale);
  font-size: 0.95rem;
  font-style: italic;
}

.player-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.ctrl-btn {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: 50%;
  background: rgba(200, 146, 42, 0.15);
  color: var(--gold-light);
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s, background 0.2s;
}

.ctrl-btn:hover {
  background: rgba(200, 146, 42, 0.3);
  transform: scale(1.1);
}

.play-btn {
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--gold);
  color: var(--deep);
  font-size: 1.2rem;
}

.play-btn:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

.progress-bar {
  overflow: hidden;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-fill {
  width: 35%;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: progress-sim 40s linear infinite;
}

@keyframes progress-sim {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.time-row {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: rgba(245, 230, 192, 0.5);
  font-size: 0.7rem;
}

.link-list {
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.link-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(200, 146, 42, 0.12);
}

.link-list li:last-child {
  border-bottom: 0;
}

.link-list a {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--blue-steel);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.link-list a:hover {
  color: var(--maroon);
}

.link-list a::before {
  flex-shrink: 0;
  margin-top: -1px;
  color: var(--gold);
  content: "›";
  font-size: 1rem;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 5px;
  background: #e05555;
  animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse-red {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.site-footer {
  padding: 32px 20px;
  margin-top: 40px;
  background: var(--deep);
  color: rgba(245, 230, 192, 0.55);
  font-size: 0.82rem;
  text-align: center;
}

.footer-logo {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-family: Cinzel, serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 14px 0;
}

.footer-links a {
  color: rgba(245, 230, 192, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.copyright {
  margin: 8px 0 0;
  color: rgba(245, 230, 192, 0.35);
  font-size: 0.75rem;
}

.compact-header .header-inner {
  padding-block: 30px 26px;
}

.about-page {
  max-width: 1100px;
  padding: 32px 20px 0;
  margin: 0 auto;
}

.about-hero {
  padding: 34px 0 30px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.24);
}

.about-hero h2 {
  max-width: 780px;
  margin: 0;
  color: var(--deep);
  font-family: Cinzel, serif;
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.about-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--maroon);
  font-family: Cinzel, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
  padding-top: 32px;
}

.about-main {
  display: grid;
  gap: 28px;
}

.about-section {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.18);
}

.about-section p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.about-section p + p {
  margin-top: 14px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-grid article {
  padding: 16px;
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  background: var(--white);
}

.value-grid h3 {
  margin: 0 0 8px;
  color: var(--maroon);
  font-family: Cinzel, serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-grid p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.fact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.fact-list div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.12);
}

.fact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fact-list dt {
  color: var(--maroon);
  font-family: Cinzel, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.45;
}

.flush-list {
  margin-top: 0;
}

.about-cta {
  padding: 26px 24px;
  border: 1px solid rgba(200, 146, 42, 0.28);
  border-radius: 4px;
  margin-top: 34px;
  background: linear-gradient(135deg, var(--white), var(--gold-pale));
  text-align: center;
}

.about-cta h2 {
  margin: 0;
  color: var(--maroon);
  font-family: Cinzel, serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-cta p {
  max-width: 620px;
  margin: 10px auto 0;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

.archive-page {
  max-width: 1100px;
  padding: 32px 20px 0;
  margin: 0 auto;
}

.archive-tools {
  padding: 24px;
  border: 1px solid rgba(200, 146, 42, 0.24);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--white), var(--gold-pale));
}

.archive-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 150px 140px 150px auto;
  gap: 12px;
  align-items: end;
}

.archive-filter label {
  display: grid;
  gap: 6px;
  color: var(--maroon);
  font-family: Cinzel, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-filter input,
.archive-filter select {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(200, 146, 42, 0.45);
  border-radius: 2px;
  background: var(--cream);
  color: var(--text);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 0.98rem;
  text-transform: none;
  letter-spacing: 0;
}

.archive-filter input:focus,
.archive-filter select:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(200, 146, 42, 0.15);
}

.clear-btn {
  min-height: 40px;
  padding: 8px 14px;
  border: 0;
  border-radius: 2px;
  background: var(--maroon);
  color: var(--gold-pale);
  cursor: pointer;
  font-family: Cinzel, serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clear-btn:hover {
  background: var(--deep);
}

.archive-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.archive-summary p {
  margin: 0;
}

.path-note {
  font-style: italic;
}

.issue-results {
  margin-top: 24px;
}

.issue-list {
  display: grid;
  gap: 10px;
}

.issue-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(200, 146, 42, 0.18);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  background: var(--white);
}

.issue-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: var(--gold-light);
  font-size: 1.2rem;
}

.issue-copy h3 {
  margin: 0;
  color: var(--deep);
  font-family: Cinzel, serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.issue-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

.issue-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 2px;
  background: var(--maroon);
  color: var(--gold-pale);
  font-family: Cinzel, serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.issue-action:hover {
  background: var(--deep);
}

.issue-action.pending {
  background: var(--gold-pale);
  color: var(--muted);
}

.empty-state {
  padding: 22px;
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 4px;
  background: var(--white);
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.6s ease forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 800px) {
  .page-wrap,
  .about-layout,
  .archive-filter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .news-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero-slideshow {
    aspect-ratio: 4 / 3;
  }

  .tribute-banner {
    align-items: flex-start;
    padding: 16px;
  }

  .archive-tools {
    padding: 18px;
  }

  .issue-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .issue-action {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
