/* ==================
   ATBS PAGE
   White background hero (no stripes)
   ================== */

/* Shared page nav (same as about) */
.page-nav {
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 1.4rem 2rem;
  margin-top: 20px;
}

.page-nav ul {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.page-nav a {
  font-family: "ivypresto-display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: #333;
  text-decoration: none;
}

.page-nav a.nav-italic {
  font-style: italic;
}

.page-nav a:hover {
  text-decoration: underline;
}

.page-nav a.active {
  opacity: 0.5;
}

/* Author name banner — white bg */
.page-name-banner {
  background: #fff;
  padding: 1.5rem 2rem 2rem;
  display: flex;
  justify-content: center;
}

/* ATBS hero — white background, no stripes */
.atbs-hero {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1rem 2rem 5rem;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

.atbs-hero.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Make the about section on this page also white */
.about-section {
  background: #faf8f5;
}

/* ==================
   PRESS SECTION
   ================== */
.press-section {
  background: #111;
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 -16px 60px rgba(0, 0, 0, 0.45);
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.85s ease;
}

.press-section.slide-up {
  transform: translateY(0);
  opacity: 1;
}

.press-heading {
  font-family: "ivyepic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d4307a;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.press-list {
  max-width: 680px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.press-item {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.8rem;
}

.press-outlet {
  font-family: "ivyepic", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.press-arrow {
  color: #d4307a;
  font-size: 0.9rem;
}

.press-item p {
  font-family: "ivypresto-headline", serif;
  font-weight: 100;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.press-item a {
  font-family: "ivypresto-headline", serif;
  font-weight: 100;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d4307a;
  text-decoration: none;
  display: block;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.press-item a:hover {
  opacity: 0.7;
}

/* Publishers Card */
.publishers-card {
  max-width: 680px;
  margin: 0 auto;
  background: #faf8f5;
  border-radius: 12px;
  padding: 3rem 4rem;
  text-align: center;
  font-family: "ivypresto-headline", serif;
  font-weight: 100;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #333;
}

.publishers-card p {
  margin-bottom: 1.5rem;
}

.publishers-card ul {
  list-style: none;
}

.publishers-card strong {
  font-weight: 600;
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 680px) {
  .atbs-hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-info {
    align-items: center;
  }

  .publishers-card {
    padding: 2rem 1.5rem;
  }
}
