/* ════════════ ABOUT HERO ════════════ */
.about-hero {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: -15px; 
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,55,22,.80) 40%, rgba(10,55,22,.50));
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}

.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.about-breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color .2s;
}

.about-breadcrumb a:hover {
  color: #fff;
}

.about-breadcrumb-sep {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
}

.about-breadcrumb-current {
  color: #fff;
  font-weight: 500;
}

/* ════════════ ABOUT TEXT SECTION ════════════ */
.about-text-section {
  background: #fff;
  padding: 20px 0 60px;
}

.about-text {
  font-size: 14.5px;
  color: #444;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .about-hero {
    min-height: 40vh;
  }
}

@media (max-width: 767px) {
  .about-hero {
    min-height: 30vh;
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .about-hero-content {
    padding: 1.5rem 0;
  }
  .about-breadcrumb {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    min-height: 25vh;
  }
}