/* Vibe Tampa - repeating category section */

.vt-category-section {
  padding: 40px 24px;
}

.vt-category-section:nth-of-type(even) {
  background-color: var(--vt-cream-alt);
}

.vt-category-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vt-category-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.vt-category-section__title {
  color: var(--vt-cat-color, var(--vt-teal-deep));
  font-size: 1.5rem;
  margin: 0;
}

.vt-category-section:nth-of-type(8n+1) .vt-category-section__title { --vt-cat-color: var(--vt-coral-deep); }
.vt-category-section:nth-of-type(8n+2) .vt-category-section__title { --vt-cat-color: var(--vt-pink-deep); }
.vt-category-section:nth-of-type(8n+3) .vt-category-section__title { --vt-cat-color: var(--vt-teal-deep); }
.vt-category-section:nth-of-type(8n+4) .vt-category-section__title { --vt-cat-color: var(--vt-purple); }
.vt-category-section:nth-of-type(8n+5) .vt-category-section__title { --vt-cat-color: #B8860B; }
.vt-category-section:nth-of-type(8n+6) .vt-category-section__title { --vt-cat-color: var(--vt-pink-deep); }
.vt-category-section:nth-of-type(8n+7) .vt-category-section__title { --vt-cat-color: var(--vt-coral-deep); }
.vt-category-section:nth-of-type(8n+8) .vt-category-section__title { --vt-cat-color: var(--vt-teal-deep); }

.vt-view-more {
  font-family: var(--vt-font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vt-coral-deep);
  text-decoration: none;
  white-space: nowrap;
}

.vt-view-more:hover {
  text-decoration: underline;
}

.vt-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vt-category-section__empty {
  color: var(--vt-ink-soft);
  font-style: italic;
}

@media (max-width: 960px) {
  .vt-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .vt-card-grid {
    grid-template-columns: 1fr;
  }
}
