.about_section,
.team_section,
.community_section {
  position: relative;
  background: linear-gradient(145deg, #f8f9ff 0%, #fff 55%, #f4f7ff 100%);
}

.team_section {
  background: linear-gradient(160deg, #ffffff 0%, #f3f5ff 45%, #ffffff 100%);
}

.community_section {
  background: linear-gradient(180deg, #f4f6ff 0%, #ffffff 100%);
}

.section-intro .eyebrow {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b6205b;
}

.section-intro .eyebrow::before,
.section-intro .eyebrow::after {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
  margin: 0 0.75rem;
  opacity: 0.4;
}

.section-intro h2,
.section-intro h3 {
  font-weight: 800;
  letter-spacing: 0.12rem;
}

.section-intro .divider {
  margin-top: 1.5rem;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #b6205b 0%, #ff7a4d 100%);
}

.about_section .about-image-box {
  border: 1px solid rgba(182, 32, 91, 0.15);
  background: radial-gradient(circle at top left, rgba(255, 122, 77, 0.12), transparent 60%);
}

.about_section .image-accent {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 122, 77, 0.35);
  border-radius: 1.5rem;
  pointer-events: none;
}

.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, rgba(182, 32, 91, 0.9), rgba(255, 122, 77, 0.9));
  border-radius: 999px;
}

.master-instructor {
  border: 1px solid rgba(182, 32, 91, 0.12);
}

.master-instructor .profile-visual img {
  transition: transform 0.6s ease;
}

.master-instructor:hover .profile-visual img {
  transform: scale(1.04);
}

.master-meta li + li {
  margin-top: 0.75rem;
}

.master-meta blockquote {
  padding-left: 1rem;
  border-left: 3px solid rgba(182, 32, 91, 0.4);
  font-style: italic;
  color: #c02f6c;
}

.instructor-card {
  border: 1px solid rgba(182, 32, 91, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  margin-bottom: 4px;
}

.instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 55px -25px rgba(25, 28, 90, 0.25);
}

.instructor-card .card-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 122, 77, 0.08), transparent 60%);
  pointer-events: none;
}

.instructor-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.08);
  transition: transform 0.5s ease;
}

.instructor-card:hover img {
  transform: scale(1.05);
}

.community_section .card-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom center, rgba(182, 32, 91, 0.08), transparent 65%);
  pointer-events: none;
}

.shape {
  position: absolute;
  display: block;
  background: rgba(182, 32, 91, 0.12);
  border-radius: 999px;
  filter: blur(0);
  z-index: 0;
}

.shape-one {
  width: 260px;
  height: 260px;
  top: -120px;
  right: -60px;
  background: rgba(182, 32, 91, 0.18);
}

.shape-two {
  width: 180px;
  height: 180px;
  bottom: -90px;
  left: -30px;
  background: rgba(255, 122, 77, 0.18);
}

.shape-three {
  width: 140px;
  height: 140px;
  top: 40%;
  left: 35%;
  background: rgba(25, 28, 90, 0.12);
}

.shape-four {
  width: 320px;
  height: 320px;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(25, 28, 90, 0.15);
}

.shape-five {
  width: 200px;
  height: 200px;
  bottom: -120px;
  right: 40px;
  background: rgba(255, 122, 77, 0.18);
}

.shape-six {
  width: 280px;
  height: 280px;
  top: -180px;
  right: -120px;
  background: rgba(182, 32, 91, 0.12);
}
.about-logo {
  max-width: 220px;
  width: 100%;
  display: inline-block;
}

.glow-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 122, 77, 0.35), transparent 65%);
  top: -90px;
  left: -60px;
  z-index: 0;
}

.profile-visual {
  z-index: 1;
}

.profile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 63, 0.15), rgba(20, 22, 63, 0));
  mix-blend-mode: multiply;
  pointer-events: none;
}

@media (max-width: 992px) {
  .section-intro .eyebrow::before,
  .section-intro .eyebrow::after {
    display: none;
  }

  .shape {
    opacity: 0.35;
  }
}

@media (max-width: 576px) {
  .about_section,
  .team_section,
  .community_section {
    padding-block: 3rem;
  }

  .master-instructor,
  .instructor-card {
    padding: 1.75rem;
  }

  .section-intro h2,
  .section-intro h3 {
    letter-spacing: 0.08rem;
  }
}