@charset "UTF-8";
/* ==========================================================================
   NSW Book Publishers — About Us
   Ported from australianbookpublishinghouse.com/about. Bootstrap grid
   reproduced by hand: 1320 container at 15px, .row at -15px, two 50% columns.
   ========================================================================== */

.padding-90 { padding: 90px 0; }

/* 1290 + the row's -15px margins gives two true 645px columns. */
.about-container {
  width: 100%;
  max-width: 1290px;
  margin-inline: auto;
  padding-inline: 15px;
}
.about-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-inline: -15px;
}
.about-col { width: 50%; padding-inline: 15px; min-width: 0; }

/* Media left, text right. */
.about-block--flip .about-col--text  { order: 2; }
.about-block--flip .about-col--media { order: 1; }

.about-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-500);
}

.about-h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 8px;
}
/* The reference runs two heading sizes: 30/40 on the intro, 41/55 elsewhere. */
.about-h2--sm { font-size: var(--fs-h3); line-height: 1.34; margin-bottom: 0; }
.about-h2--lg { font-size: var(--fs-h2); line-height: 1.34; letter-spacing: -.03em; }

.about-copy p {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 31px;
  color: var(--ink-body);
  margin: 0 0 16px;
}

.about-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 30px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  line-height: 1.6;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.about-btn--fill {
  background: var(--navy-700);
  border: 1px solid var(--navy-700);
  color: #fff;
}
.about-btn--fill:hover { background: var(--navy-800); border-color: var(--navy-800); transform: translateY(-2px); }
.about-btn--ghost {
  background: transparent;
  border: 1px solid var(--navy-700);
  color: var(--navy-700);
}
.about-btn--ghost:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }

.about-img { display: block; width: 100%; height: auto; }
.about-col--media .art-placeholder { width: 100%; }

/* --- Promise band --------------------------------------------------------- */
.about-counter {
  background: linear-gradient(230deg, var(--red-grad-a) 30%, var(--red-grad-b) 100%);
}
/* -15px to match the other rows, so each column is a true third of 1290. */
.about-counter__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-inline: -15px;
}
.about-counter__tab { text-align: center; padding-inline: 15px; }
.about-counter__tab h5 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 8px;
}
.about-counter__tab p {
  font-family: var(--font-sans);
  font-size: var(--fs-h5);
  line-height: 24px;
  color: #fff;
  margin: 0;
}

/* --- Reused sections ------------------------------------------------------ */
/* The testimonials carousel and the FAQ + enquiry block come from the homepage
   components; only their band spacing changes here. This stylesheet loads on
   the About page alone, so the bare selector is safe. */
.testimonials { padding: 60px 0 70px; }

@media (max-width: 991px) {
  .padding-90 { padding: 64px 0; }
  .about-col { width: 100%; }
  .about-col--text  { order: 1 !important; margin-bottom: 32px; }
  .about-col--media { order: 2 !important; }
  .about-counter__row { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 575px) {
  .about-actions { flex-direction: column; align-items: stretch; }
  .about-btn { width: 100%; }
}
