/* ─────────────────────────────────────────────
   WHV CALENDAR & HUB — whv-calendar.css
   Página: calendar.html  |  data-page="calendar"
   ───────────────────────────────────────────── */

/* Variables locales */
.whv-hub {
  --cal-green:    #16a34a;
  --cal-green-bg: rgba(22, 163, 74, 0.1);
  --cal-yellow:   #d97706;
  --cal-yellow-bg:rgba(217, 119, 6, 0.1);
  --cal-red:      #dc2626;
  --cal-red-bg:   rgba(220, 38, 38, 0.1);
  --cal-today-bg: rgba(233, 69, 96, 0.08);
  --cal-today-border: rgba(233, 69, 96, 0.35);
  --hub-surface:  var(--card, #182645);
  --hub-border:   var(--border, #1f2744);
  --hub-border-strong: rgba(248, 79, 118, 0.28);
  --hub-muted:    var(--text-muted, #b9bdc1);
  --hub-text:     var(--text, #ffffff);
}

/* ─── LAYOUT HUB ─────────────────────────────── */

.whv-hub {
  display: grid;
  gap: 1.75rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Intro */
.whv-hub-intro {
  display: grid;
  gap: 0.6rem;
  justify-items: center;
  text-align: center;
}

#view-visas .whv-hub-intro .page-title,
#view-visas .whv-hub-intro .page-subtitle {
  color: #172033;
}

#view-visas .whv-hub-intro .page-subtitle {
  text-align: center;
}

/* ─── FILTROS ─────────────────────────────────── */

.whv-hub-filters {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  padding: 1.2rem;
  background: #191f38;
  border: 1px solid var(--hub-border);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-elevated);
  -webkit-backdrop-filter: blur(var(--panel-blur));
  backdrop-filter: blur(var(--panel-blur));
}

.whv-hub-filter-col {
  display: grid;
  gap: 0.42rem;
}

.whv-filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hub-muted);
}

.whv-age-range-hint {
  font-size: 0.75rem;
  color: var(--accent, #e94560);
  font-weight: 500;
  line-height: 1.3;
}

/* View toggle */
.whv-view-toggle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
  width: 100%;
  padding: 3px;
  border: 1px solid var(--border, #334155);
  border-radius: 10px;
  background: var(--card2, #263348);
  box-shadow: none;
}

.whv-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--control-transition);
  white-space: nowrap;
}

