/* =========================
   ABOUT US PAGE
========================= */

  body {
    font-family: 'Epilogue', sans-serif;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .btn,
  .nav-link {
    font-family: 'Epilogue', sans-serif;
  }


/* Legacy — hero handled by ss-inner-hero in pages.css */

.ss-about-hero {
     position: relative;
    min-height: 235px;
    margin-top: 115px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ss-about-hero::before,
.ss-account-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../imgs/about/about-banner.png') center center / cover no-repeat;
  z-index: 0;

}

.ss-about-hero__content {
  /* padding-top: 77px; */
  color: #fff;
  max-width: 420px;
}

.ss-about-hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

/* About Intro Section */
.about-intro-section {
  background: #EBE6E6;
  padding-bottom: 77px;

}

.about-intro-top {
  padding: 64px 0 22px;
}

.about-intro-top h2 {

  font-size: clamp(32px, 4vw, 45px);
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin: 0;
  padding: 0 70px;
}

/* Philosophy Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.philosophy-col {
  padding: 48px 32px 64px;
  border: 1px solid rgba(40, 14, 16, 0.12);
  border-bottom: none;
  border-top: none;
}

.philosophy-row {
  position: relative;
  padding: 0 70px;
}

.philosophy-row::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(40, 14, 16, 0.12);
  top: 0;
  left: 0;
}

.philosophy-row::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(40, 14, 16, 0.12);
  bottom: 0;
  left: 0;
}

.philosophy-col:nth-child(2) {
  padding-left: 32px;
}

.philosophy-col h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #111;
}

.philosophy-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}



@media (max-width: 1200px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-col,
  .philosophy-col:nth-child(2),
  .philosophy-col:last-child {
    padding: 32px;
    border-bottom: 1px solid rgba(40, 14, 16, 0.12);
  }

  .philosophy-col:last-child {
    border-bottom: none;
  }

}



@media (max-width:767px) {
  .philosophy-row {

    padding: 0 24px;
  }


  .about-intro-top h2 {
    padding: 0 24px;
  }

  .ss-about-hero::before{
    background-image: url(../imgs/about/about-banner-mobile.png);
  }
}

/* About Director Section */
.about-director {
  background: #fff;
  padding: 77px;
}

.director-card {
  max-width: 1000px;
  margin: 0 auto;
}

.director-img {
  width: 100%;

  object-fit: cover;

}

.director-info {
  padding-left: 32px;
}

.director-info h2 {
  /* font-family: "Playfair Display", serif; */
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.director-info span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  /* font-style: italic; */
  color: #666;
  margin-bottom: 24px;
}

.director-info p {
  font-size: 13px;
  line-height: 1.7;
  color: #767676;
  margin-bottom: 16px;
}

@media (max-width: 991.98px) {
  .director-info {
    padding-left: 0;
    padding-top: 32px;
  }
}

@media (max-width:767px) {
  .about-director {
    padding: 40px 24px;
  }

}

/* About Team Section */
.about-team {
  background: #EBE6E6;
  padding: 77px;
}

.section-title {
  /* font-family: "Playfair Display", serif; */
  font-size: 38px;
  font-weight: 700;
  color: #111;
}



.team-image {
  height: 100%;
  width: 100%;
}

.team-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.team-card__cover {
  padding: 0;
  margin-bottom: 8px;
  height: 400px;
}

.team-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.team-card__body p {
  color: #404040;
  font-size: 15px;
  margin: 0;
  margin-bottom: 5px;
}

.team-card__body span {
  color: #767676;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.team-card__body p,
.team-card__body .team-email span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 1199.98px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 991.98px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width:767px) {
  .about-team {

    padding: 40px 24px;
  }
}

@media (max-width: 575.98px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}