.initiatives-section {
  background-color: #f9f9f9;
  padding: 96px 0;
}

.initiatives-title {
  font-size: 2.25rem;
  color: #181c20;
  font-weight: 700;
  line-height: 125%;
}

.initiatives-desc {
  font-size: 1rem;
  color: #3e4a3c;
  line-height: 150%;
}

/* ===== SCROLL BUTTONS ===== */
.scroll-btn-container {
  gap: 32px;
}
.scroll-btn {
  width: 32px;
  height: 32px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  border: none;
}

.scroll-btn.right {
  rotate: 180deg;
}

.scroll-btn.scroll-btn-disabled {
  opacity: 0.5;
  cursor: default;
}

/* ===== SCROLLABLE ROW ===== */
.initiatives-scroll-wrapper {
  overflow: hidden; /* Hides scrollbar */
  position: relative;
}

.initiatives-cards-row {
  display: flex;
  gap: 32px;
  overflow-x: auto; /* Enables horizontal scroll */
  scroll-behavior: smooth; /* Smooth scrolling */
  padding-bottom: 12px;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
}

/* Hide scrollbar Chrome/Safari */
.initiatives-cards-row::-webkit-scrollbar {
  display: none;
}

/* ===== INITIATIVE CARD ===== */
.initiative-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  min-width: 370px; /* Card fixed width */
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex-shrink: 0; /* Prevents cards from shrinking */
  transition: box-shadow 0.2s ease;
  border: 1px solid #e5e5e5;
  position: relative;
}

.initiative-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ===== CARD IMAGE ===== */
.initiative-img-wrapper {
  position: relative;
  flex-shrink: 0;
}

.initiative-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== LIVE BADGE ===== */
.live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #ebf3ee;
  color: #1a7c3e;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  font-family: "Inter", sans-serif;
  font-weight: normal;
  line-height: 100%;
}

.live-dot {
  width: 7px;
  height: 7px;
  background-color: #1a7c3e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite; /* Pulsing green dot */
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== CARD TEXT ===== */
.initiative-body {
  flex: 1;
}

.initiative-category {
  font-size: 0.875rem;
  font-weight: 700;
  color: #006e25;
  display: block;
  line-height: 140%;
}

.initiative-name {
  font-size: 1rem;
  color: #181c20;
  line-height: 100%;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.initiative-summary {
  font-size: 0.875rem;
  color: #3e4a3c;
  line-height: 100%;
  font-family: "Inter", sans-serif;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .initiatives-section {
    padding: 56px 0;
  }

  .initiatives-title {
    font-size: 1.4rem;
  }

  .initiative-card {
    min-width: 260px;
    max-width: 100%;
  }

  .initiative-img {
    width: 75px;
    height: 75px;
  }

  .scroll-btn-container {
    gap: 16px;
  }
}
