.gvfc {
  --gvfc-bg: #E7ECEC;
  --gvfc-card: #FFFFFF;
  --gvfc-ink: #182B2B;
  --gvfc-accent: #0F8B8D;
  --gvfc-rule: #C9D2D2;
  width: 100%;
  box-sizing: border-box;
  background: var(--gvfc-bg);
  border-radius: 4px;
  padding: 48px 64px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.gvfc-title {
  margin: 0 0 32px 50px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--gvfc-ink);
  font-weight: 400;
}

.gvfc-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gvfc-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gvfc-rule);
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gvfc-ink);
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gvfc-arrow svg { width: 16px; height: 16px; }
.gvfc-arrow:hover { background: var(--gvfc-ink); border-color: var(--gvfc-ink); color: #fff; }
.gvfc-arrow:focus-visible { outline: 2px solid var(--gvfc-accent); outline-offset: 2px; }
.gvfc-arrow:disabled { opacity: 0.35; cursor: default; }
.gvfc-arrow:disabled:hover { background: transparent; border-color: var(--gvfc-rule); color: var(--gvfc-ink); }

.gvfc-track-wrap {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.gvfc-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
}

.gvfc-track::-webkit-scrollbar { display: none; }

.gvfc-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  box-sizing: border-box;
  background: var(--gvfc-card);
  border-radius: 6px;
  padding: 24px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gvfc-card-title {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--gvfc-ink);
}

.gvfc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gvfc-accent);
  text-decoration: none;
}

.gvfc-card-link:hover { text-decoration: underline; }
.gvfc-card-link:focus-visible { outline: 2px solid var(--gvfc-accent); outline-offset: 2px; }
.gvfc-card-link svg { width: 14px; height: 14px; }

@media (prefers-reduced-motion: reduce) {
  .gvfc-track { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 700px) {
  .gvfc { padding: 32px 24px; }
  .gvfc-title { font-size: 1.4rem; margin-bottom: 20px; }
  .gvfc-card { flex-basis: 220px; padding: 20px; min-height: 130px; }
}

@media (max-width: 460px) {
  .gvfc { padding: 24px 16px; }
  .gvfc-row { gap: 8px; }
  .gvfc-arrow { width: 30px; height: 30px; }
  .gvfc-card { flex-basis: 78%; }
}
