/* =============================================================
   ARK LABS — NEWSROOM PAGE STYLES
   Per-page styles for /company/newsroom/. Uses design tokens
   from base.css. Inspired by clean, text-first press-release
   layouts (Nebius-style) with ARK navy/cyan palette.
   ============================================================= */

/* ---- Hero ---- */
.news-hero {
  position: relative; overflow: hidden;
  padding: 96px 60px 72px;
  background: linear-gradient(180deg, var(--light-blue) 0%, #FFFFFF 100%);
}
.news-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
}
.news-hero h1 {
  font-size: 3.4em; font-weight: 800; color: var(--navy);
  line-height: 1.04; letter-spacing: -1px; margin: 12px 0 18px;
}
.news-hero h1 .accent { color: var(--cyan); }
.news-hero p.lede {
  font-size: 1.12em; color: var(--steel); line-height: 1.7; max-width: 600px;
}
.news-hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px;
}
.news-hero-meta {
  margin-top: 28px; padding-top: 24px;
  display: flex; gap: 32px; flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.news-hero-meta .meta-item .k {
  font-size: 0.7em; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 4px;
}
.news-hero-meta .meta-item .v {
  font-size: 0.98em; font-weight: 600; color: var(--navy);
}
.news-hero-meta .meta-item .v a {
  color: var(--cyan); text-decoration: none;
}
.news-hero-meta .meta-item .v a:hover { text-decoration: underline; }

/* ---- Contact card (right side of hero) ---- */
.news-contact-card {
  background: white; border: 1px solid var(--border); border-radius: 18px;
  padding: 32px; box-shadow: 0 12px 40px rgba(12,35,64,0.06);
}
.news-contact-card h3 {
  font-size: 0.78em; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.news-contact-card h3 .bar {
  width: 18px; height: 2px; background: var(--cyan); border-radius: 1px;
}
.news-contact-card .title {
  font-size: 1.3em; font-weight: 700; color: var(--navy);
  line-height: 1.3; margin-bottom: 20px;
}
.news-contact-card .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border-light);
  font-size: 0.95em;
}
.news-contact-card .row:last-of-type { border-bottom: none; }
.news-contact-card .row .label {
  color: var(--steel); font-weight: 500;
}
.news-contact-card .row .value a {
  color: var(--navy); font-weight: 600; text-decoration: none;
}
.news-contact-card .row .value a:hover { color: var(--cyan); }

