/* =============================================
   SABINE TECHNOLOGY — about.css
   Page-specific styles for the About page
   ============================================= */

/* ---- Override header to be slightly smaller/flatter for about page ---- */
.about-header {
  background: var(--purple-deep);
}

/* ===== ABOUT MAIN BODY ===== */
.about-main {
  background: #0f1f3d;
  min-height: 80vh;
  padding: 60px 0 80px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ===== ROW WITH IMAGE (first block) ===== */
.about-row--with-image {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
  margin-bottom: 36px;
}

/* ===== TEXT-ONLY ROWS ===== */
.about-row--text-only {
  display: grid;
  /* Text occupies same left column width as above, right is empty */
  grid-template-columns: 1fr 420px;
  gap: 60px;
}

/* ===== ABOUT TEXT ===== */
.about-text p {
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 28px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ===== ABOUT IMAGE ===== */
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-container {
    padding: 0 24px;
  }

  .about-row--with-image,
  .about-row--text-only {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-image img {
    width: 100%;
  }
}