.hero-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.25rem;
}

.feature-spotlight {
    position: relative;
    height: min(84vh, 700px);
    overflow: hidden;
}

.feature-spotlight img {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

.feature-spotlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.feature-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 2rem;
}

.stat-card {
    border: 1px solid var(--border);
    background: var(--background);
    padding: 1.5rem;
}

.collection-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.collection-card .image-frame {
    aspect-ratio: 4 / 3;
}

.collection-card.large {
    aspect-ratio: 16 / 9;
}

.collection-card.tall {
    aspect-ratio: 4 / 5;
}

.editorial-stack {
    display: grid;
    gap: clamp(2rem, 3vw, 3rem);
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
    gap: clamp(3rem, 4vw, 5rem);
    align-items: center;
}

.editorial-grid.reverse {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
}

.editorial-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.editorial-media {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    max-height: 320px;
}

.editorial-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f3efe8;
}

.editorial-grid.reverse .editorial-copy {
    order: 2;
}

.editorial-grid.reverse .editorial-media {
    order: 1;
}

.collection-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.category-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 0.5rem 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    background: none;
    border: 0;
    color: inherit;
    text-align: left;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-panel.open {
    max-height: 320px;
}

.form-input {
    width: 100%;
    border: 1px solid rgba(10, 10, 10, 0.15);
    background: #fff;
    padding: 0.9rem 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-ghost {
    border: 1px solid rgba(10, 10, 10, 0.2);
    padding: 0.85rem 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.mega-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 0.95;
}

.page-copy {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(10, 10, 10, 0.7);
}
.top-footer-row {
    border-top: 2px solid rgb(0, 0, 0);
    padding-bottom: 1rem;
    border-bottom:2px solid rgb(0, 0, 0);
   }

/* Archive & Latest Issue Section */
.archive-header {
  margin-bottom: 3rem;
}

.archive-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  letter-spacing: 0.1em;
  font-weight: 400;
  margin: 0;
}

.archive-title .separator {
  color: var(--gold);
  margin: 0 0.5rem;
}

.article-collection {
  display: grid;
  gap: 1.5rem;
}

.article-card {
  position: relative;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 2px;
  padding: 1.25rem;
  transition: all 0.35s ease;
  background: #fff;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.08);
  border-color: rgba(184, 150, 90, 0.2);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.article-category {
  display: inline-block;
  font-size: 0.63rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.page-meta {
  font-size: 0.72rem;
  color: rgba(10, 10, 10, 0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.3;
  margin: 0;
  color: var(--foreground);
  font-weight: 500;
}

.article-authors {
  font-size: 0.75rem;
  color: rgba(10, 10, 10, 0.6);
  margin: 0;
  letter-spacing: 0.05em;
}

.article-authors span {
  font-weight: 500;
}

.article-abstract {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.65);
  margin: 0.25rem 0 0;
}

.card-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.btn-article {
  display: inline-block;
  border: 1px solid rgba(10, 10, 10, 0.15);
  background: transparent;
  color: var(--foreground);
  padding: 0.5rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-article:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 150, 90, 0.05);
}

.btn-article.btn-secondary {
  background: transparent;
  border-color: rgba(10, 10, 10, 0.12);
}

.btn-article.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 767px) {
  .archive-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .article-collection {
    gap: 1rem;
  }

  .article-card {
    padding: 1rem;
  }

  .article-card:hover {
    transform: translateY(-4px);
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .page-meta {
    align-self: flex-end;
  }

  .article-title {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  }

  .article-abstract {
    font-size: 0.8rem;
  }

  .card-actions {
    gap: 0.6rem;
    margin-top: 0.5rem;
  }

  .btn-article {
    padding: 0.45rem 0.9rem;
    font-size: 0.63rem;
  }
}
