/* ── Highlight Section ───────────────────────────────────────── */
.highlight-section {
  background-color: #F6FFF7;
  padding: 1rem 0;
}

.highlight-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-image {
  width: 25%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  margin: auto;
}

.highlight-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.highlight-title {
  display: block;
  font-size: 1.1rem;
  color: #00509e;
  margin: 0.5rem 0;
}