/* Small Groups Page Styles */

/* Hero Section */
.small-groups-hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center top -40px;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
}

.small-groups-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.small-groups-hero__line {
  position: absolute;
  top: 130px;
  left: calc((100% - 1400px) / 2 + 40px + 70px);
  right: 70px;
  height: 3px;
  background: var(--color-accent);
  z-index: 3;
}

.small-groups-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 40px 40px;
}

.small-groups-hero__title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: white;
  margin: 0 0 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.small-groups-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-style: italic;
  color: white;
  margin: 0;
}

/* Content Section */
.small-groups-content {
  background: white;
  padding: 80px 0;
}

.small-groups-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.small-groups-content__intro {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: start;
}

.small-groups-content__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.small-groups-content__section-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.small-groups-content__section-heading:not(:first-child) {
  margin-top: 30px;
}

.small-groups-content__text p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-gray-900);
  margin: 0 0 15px 0;
}

.small-groups-content__text ul {
  margin: 15px 0;
  padding-left: 25px;
}

.small-groups-content__text li {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-gray-900);
  margin: 2px 0;
}

.small-groups-content__cta {
  margin-top: 30px;
}

.small-groups-content__cta .btn {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--color-secondary);
  color: white;
  padding: 15px 35px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.small-groups-content__cta .btn:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .small-groups-content__container {
    padding: 60px 20px;
  }

  .small-groups-content__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .small-groups-hero {
    min-height: 280px;
    padding-top: 80px;
    background-position: center top;
  }

  .small-groups-hero__line {
    display: none;
  }

  .small-groups-hero__content {
    padding: 0 20px 30px 20px;
  }

  .small-groups-hero__title {
    font-size: 2rem;
  }

  .small-groups-hero__subtitle {
    font-size: 1.1rem;
  }
}
