/* ============================================
   ABOUT.CSS — About Us page
   ============================================ */

main {
  padding-top: var(--header-height);
}

/* ---------- ABOUT INTRO ---------- */
.about-intro {
  padding: 100px 0;
  background: var(--bg-2);
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro__copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.about-intro__copy p {
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-intro__visual {
  position: relative;
  height: 460px;
}

.about-intro__dots {
  position: absolute;
  top: 6%;
  left: 4%;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(var(--teal) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.35;
  z-index: 0;
}

.about-intro__img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  border: 6px solid var(--bg-card);
}

.about-intro__img--back {
  top: 0;
  right: 0;
  width: 68%;
  height: 62%;
  z-index: 1;
}

.about-intro__img--front {
  bottom: 0;
  left: 0;
  width: 62%;
  height: 56%;
  z-index: 2;
}

.about-intro__img:hover {
  box-shadow: 0 20px 44px rgba(14, 159, 110, 0.18), var(--shadow-lg);
  border-color: rgba(14, 159, 110, 0.3);
}

@media (max-width: 880px) {
  .about-intro__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-intro__visual {
    height: 340px;
    order: -1;
  }
}

/* ---------- ORGANISATION OVERVIEW ---------- */
.org-overview {
  background: var(--bg-2);
  padding: 90px 0;
}

.org-overview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.org-overview__copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.8vw, 2.7rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.org-overview__copy p {
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 460px;
}

.org-overview__points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.org-point {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}

.org-point:hover {
  background: var(--bg-card);
  border-color: var(--card-bd);
  box-shadow: var(--shadow-lg);
}

.org-point__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(14, 159, 110, 0.09);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-point__text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.org-point__text p {
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (max-width: 880px) {
  .org-overview__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}