/* Press Archive Styles */

.press-archive {
  padding-top: 120px;
  min-height: 100vh;
  background: var(--bg-primary, #0A0A0A);
}

.archive-header {
  background: var(--bg-secondary, #111111);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold, #C9A84C);
  font-size: 0.85rem;
  font-family: var(--font-body);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 0.7;
}


.archive-header h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.archive-header .subtitle {
  font-size: 1.2rem;
  opacity: 0.7;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.filter-group label {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: #1a1a1a;
  color: white;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
  -webkit-appearance: auto;
}

.filter-select:focus {
  outline: none;
  border-color: var(--gold, #C9A84C);
}

.filter-select option {
  background: #1a1a1a;
  color: white;
}

#reset-filters {
  margin-left: auto;
  align-self: flex-end;
  padding: 0.75rem 1.5rem;
}

.stats {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--text-muted, #A8A8A8);
}

.stats span {
  font-weight: 600;
  color: var(--gold, #C9A84C);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 4rem;
}

.press-card {
  background: rgba(255,255,255,0.02);
  padding: 44px 36px;
  border: 1px solid var(--border-subtle, rgba(255,255,255,0.06));
  transition: background 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.press-card:hover {
  background: rgba(255,255,255,0.04);
}

.card-quote-mark {
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold, #C9A84C);
  opacity: 0.6;
  margin-bottom: 24px;
  display: block;
  font-weight: 300;
}

.quote {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.6vw, 22px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white, #ffffff);
  margin-bottom: 28px;
  flex-grow: 1;
}

.quote.english {
  display: none;
  color: rgba(255,255,255,0.75);
  font-size: clamp(15px, 1.4vw, 20px);
}

.read-full {
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.read-full a {
  color: var(--gold, #C9A84C);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.read-full a:hover {
  border-color: var(--gold, #C9A84C);
}

.card-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.attr-line {
  width: 24px;
  height: 1px;
  background: var(--gold, #C9A84C);
  opacity: 0.6;
  flex-shrink: 0;
}

.publication {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted, #A8A8A8);
}

.date {
  font-size: 11px;
  color: var(--text-dim, #666666);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.type-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim, #666666);
}

.translation-toggle {
  background: none;
  border: none;
  color: var(--gold, #C9A84C);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.translation-toggle:hover {
  opacity: 1;
}

.read-link {
  color: var(--text-dim, #666666);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.read-link:hover {
  color: var(--gold, #C9A84C);
}

.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted, #A8A8A8);
  font-size: 1.2rem;
  grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .archive-header h1 {
    font-size: 2.5rem;
  }

  .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    min-width: auto;
  }

  #reset-filters {
    align-self: stretch;
    margin-left: 0;
    margin-top: 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}
