/* ============================================================
   PRESS & MEDIA SECTION
   ============================================================ */

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  max-width: 860px;
  margin: 0 auto;
}

/* Press card — 3D glass with illuminated border */
.press-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    165deg,
    rgba(30, 42, 70, 0.95) 0%,
    rgba(16, 22, 42, 0.96) 50%,
    rgba(8, 10, 18, 0.98) 100%
  );
  border: 1.5px solid rgba(80, 140, 255, 0.15);
  border-top-color: rgba(100, 180, 255, 0.30);
  border-left-color: rgba(80, 150, 255, 0.20);
  border-bottom-color: rgba(0, 20, 60, 0.4);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(0, 80, 200, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 4px rgba(0, 0, 0, 0.5);
}

.press-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 120, 255, 0.5);
  border-top-color: rgba(0, 180, 255, 0.6);
  border-bottom-color: rgba(0, 50, 170, 0.35);
  box-shadow:
    0 0 30px rgba(0, 100, 238, 0.50),
    0 0 70px rgba(0, 80, 220, 0.28),
    0 0 120px rgba(0, 60, 200, 0.12),
    0 14px 44px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    inset 0 -2px 6px rgba(0, 20, 80, 0.35);
}

/* --- Brand header --- */
.press-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 80px;
  border-radius: 13px 13px 0 0;
  overflow: hidden;
}

.press-card-header img {
  max-height: 50px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.press-card:hover .press-card-header img {
  opacity: 1;
}

/* Publication-specific brand backgrounds */
.press-card-header--80lv {
  background: #000;
}

.press-card-header--otageek {
  background: #a132f0;
}

.press-card-header--hitmarker {
  background: #1a1a1a;
}

.press-card-header--unity {
  background: #222;
}

/* --- Card body --- */
.press-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.press-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.press-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.press-read-more {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: auto;
  transition: letter-spacing 0.3s ease;
}

.press-card:hover .press-read-more {
  letter-spacing: 2px;
}
