/* =============================================
   PRESS PAGE
============================================= */
.press-content {
  animation: fadeUp 0.5s ease both;
}

.section-label {
  margin-bottom: 0;
}

.press-list {
  display: flex;
  flex-direction: column;
}

.press-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  transition: opacity 0.15s, border-color 0.3s;
}

.press-item:hover { opacity: 0.8; }

.press-thumb {
  width: 200px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rule);
  transition: background 0.3s;
}

.press-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.press-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.press-source {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.press-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.15s;
}

.press-item:hover .press-title { color: var(--red); }

/* =============================================
   RESPONSIVE — PRESS OVERRIDES
============================================= */
@media (max-width: 900px) {
  .press-item {
    grid-template-columns: 160px 1fr;
    gap: 16px;
    padding: 20px 0;
  }
  .press-thumb { width: 160px; }
}

@media (max-width: 600px) {
  .press-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .press-thumb { width: 100%; }
  .press-title { font-size: 16px; }
}