.whv-view-btn:hover,
.whv-view-btn:focus-visible {
  background: var(--card, #182645);
  color: var(--text, #fff);
  border-color: var(--accent, #f84f76);
}

.whv-view-btn.is-active {
  background: var(--card2, #263348);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* ─── LEYENDA ─────────────────────────────────── */

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--hub-muted);
  font-weight: 600;
}

/* Dot base (usado en leyenda y lista) */
.cal-dot {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.cal-dot--green  { background: var(--cal-green); }
.cal-dot--yellow { background: var(--cal-yellow); }
.cal-dot--red    { background: var(--cal-red); }

/* ─── ESTADO VACÍO ────────────────────────────── */

.whv-empty-state {
  padding: 1.1rem 1.2rem;
  border: 1px dashed var(--hub-border-strong);
  border-radius: 0.85rem;
  background: var(--card, #182645);
  color: var(--hub-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.whv-empty-state p {
  margin: 0;
}

.whv-empty-state p + p {
  margin-top: 0.4rem;
  font-size: 0.84rem;
  opacity: 0.8;
}

/* ─── SECCIÓN CALENDARIO ─────────────────────── */

.whv-cal-section {
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-elevated);
  -webkit-backdrop-filter: blur(var(--panel-blur));
  backdrop-filter: blur(var(--panel-blur));
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

/* ─── MONTH VIEW ──────────────────────────────── */

.cal-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cal-month-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hub-text);
}

.cal-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--hub-border);
  border-radius: 0.55rem;
  background: transparent;
  color: var(--hub-text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.cal-nav-btn:hover {
  background: rgba(233, 69, 96, 0.08);
  border-color: var(--cal-today-border);
}

/* Grid 7 columnas */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}

.cal-grid-header {
  padding: 0.45rem 0.3rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hub-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cal-cell {
  min-height: 4.2rem;
  padding: 0.35rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.25rem;
  transition: background 0.12s;
}

.cal-cell--blank {
  min-height: 0;
}

.cal-cell--today {
  background: var(--cal-today-bg);
  border-color: var(--cal-today-border);
}

.cal-cell--events {
  cursor: default;
}

.cal-day-num {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hub-muted);
  line-height: 1;
}

.cal-day-num--today {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
}

.cal-day-chips {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Event chip en calendario mensual */
.cal-chip {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  padding: 0.2rem 0.35rem;
  border: 0;
  border-radius: 0.28rem;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
  transition: filter 0.12s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cal-chip:hover {
  filter: brightness(0.9);
}

.cal-chip-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cal-chip.cal-ev--green  { background: var(--cal-green-bg);  color: var(--cal-green);  }
.cal-chip.cal-ev--yellow { background: var(--cal-yellow-bg); color: var(--cal-yellow); }
.cal-chip.cal-ev--red    { background: var(--cal-red-bg);    color: var(--cal-red);    }

/* ─── LIST VIEW ───────────────────────────────── */

.cal-list-group {
  display: grid;
  gap: 0.45rem;
}

.cal-list-group + .cal-list-group {
  margin-top: 1.25rem;
}

.cal-list-group-title {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--hub-muted);
}

.cal-list-group--past .cal-list-group-title {
  opacity: 0.7;
}

.cal-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hub-border);
  border-radius: 0.75rem;
  background: var(--card2, #1e2f52);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.cal-list-item:hover {
  border-color: var(--accent, #f84f76);
  background: var(--card, #182645);
}

.cal-list-item--past {
  opacity: 0.6;
}

.cal-list-flag {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.cal-list-body {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 0.15rem;
}

.cal-list-body strong {
  display: block;
  color: var(--hub-text);
  font-size: 0.95rem;
}

.cal-list-body span {
  color: var(--hub-muted);
  font-size: 0.82rem;
}

.cal-list-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--hub-text);
  white-space: nowrap;
  flex-shrink: 0;
}

.cal-list-arrow {
  color: var(--hub-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cal-empty-state {
  display: grid;
  gap: 0.5rem;
  padding: 1.2rem;
  text-align: center;
  color: var(--hub-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cal-empty-state p {
  margin: 0;
}

.cal-empty-hint {
  font-size: 0.84rem;
  opacity: 0.8;
}

/* ─── SEPARADOR ───────────────────────────────── */

.whv-divider {
  border: 0;
  border-top: 1px solid var(--hub-border);
}

/* ─── HUB SELECTOR DE PAÍS ────────────────────── */

.whv-country-hub {
  display: grid;
  gap: 1rem;
}

.whv-hub-section-title {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--hub-text);
  line-height: 1.1;
}

.whv-hub-section-subtitle {
  margin: -0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--hub-muted);
}

.whv-country-select-wrap {
  display: grid;
  gap: 0.42rem;
}

.whv-country-select {
  max-width: 28rem;
}

.whv-select-hint {
  margin: 0;
  color: var(--hub-muted);
  font-size: 0.9rem;
}

/* ─── PANEL DE PAÍS ───────────────────────────── */

.whv-panel-animate {
  animation: panelFadeIn 0.22s ease;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.whv-panel {
  display: grid;
  gap: 1.15rem;
  padding: 1.4rem;
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-elevated);
  -webkit-backdrop-filter: blur(var(--panel-blur));
  backdrop-filter: blur(var(--panel-blur));
}

/* Header del panel */
.whv-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.whv-panel-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.whv-panel-flag {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.whv-panel-country {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hub-text);
  line-height: 1.15;
}

.whv-panel-visa-name {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.84rem;
  color: var(--hub-muted);
}

.whv-panel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: flex-start;
}

/* Badges de alertas especiales */
.whv-panel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.whv-panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(233, 69, 96, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Metadata grid */
.whv-panel-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  gap: 0.6rem 1rem;
  margin: 0;
  padding: 1rem;
  background: var(--card2, #1e2f52);
  border-radius: 0.85rem;
}

.whv-panel-meta-row {
  display: grid;
  gap: 0.18rem;
}

.whv-panel-meta-row dt {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--hub-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.whv-panel-meta-row dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--hub-text);
}

/* Texto de detalle */
.whv-panel-detail {
  margin: 0;
  font-size: 0.9rem;
  color: var(--hub-muted);
  line-height: 1.6;
}

/* Requisitos */
.whv-panel-reqs {
  display: grid;
  gap: 0.55rem;
}

.whv-panel-reqs-title {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hub-text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Acciones */
.whv-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Guías y artículos */
.whv-guide-section {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border, #1f2744);
}

.whv-guide-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.75rem;
}

.whv-guide-title {
  margin: 0;
  font-size: 1rem;
  color: var(--text, #fff);
}

.whv-guide-copy {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted, #b9bdc1);
  line-height: 1.55;
}

.whv-guide-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.85rem;
}

.whv-guide-link {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border, #1f2744);
  border-radius: 1rem;
  background: var(--card2, #1e2f52);
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.whv-guide-link:hover,
.whv-guide-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent, #f84f76);
  background: var(--card, #182645);
}

.whv-guide-link strong {
  font-size: 0.95rem;
  color: var(--text, #fff);
}

.whv-guide-link span:last-child {
  font-size: 0.84rem;
  color: var(--text-muted, #b9bdc1);
  line-height: 1.5;
}

.whv-guide-link.is-active {
  border-color: var(--accent, #f84f76);
  background: rgba(248, 79, 118, 0.12);
  box-shadow: inset 0 0 0 1px rgba(248, 79, 118, 0.16);
}

.whv-guide-link-type,
.whv-guide-article-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(248, 79, 118, 0.12);
  color: var(--accent2, #e56a86);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.whv-guide-article {
  display: grid;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1.1rem;
  background: var(--card, #182645);
  border: 1px solid var(--border, #1f2744);
}

.whv-guide-article-head {
  display: grid;
  gap: 0.45rem;
}

.whv-guide-article-head h5 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text, #fff);
}

.whv-guide-article-head p {
  margin: 0;
  color: var(--text-muted, #b9bdc1);
  line-height: 1.6;
}

.whv-guide-article-body {
  display: grid;
  gap: 0.85rem;
}

.whv-guide-text,
.whv-guide-list,
.whv-guide-steps {
  margin: 0;
  color: var(--text, #fff);
  line-height: 1.7;
}

.whv-guide-list,
.whv-guide-steps {
  padding-left: 1.1rem;
}

.whv-guide-list li + li,
.whv-guide-steps li + li {
  margin-top: 0.45rem;
}

.whv-guide-source {
  width: fit-content;
  color: var(--accent, #f84f76);
  font-weight: 700;
  text-decoration: none;
}

.whv-guide-source:hover,
.whv-guide-source:focus-visible {
  text-decoration: underline;
}

/* ─── RESPONSIVE ──────────────────────────────── */

@media (max-width: 760px) {
  .whv-hub-filters {
    grid-template-columns: 1fr 1fr;
  }

  .whv-hub-filter-col:last-child {
    grid-column: 1 / -1;
  }

  .cal-chip-label {
    display: none;
  }

  .cal-cell {
    min-height: 3rem;
  }

  .whv-panel-meta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .whv-hub-filters {
    grid-template-columns: 1fr;
  }

  .whv-hub-filter-col:last-child {
    grid-column: auto;
  }

  .cal-grid-header,
  .cal-day-num {
    font-size: 0.7rem;
  }

  .cal-cell {
    min-height: 2.5rem;
    padding: 0.25rem;
  }

  .whv-panel-head {
    flex-direction: column;
  }

  .whv-panel-actions {
    flex-direction: column;
  }

  .whv-panel-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .whv-guide-links {
    grid-template-columns: 1fr;
  }
}

/* ─── PAGE SHELL AJUSTES ──────────────────────── */

.whv-calendar-page-shell {
  display: grid;
  gap: 1.4rem;
  border-radius: 24px;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(10, 20, 32, 0.9) 0%, rgba(8, 17, 28, 0.84) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(var(--panel-blur));
  backdrop-filter: blur(var(--panel-blur));
}

body[data-page="calendar"] .page-shell {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

@media (max-width: 640px) {
  .whv-calendar-page-shell {
    padding: 1.2rem;
    border-radius: 0;
  }
}

/* ─── DESTINATION CARDS ──────────────────────── */

.whv-cards-section {
  display: contents;
}

.whv-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1rem;
  background: #191f38;
  border-radius: 1.25rem;
  padding: 1rem;
}

.whv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hub-border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card, #182645);
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.15s;
  box-shadow: 0 1px 4px rgba(10, 12, 24, 0.24);
}

.whv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(10, 12, 24, 0.34);
  border-color: var(--accent, #f84f76);
}

.whv-card--active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(233, 69, 96, 0.2), 0 10px 28px rgba(15, 52, 96, 0.12);
}

.whv-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.whv-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.whv-card:hover .whv-card-img {
  transform: scale(1.06);
}

.whv-card-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.06), rgba(233, 69, 96, 0.05));
}

.whv-card-badge {
  position: absolute !important;
  top: 0.55rem;
  right: 0.55rem;
  font-size: 0.7rem !important;
  padding: 0.22rem 0.55rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  line-height: 1.3;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.whv-card-body {
  padding: 0.7rem 0.85rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.whv-card-title-row {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.whv-card-flag-inline {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

.whv-card-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--hub-text);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.whv-card-visa-label {
  font-size: 0.72rem;
  color: var(--hub-muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .whv-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .whv-card-name {
    font-size: 0.85rem;
  }
}

/* ─── OPENINGS LIST (Calendario view) ────────── */

.cal-openings-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hub-border);
  border-radius: 0.85rem;
  overflow: hidden;
}

.cal-openings-header {
  display: grid;
  grid-template-columns: 1fr 7rem 9rem;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(15, 52, 96, 0.04);
  border-bottom: 1px solid var(--hub-border);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hub-muted);
}

.cal-openings-row {
  display: grid;
  grid-template-columns: 1fr 7rem 9rem;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid var(--hub-border);
  background: var(--card, #182645);
  cursor: pointer;
  text-align: left;
  transition: background 0.14s;
}

.cal-openings-row:last-child {
  border-bottom: none;
}

.cal-openings-row:hover {
  background: rgba(248, 79, 118, 0.08);
}

.cal-openings-row--past {
  opacity: 0.55;
}

.cal-openings-col-country {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.cal-openings-flag {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.cal-openings-name {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cal-openings-name strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hub-text);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cal-openings-visa {
  font-size: 0.73rem;
  color: var(--hub-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cal-openings-col-status {
  display: flex;
  align-items: center;
}

.cal-openings-col-date {
  display: flex;
  align-items: center;
}

.cal-open-date {
  font-size: 0.82rem;
  font-weight: 600;
}

.cal-open-date--future {
  color: var(--hub-text);
}

.cal-open-date--past {
  color: var(--hub-muted);
}

.cal-open-date--yearround {
  color: var(--cal-green);
}

.cal-open-date--tbc {
  color: var(--hub-muted);
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 600px) {
  .cal-openings-header {
    grid-template-columns: 1fr 6rem;
  }

  .cal-openings-header .cal-openings-col-status {
    display: none;
  }

  .cal-openings-row {
    grid-template-columns: 1fr 6rem;
  }

  .cal-openings-col-status {
    display: none;
  }
}
