/* ============================================
   ABOUT / MISSION SECTION
   Brain & Mind Foundation WordPress Theme
   ============================================
   Two-column grid with image and text content,
   coral border accent, hover scale effect,
   and responsive single-column layout.
   ============================================ */

.about {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

/* ============================================
   ABOUT GRID (2 columns)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ============================================
   ABOUT IMAGE
   ============================================ */
.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.8s var(--ease-out-expo);
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Coral border accent (bottom-right) */
.about-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 50%;
  height: 50%;
  border: 2px solid var(--coral);
  border-radius: 16px;
  opacity: 0.25;
  z-index: -1;
}

/* ============================================
   ABOUT TEXT CONTENT
   ============================================ */
.about-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}
.about-heading em {
  font-style: italic;
  color: var(--coral);
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--navy);
  font-weight: 600;
}

.about-cta {
  margin-top: 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 400px;
  }

  .about-image::after {
    display: none;
  }
}