/* ---- Section shell (shared with about page pattern) ---- */
.newsroom-section {
  padding: 80px 60px;
}
.newsroom-section.alt {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.newsroom-section-inner {
  max-width: 1200px; margin: 0 auto;
}
.newsroom-section-head {
  text-align: center; margin-bottom: 40px;
}
.newsroom-section-head .section-tag { justify-content: center; display: inline-flex; }
.newsroom-section-head h2 {
  font-size: 2.2em; font-weight: 800; color: var(--navy);
  line-height: 1.15; margin: 12px 0 10px;
}
.newsroom-section-head p {
  font-size: 1.02em; color: var(--steel); line-height: 1.65;
  max-width: 620px; margin: 0 auto;
}

/* ---- Featured press release (big hero card) ---- */
.featured-release {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px;
  background: white; border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(12,35,64,0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.featured-release:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(12,35,64,0.1);
  border-color: var(--cyan);
}
.featured-release-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-alt) 100%);
  min-height: 320px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.featured-release-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(0,174,232,0.25), transparent 60%);
}
.featured-release-visual .fv-stamp {
  position: relative; z-index: 1; color: rgba(255,255,255,0.1);
  font-size: 6em; font-weight: 900; letter-spacing: 8px;
}
.featured-release-body {
  padding: 40px 40px 40px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.featured-release-meta {
  display: flex; gap: 12px; align-items: center; margin-bottom: 14px;
  font-size: 0.78em;
}
.featured-release-meta .tag {
  background: var(--cyan); color: white;
  padding: 4px 12px; border-radius: 999px;
  font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; font-size: 0.9em;
}
.featured-release-meta .date {
  color: var(--steel); font-weight: 600;
}
.featured-release-body h3 {
  font-size: 1.8em; font-weight: 800; color: var(--navy);
  line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.4px;
  text-decoration: none;
}
.featured-release-body p {
  font-size: 1em; color: var(--steel); line-height: 1.65;
  margin-bottom: 20px;
}
.featured-release-body .read {
  font-size: 0.9em; font-weight: 700;
  color: var(--cyan); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---- Filter tabs ---- */
.filter-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 36px;
}
.filter-tab {
  padding: 10px 18px;
  background: white; border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88em; font-weight: 600; color: var(--navy);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.filter-tab:hover { border-color: var(--cyan); color: var(--cyan); }
.filter-tab.is-active {
  background: var(--navy); color: white; border-color: var(--navy);
}

/* ---- Press releases list (Nebius-style text list) ---- */
.release-list {
  display: flex; flex-direction: column;
  background: white; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
}
.release-row {
  display: grid;
  grid-template-columns: 150px 130px 1fr auto;
  gap: 24px; align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none; color: inherit;
  transition: background 0.2s;
}
.release-row:last-child { border-bottom: none; }
.release-row:hover { background: var(--light-blue); }
.release-row .r-date {
  font-size: 0.85em; color: var(--steel); font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.release-row .r-tag {
  font-size: 0.7em; font-weight: 700;
  color: var(--cyan-dark); background: var(--cyan-light);
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.8px; text-transform: uppercase;
  text-align: center;
  justify-self: start;
}
.release-row .r-title {
  font-size: 1em; font-weight: 600; color: var(--navy);
  line-height: 1.4;
}
.release-row .r-arrow {
  color: var(--cyan); font-weight: 700; font-size: 1.1em;
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.release-row:hover .r-arrow {
  opacity: 1; transform: translateX(0);
}
.year-heading {
  font-size: 0.78em; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 2px;
  margin: 36px 0 14px;
}
.year-heading:first-child { margin-top: 0; }

/* ---- Coverage cards (in the press) ---- */
.coverage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.coverage-card {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 26px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.coverage-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(12,35,64,0.07);
  border-color: var(--cyan);
}
.coverage-card .outlet {
  font-size: 0.72em; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.coverage-card h4 {
  font-size: 1.05em; font-weight: 700; color: var(--navy);
  line-height: 1.35; margin-bottom: 14px; letter-spacing: -0.1px;
}
.coverage-card p {
  font-size: 0.9em; color: var(--steel); line-height: 1.6;
  margin-bottom: 14px; flex: 1;
}
.coverage-card .c-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8em; color: var(--steel);
  padding-top: 14px; border-top: 1px solid var(--border-light);
}
.coverage-card .c-meta .read {
  color: var(--cyan); font-weight: 700;
}

/* ---- Media kit section ---- */
.mediakit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.mediakit-card {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 26px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.mediakit-card:hover {
  border-color: var(--cyan); transform: translateY(-2px);
}
.mediakit-card .mk-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--cyan-light); color: var(--cyan-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1em;
  margin-bottom: 6px;
}
.mediakit-card h4 {
  font-size: 1em; font-weight: 700; color: var(--navy);
  line-height: 1.3;
}
.mediakit-card p {
  font-size: 0.88em; color: var(--steel); line-height: 1.55; flex: 1;
}
.mediakit-card .mk-link {
  font-size: 0.82em; font-weight: 700; color: var(--cyan);
  margin-top: 8px;
}

/* ---- Subscribe / press contact CTA ---- */
.press-cta {
  background: var(--navy);
  color: white;
  border-radius: 18px;
  padding: 56px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.press-cta h2 {
  font-size: 1.9em; font-weight: 800; line-height: 1.15;
  margin-bottom: 14px; letter-spacing: -0.3px;
}
.press-cta h2 .accent { color: var(--cyan); }
.press-cta p {
  font-size: 1.02em; line-height: 1.65;
  color: rgba(255,255,255,0.78);
}
.press-cta-form {
  display: flex; flex-direction: column; gap: 12px;
}
.press-cta-form label {
  font-size: 0.72em; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 1.8px;
}
.press-cta-form .row {
  display: flex; gap: 10px;
}
.press-cta-form input[type="email"] {
  flex: 1; padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: white; font-size: 0.95em; font-family: inherit;
}
.press-cta-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.press-cta-form input[type="email"]:focus {
  outline: none; border-color: var(--cyan);
  background: rgba(255,255,255,0.12);
}
.press-cta-form button {
  padding: 14px 22px;
  background: var(--cyan); color: white;
  border: none; border-radius: 10px;
  font-size: 0.92em; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.press-cta-form button:hover { background: var(--cyan-dark); }
.press-cta-form .note {
  font-size: 0.78em; color: rgba(255,255,255,0.55); line-height: 1.5;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .news-hero { padding: 72px 28px 56px; }
  .news-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .news-hero h1 { font-size: 2.4em; }
  .newsroom-section { padding: 56px 28px; }
  .featured-release { grid-template-columns: 1fr; }
  .featured-release-body { padding: 28px; }
  .featured-release-visual { min-height: 200px; }
  .release-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }
  .release-row .r-arrow { display: none; }
  .coverage-grid, .mediakit-grid { grid-template-columns: 1fr; }
  .press-cta {
    grid-template-columns: 1fr; gap: 28px; padding: 40px 28px;
  }
}
