/* =========================================================
   PAGE LAYOUT
   ========================================================= */
.page-about .about-content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

/* =========================================================
	 HERO / HEADER
	 ========================================================= */
.page-about .about-hero {
  margin-bottom: 2rem;
	color: var(--primary);
	background: rgba(0, 128, 55, 0.68);

	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.page-about .about-hero .about-hero-container {
	display: grid;
	grid-template-columns: 2fr 3fr;
	align-items: center;
	gap: 2rem;
}

.page-about .about-hero-right h1 {
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
	color: #ffffff;
}

.page-about .about-hero-left img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* =========================================================
	 Main Content
	 ========================================================= */
.page-about .about-body {
	max-width: 1100px;
	margin: 0 auto;
	padding: 1.5rem;
}

.page-about .about-body h2 {
	color: var(--primary);
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.page-about .about-body p {
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 1rem;
}
	 
/* ===========================
   ABOUT: MOBILE OVERRIDES
   =========================== */

@media (max-width: 700px) {

  /* Stack hero grid — hide image to keep focus on text on small screens */
  .page-about .about-hero .about-hero-container {
    grid-template-columns: 1fr;
  }

  .page-about .about-hero-left {
    display: none;
  }

  /* Tighten content padding */
  .page-about .about-body {
    padding: 1rem;
  }
}