/* =====================================================
   PRESS PAGE — press.css
   ===================================================== */

/* ── Shared layout ──────────────────────────────────── */
.press-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Page header ────────────────────────────────────── */
.press-header {
  padding: 60px 0 40px;
}

.press-h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--senseye-white);
  margin: 0;
}

/* ── Featured press release ─────────────────────────── */
.press-featured {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 60px;
}

.press-featured-wrap {
  max-width: 70%;
}

.press-featured-date {
  font-size: 16px;
  color: var(--senseye-text);
  margin: 0 0 12px;
}

.press-featured-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--senseye-white);
  margin: 0 0 24px;
}

.press-featured-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--senseye-text);
  margin: 0 0 16px;
}

.press-featured-body ul {
  margin: 0 0 16px;
  padding-left: 24px;
}

.press-featured-body li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--senseye-text);
  margin-bottom: 8px;
}

.press-featured-body a {
  color: var(--senseye-teal);
  text-decoration: underline;
}

.press-featured-body a:hover {
  text-decoration: none;
}

.press-featured-body strong {
  color: var(--senseye-white);
  font-weight: 700;
}

.press-featured-body em {
  font-style: italic;
  opacity: 0.8;
}

/* ── Older press items ──────────────────────────────── */
.press-item {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 32px;
}

.press-item:last-child {
  border-bottom: none;
}

.press-item-date {
  font-size: 15px;
  color: var(--senseye-text);
  margin: 0 0 8px;
}

.press-item-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--senseye-white);
  margin: 0 0 16px;
}

.press-btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--senseye-teal);
  color: var(--senseye-navy);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.press-btn:hover {
  background: var(--senseye-navy-deep);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 860px) {
  .press-container {
    padding: 0 24px;
  }

  .press-header {
    padding: 40px 0 24px;
  }

  .press-h1 {
    font-size: 36px;
  }

  .press-featured-wrap {
    max-width: 100%;
  }

  .press-featured-title {
    font-size: 22px;
  }

  .press-item-title {
    font-size: 18px;
  }
}
