  :root {
  --primary: #a8e6cf;
  --secondary: #dcedc1;
  --foreground: #1b5e20;
  --text-primary: #000000;
  --text-secondary: #444444;
  --highlight-bg: #f8fff4;
}

.hero-section {
  min-height: 100vh;
  flex: 1;
  width: 100%;
  padding: 4rem;
}

.hero-section .hero {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-section .hero > div:first-child {
  flex: 1 1 520px;
}
.hero-section .hero h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  color: var(--foreground);
}
.hero-section .hero p {
  margin: 0;
  color: var(--text-secondary);
}

.hero-section .detail {
  display: flex;
}

.hero-section .detail p {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}

.hero-section .detail img {
  width: 200px;
  object-fit: cover;
}

.focus {
  min-width: 220px;
  max-width: 360px;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.focus h2 {
  margin-bottom: 8px;
  color: var(--foreground);
}
.focus ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
}

/* Card */
.card-1,
.card {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  color: var(--text-secondary);
  padding: 1rem;
}
.card-1 h2 {
  color: var(--foreground);
  margin-top: 0;
}

/* Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 2rem;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--foreground);
}

.card p {
  margin: 0;
  color: var(--text-secondary);
}

/* Members / Anggota */
.members-section {
  width: 100%;
  min-height: 100vh;
  padding: 2rem 4rem;
}

.members-section .card p.title {
  color: var(--foreground);
}

.members-section h2 {
  margin: 0 0 6px;
  color: var(--foreground);
}

.members-section .muted a {
  color: var(--text-secondary);
}

.members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.member {
  border-radius: 10px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 5);
  max-width: 300px;
}
.member:hover {
  transform: translateY(-6px);
}
.member img {
  border-radius: 6px 6px 0 0;
  border: none;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}
.member h4 {
  margin: 6px 0 4px;
  font-size: 16px;
  color: var(--foreground);
}

.member p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.members-section .card {
  background: var(--highlight-bg);
  border-left: 4px solid var(--primary);
  padding: 1.2rem 1.5rem;
  margin: 4rem 1rem 0 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Sumber daya & tautan */
.card a {
  color: var(--foreground);
  text-decoration: none;
}
.card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 720px) {
  .hero-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section .detail {
    display: flex;
    flex-direction: column;
  }

  .hero-section .detail img {
    width: 300px;
    align-self: center;
  }

  .hero-section .detail p {
    text-align: left;
    font-size: 16px;
  }

  .card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 2rem;
  }

  .hero-section .hero {
    display: flex;
    gap: 2rem;
    margin-bottom: 12px;
  }

  .focus {
    margin-bottom: 12px;
  }

  .members-section {
    width: 100%;
    min-height: 100vh;
    padding: 2rem 1rem;
  }

  .member {
    margin-bottom: 12px;
  }

  span.mobile {
    display: none;
  }


}
