/* press.css — page-specific styles for press.html */

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.pr-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.pr-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

.pr-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,23,20,0.90) 0%, rgba(7,23,20,0.25) 55%, transparent 100%);
}

.pr-hero__content {
  position: relative; z-index: 1;
  padding: 0 72px 64px;
}

.pr-hero__title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800; line-height: 1;
  text-transform: uppercase; color: #fff;
  letter-spacing: 0.02em; margin-bottom: 12px;
}

.pr-hero__sub {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════
   INTRO
══════════════════════════════════════ */
.pr-intro { background: #fff; }

/* ══════════════════════════════════════
   PRESS CARDS GRID
══════════════════════════════════════ */
.pr-features {
  background: #f7fafa;
  padding: 64px 0 80px;
}

.pr-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.pr-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #0d2220;
  text-decoration: none;
  padding: 40px 32px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 180px;
}

.pr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(7,23,20,0.25);
}

.pr-card__headline {
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
}

.pr-card__desc {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 16px;
}

.pr-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.pr-card__logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 0 24px;
}

.pr-card__logo {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.pr-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}

.pr-card:hover .pr-card__cta {
  color: #6de8e6;
  border-color: #6de8e6;
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.pr-cta {
  position: relative;
  background-image: url('../assets/images/With%20People/13.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 48px;
  text-align: center;
}

.pr-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7,23,18,0.68);
}

.pr-cta__inner {
  position: relative; z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}

.pr-cta .section-eyebrow { color: rgba(255,255,255,0.65); }

.pr-cta .section-title { color: #fff; }

.pr-cta .section-title::after {
  left: 50%;
  transform: translateX(-50%);
  background:
    linear-gradient(to right, transparent, #fff 50%, transparent) no-repeat,
    rgba(255,255,255,0.2);
  background-size: 40% 100%, 100% 100%;
}

.pr-cta__desc {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.65); line-height: 1.75;
  max-width: 480px;
}

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .pr-hero { height: 50vh; min-height: 300px; }
  .pr-hero__content { padding: 0 24px 40px; width: 100%; text-align: center; }
  .pr-hero__title { font-size: clamp(36px, 10vw, 56px); }
  .pr-hero__sub { max-width: 100%; text-align: center; text-align-last: center; }

  .pr-features { padding: 40px 0 56px; }
  .pr-features__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 20px;
  }
  .pr-card { padding: 28px 24px 24px; border-radius: 16px; }
  .pr-card__headline { font-size: 15px; }

  .pr-cta { padding: 72px 24px; background-attachment: scroll; }
  .pr-cta .section-title::after { left: 50%; transform: translateX(-50%); }
}
