/* Container to center & constrain content */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* banner with clipped V-bottom */
.about-banner {
  position: relative;
  height: 60vh;  /* adjust as desired */
    background: 
    url("../img/about.webp") 
    no-repeat 
    fixed 
    center 100% 
    / cover;

  clip-path: polygon(
    0 0,      /* top‐left */
    100% 0,   /* top‐right */
    100% 85%, /* right, 85% down */
    50% 100%, /* bottom center */
    0 85%     /* left, 85% down */
  );
  display: flex;
  align-items: center;
  background-attachment: scroll;
}

.about-banner::before {
  /* …same as above… */
  border-top: none;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

.about-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Two-column layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 80px 0;
}
.callout h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.btn:hover {
  background: #333;
}

.text-block p {
  margin-bottom: 1.2em;
}

/* Responsive: stack on small screens */
@media (max-width: 800px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .callout {
    text-align: center;
    margin-bottom: 40px;
  }
}