/* ABOUT PAGE ONLY – TYPOGRAPHY ALIGNED WITH GLOBAL */

/* ================= HERO ================= */
.about-hero {
  background: #0a5c3d;
  color: #ffffff;
  padding: 60px 20px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.about-hero-inner {
  max-width: 1000px;
  margin: auto;
}

.about-hero h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-hero p {
  font-size: 16px;
  font-weight: 400;
  color: #e3f4ec;
  max-width: 800px;
  line-height: 1.7;
}

/* ================= ORG DETAILS ================= */
.org-details {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.org-details h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ================= GRID ================= */
.org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ================= CARD ================= */
.org-card {
  background: #ffffff;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.org-card .label,
.org-text .label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin-bottom: 6px;
}

.org-card p,
.org-text p {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

/* ================= ICON ================= */
.org-icon {
  width: 40px;
  height: 40px;
  background: #e9fbf3;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.org-icon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  max-width: 900px;
  margin: 35px auto;
  padding: 0 20px;
}

.about-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
}

/* ================= HOVER EFFECTS ================= */
.org-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  border-color: #dfe7e3;
  background-color: #fbfefe;
}

.org-card:hover .org-icon {
  background-color: #dff6ec;
  transform: scale(1.08);
}

.org-card:hover .org-icon svg {
  transform: rotate(-6deg);
}

.org-card:hover .org-text p {
  color: #222;
}

/* ================= SECTION UNDERLINE ================= */
.about-section h3,
.org-details h3 {
  position: relative;
}

.about-section h3::after,
.org-details h3::after {
  content: "";
  width: 0;
  height: 2px;
  background: #065f46;
  display: block;
  margin-top: 6px;
  transition: width 0.35s ease;
}

.about-section:hover h3::after,
.org-details:hover h3::after {
  width: 40px;
}

/* ================= MOBILE SAFE ================= */
@media (max-width: 768px) {
  .about-hero h2 {
    font-size: 26px;
  }

  .org-card:hover {
    transform: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  }
}

/* ================= FORCE WHITE HERO TEXT ================= */
.about-hero h2,
.about-hero p,
.about-hero span,
.about-hero small {
  color: #ffffff !important;
}
