.highlight-section {
  background-color: #F6FFF7;
  padding: 2.5rem 1.5rem 3rem;
}

.highlight-section .section-heading {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #0d3d20;
  text-align: center;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  gap: 1.5rem;
  justify-content: center; 
}

.highlight-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 0; 
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.highlight-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #12572c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}

.highlight-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.highlight-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-img {
  transform: scale(1.08);
}

.highlight-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d3d20;
  display: block;
}

.highlight-url {
  font-size: 0.7rem;
  color: #6b7280;
  word-break: break-all;
  line-height: 1.3;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .highlight-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none; 
  }
  
  .highlight-grid::-webkit-scrollbar {
    display: none;
  }

  .highlight-card {
    flex: 0 0 100%; 
    scroll-snap-align: start;
  }
}