/* SDG Section */
.sdg-section {
  background: #fafafa;
}

/* Banner */
.sdg-banner {
  background-size: cover;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #eee;
}

.banner-title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

/* Container */
.sdg-container {
  max-width: 65rem;
  margin: 2rem auto;
  padding: 4rem 2rem;
}

.sdg-h1-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sdg-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.sdg-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.2rem;
}

.sdg-description b {
  color: var(--primary-color);
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.sdg-card {
  padding: 1.2rem;
  border-radius: 10px;
  color: black;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}
.sdg-card p {
  color: #444;
}

/* SDG Colors */
.sdg8 {
  border: 5px solid #a21942;
}
.sdg9 {
  border: 5px solid #fd6925;
}
.sdg12 {
  border: 5px solid #bf8b2e;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-title {
    font-size: 1.4rem;
  }
  .sdg-description {
    font-size: 1rem;
  }
}
