.esvs {
  --esvs-dark:   #222222;
  --esvs-orange: #e41d56;
  --esvs-border: #e5e7eb;
  --esvs-light:  #f5f5f7;
  --esvs-muted:  #475569;
  --esvs-white:  #ffffff;
  --esvs-row-alt: #f5f5f7;

  background: var(--esvs-white);
  padding-block: clamp(48px, 6vw, 80px);
}
.esvs__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* Header — left-aligned, bold, like the reference */
.esvs__header {
  margin-bottom: clamp(24px, 3.5vw, 40px);
  max-width: 720px;
}
.esvs__heading {
  font-family: var(--smyk-font, inherit);
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--esvs-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.esvs__subtitle {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--esvs-muted);
  line-height: 1.6;
  margin: 0;
}

/* Table — outlined Hostelworld card with striped rows */
.esvs__table {
  background: var(--esvs-white);
  border: 1.5px solid var(--esvs-border);
  border-radius: 18px;
  overflow: hidden;
}
/* Horizontal-scroll wrapper — on mobile the table keeps its columns and
   swipes sideways (same pattern as the "Why choose Travinger?" table). */
.esvs__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.esvs__scroll::-webkit-scrollbar { display: none; }
.esvs__rows {
  min-width: 100%;
}
.esvs__row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 1.4fr) minmax(0, 1.4fr);
  align-items: stretch;
}
.esvs__row + .esvs__row { border-top: 1px solid var(--esvs-border); }
/* Alternate stripe — every second body row gets a soft gray fill */
.esvs__row--alt { background: var(--esvs-row-alt); }
.esvs__row--head {
  background: var(--esvs-white);
}

/* Cell */
.esvs__cell {
  padding: clamp(18px, 2vw, 26px) clamp(18px, 2.2vw, 32px);
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  color: var(--esvs-dark);
  line-height: 1.55;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
}

/* Column header row */
.esvs__row--head .esvs__cell {
  padding-block: clamp(14px, 1.6vw, 18px);
}
.esvs__col-head {
  font-family: var(--smyk-font, inherit);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--esvs-muted);
  letter-spacing: -0.005em;
}

/* Label cell (left) — icon + bold label */
.esvs__cell--label {
  gap: 14px;
  font-weight: 700;
  color: var(--esvs-dark);
}
.esvs__row-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--esvs-orange);
}
.esvs__row-icon svg { width: 22px; height: 22px; }
.esvs__row-label {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.3;
}

.esvs__cell-text {
  margin: 0;
  color: inherit;
  font-weight: 500;
}

/* Related articles list */
.esvs__related {
  margin-top: clamp(28px, 3.5vw, 44px);
  text-align: center;
}
.esvs__related-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--esvs-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.esvs__related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.esvs__related-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--smyk-font, inherit);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--esvs-orange);
  text-decoration: none;
  transition: gap .2s;
}
.esvs__related-list a:hover { gap: 10px; text-decoration: underline; text-underline-offset: 3px; }

.esvs__empty {
  text-align: center;
  color: var(--esvs-muted);
  padding: 40px 0;
}

/* ── Responsive ── */
/* On mobile the table keeps all 3 columns and becomes horizontally
   swipeable: a min-width forces overflow inside .esvs__scroll. */
@media (max-width: 760px) {
  .esvs__rows { min-width: 660px; }
  .esvs__cell { padding: 14px 16px; }
}
@media (max-width: 480px) {
  .esvs__rows { min-width: 600px; }
  .esvs__cell { padding: 13px 14px; }
  .esvs__row {
    grid-template-columns: minmax(150px, 1fr) minmax(0, 1.3fr) minmax(0, 1.3fr);
  }
}
