/* Grid styles for Featured Voyage Highlights */
.fv-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fv-highlight { text-align: center; }

.fv-highlight-icon { width:50px; height:50px; margin: 0 auto 12px auto; }
.fv-highlight-icon img { width:50px; height:50px; object-fit: cover; display:block; }

/* Title typography */
.fv-highlight-title {
  font-family: 'KoPub Batang', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #333333;
  margin-bottom: 8px;
}

/* Description typography */
.fv-highlight-desc {
  color: var(--e-global-color-text);
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

@media (max-width: 900px) {
  .fv-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fv-highlights-grid { grid-template-columns: 1fr; }
}
