/* ═══════════════════════════════════════════════════════════════
   BuildX Press Kit -- Custom Styles
   Only press-page-specific layouts. Site globals handle the rest.
   ═══════════════════════════════════════════════════════════════ */

/* ── Page-wide centering for eyebrows, titles, subtitles ── */
.page-press .section__label,
.page-press .section__title,
.page-press .section__subtitle,
.page-press .press-subheading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero ──────────────────────────────────────────────────── */
.press-hero {
  padding: 6rem 0 5rem;
  text-align: center;
}

.press-hero .section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.press-hero .section__subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.press-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.press-hero__actions .btn svg {
  vertical-align: -0.15em;
  margin-right: 0.4em;
}

/* ── Boilerplate ──────────────────────────────────────────── */
.press-boilerplate {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  font-size: 1.075rem;
  line-height: 1.75;
  color: #444;
}

.press-subheading {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #333;
}

/* ── Founder Bio (two-column) ─────────────────────────────── */
.press-bio {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.press-bio__image-wrap {
  display: flex;
  justify-content: center;
}

.press-bio__image {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #F5A623;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.press-bio__content p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

.press-bio__timeline-heading,
.press-bio__credentials-heading {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.press-bio__timeline,
.press-bio__credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.press-bio__timeline li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.press-bio__timeline li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F5A623;
}

.press-bio__credentials li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.press-bio__credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: #F5A623;
  border-radius: 1px;
  transform: rotate(45deg);
}

.press-bio__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #F5A623;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.press-bio__links a:hover {
  opacity: 0.8;
}

.press-bio__availability {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(245, 166, 35, 0.08);
  border-left: 3px solid #F5A623;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #555;
}

@media (max-width: 768px) {
  .press-bio {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .press-bio__image {
    width: 200px;
    height: 200px;
  }

  .press-bio__content {
    text-align: left;
  }
}

/* ── Stats Grid ───────────────────────────────────────────── */
.press-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.press-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.press-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.press-stat__number {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #F5A623;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.press-stat__label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.press-stats__note {
  text-align: center;
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
}

@media (max-width: 900px) {
  .press-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .press-stats {
    grid-template-columns: 1fr;
  }
}

/* ── BuildX Difference List ───────────────────────────────── */
.press-difference {
  margin-top: 3rem;
}

.press-difference h3 {
  margin-bottom: 1.25rem;
  text-align: center;
}

.press-difference__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.75rem 3rem;
  max-width: 1460px;
  justify-content: center;
}

.press-difference__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.press-difference__list li svg {
  flex-shrink: 0;
  color: #F5A623;
  margin-top: 0.15rem;
}

@media (max-width: 640px) {
  .press-difference__list {
    grid-template-columns: 1fr;
  }
}

/* ── Market Context Blocks ────────────────────────────────── */
.press-context {
  display: grid;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.press-context__block {
  padding: 1.75rem;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #F5A623;
}

.press-context__block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.press-context__block p {
  line-height: 1.75;
  color: #444;
  margin: 0;
}

/* ── Brand Assets Note ────────────────────────────────────── */
.press-assets__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
}

/* ── Media Contact Card ───────────────────────────────────── */
.press-contact {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.press-contact__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.press-contact__name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.press-contact__role {
  color: #F5A623;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.press-contact__details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.press-contact__details li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.press-contact__details li svg {
  flex-shrink: 0;
  color: #F5A623;
}

.press-contact__details a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.press-contact__details a:hover {
  color: #F5A623;
}

.press-contact__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.press-contact__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.press-contact__social a:hover {
  background: #F5A623;
  border-color: #F5A623;
  color: #1a1a1a;
}

.press-contact__availability {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

.press-contact__availability p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0.35rem 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .press-contact__card {
    padding: 2rem 1.5rem;
  }
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.press-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.press-faq {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.press-faq:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.press-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: #333;
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}

.press-faq summary::-webkit-details-marker {
  display: none;
}

.press-faq summary::marker {
  display: none;
  content: '';
}

.press-faq summary:hover {
  background: rgba(245, 166, 35, 0.04);
}

.press-faq summary svg {
  flex-shrink: 0;
  color: #F5A623;
  transition: transform 0.3s;
}

.press-faq[open] summary svg {
  transform: rotate(180deg);
}

.press-faq__answer {
  padding: 0 1.5rem 1.25rem;
  line-height: 1.75;
  color: #555;
}

.press-faq__answer p {
  margin: 0;
}

/* ── CTA Section ──────────────────────────────────────────── */
body.page-press {
  background-color: #F8F8F8;
}

.cta-section {
  text-align: center;
  padding: 5rem 0;
}

.cta-section .section__subtitle {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section__actions .btn svg {
  vertical-align: -0.15em;
  margin-right: 0.4em;
}
