/* ================================================================
   DESTINATION PAGE — Prodesse Health
   Shared across all 8 destination pages.
   ================================================================ */

/* ── Hero ─────────────────────────────────────────────────────── */

.dest-hero {
  background: var(--forest-deep);
  padding: 140px clamp(20px, 4.5vw, 60px) 100px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.dest-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 55%, #006655 100%);
}

/* Optional photo layer — activated by WP Featured Image or placeholder_img */
.dest-hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.dest-hero-bg-img[style]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 21, 0.60);
}

.dest-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.dest-hero-arc {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.dest-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.dest-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.dest-breadcrumb a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.dest-breadcrumb a:hover { color: rgba(255, 255, 255, 0.7); }

.dest-breadcrumb-sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.dest-breadcrumb-current {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.dest-hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dest-hero-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--sage);
}

.dest-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.07;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.dest-hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.dest-hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  max-width: 460px;
}

.dest-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Stats box ────────────────────────────────────────────────── */

.dest-stats-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(8px);
}

.dest-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dest-stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.dest-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}

.dest-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.dest-stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
  line-height: 1.4;
}

.dest-stats-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Tabs section ─────────────────────────────────────────────── */

.dest-tabs-section {
  padding: clamp(60px, 7vw, 80px) clamp(20px, 4.5vw, 60px);
  background: var(--white);
}

.dest-tabs-inner {
  max-width: var(--container);
  margin-inline: auto;
}

.dest-tabs-header {
  margin-bottom: 48px;
}

.dest-tabs-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest-dark);
  margin-top: 12px;
}

.dest-tabs-header h2 em { font-style: italic; }

.dest-tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.dest-tab-btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-family: var(--font-body);
}

.dest-tab-btn.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.dest-tab-btn:hover:not(.active) {
  border-color: var(--forest);
  color: var(--forest);
}

.dest-tab-panel { display: none; }
.dest-tab-panel.active {
  display: block;
  animation: destFadeIn 0.3s ease;
}

@keyframes destFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ── Panel grid ───────────────────────────────────────────────── */

.dest-panel-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}

.dest-panel-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Panel body text ──────────────────────────────────────────── */

.dest-panel-body h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--forest-dark);
  margin: 60px 0 16px;
  padding-left: 14px;
  border-left: 3px solid #A3E0B4;
  line-height: 1.15;
}

.dest-panel-body h3:first-child { margin-top: 0; }

.dest-panel-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}

.dest-panel-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.dest-panel-body ul li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.dest-panel-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--forest);
  font-size: 11px;
  top: 3px;
}

.dest-panel-body ul li strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Note boxes ───────────────────────────────────────────────── */

.dest-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 16px 0;
}

.dest-note-info {
  background: #E8F7ED;
  border: none;
  border-left: 3px solid #A3E0B4;
  border-radius: 0 12px 12px 0;
}

.dest-note-warning {
  background: rgba(184, 150, 46, 0.07);
  border: 1px solid rgba(184, 150, 46, 0.2);
}

.dest-note-icon { font-size: 15px; flex-shrink: 0; }

.dest-note p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.dest-note p strong { color: var(--forest); font-weight: 600; }

/* ── Salary table ─────────────────────────────────────────────── */

.dest-salary-wrap {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.dest-salary-table {
  width: 100%;
  border-collapse: collapse;
}

.dest-salary-table thead {
  background: rgba(0, 75, 66, 0.08);
}

.dest-salary-table thead th {
  padding: 16px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--forest);
}

.dest-salary-table thead th:first-child { color: var(--forest-dark); }

.dest-salary-table tbody tr {
  border-bottom: 0.5px solid var(--border);
}

.dest-salary-table tbody tr:last-child { border-bottom: none; }

.dest-salary-table tbody tr:nth-child(even) {
  background: rgba(163, 224, 180, 0.08);
}

.dest-salary-table tbody td {
  padding: 16px 16px;
  font-size: 13px;
  color: var(--text);
}

.dest-salary-table tbody td:first-child {
  border-left: 3px solid #A3E0B4;
}

.dest-salary-table thead th:first-child {
  border-left: 3px solid #A3E0B4;
}

.dest-salary-table tbody td:not(:first-child) { color: var(--muted); }

.dest-salary-table tbody td strong {
  color: var(--forest-dark);
  font-weight: 600;
}

.dest-table-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

/* ── Process steps ────────────────────────────────────────────── */

.dest-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
}

.dest-process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0;
  position: relative;
}

.dest-process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.dest-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.dest-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.dest-step-right {
  padding: 0 0 36px 16px;
}

.dest-step-right h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  margin-top: 6px;
}

.dest-step-right p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.dest-step-duration {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--sage-pale);
  color: var(--forest);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-top: 6px;
}

/* ── Aside boxes ──────────────────────────────────────────────── */

.dest-package-box {
  background: var(--sage-pale);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 75, 66, 0.08);
}

.dest-package-box h4,
.dest-elig-box h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--forest-dark);
  margin-bottom: 20px;
}

.dest-package-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
  gap: 12px;
}

.dest-package-row:last-child { border-bottom: none; }

.dest-package-key {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  flex-shrink: 0;
}

.dest-package-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  text-align: right;
  line-height: 1.4;
}

.dest-package-val--hi { color: var(--forest); }

.dest-package-footnote {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 0;
  padding: 0;
}

/* ── Extra marketing sections (alternating background blocks) ──── */

.dest-extra-section {
  padding: 80px 24px;
}

.dest-extra-section--cream { background: var(--cream); }
.dest-extra-section--white { background: var(--white); }

.dest-extra-section--forest {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.9);
}

.dest-extra-section--forest h2,
.dest-extra-section--forest h3 {
  color: var(--white);
}

.dest-extra-inner {
  max-width: 860px;
  margin-inline: auto;
}

.dest-extra-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--forest-dark);
  margin-bottom: 20px;
}

.dest-extra-section p {
  font-size: 15px;
  line-height: 1.7;
  color: inherit;
}

.dest-extra-package-box {
  margin-top: 32px;
  max-width: 480px;
}

.dest-extra-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.dest-extra-card {
  background: var(--sage-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.dest-extra-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--forest-dark);
  margin-bottom: 10px;
}

.dest-extra-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.dest-extra-card-timeline {
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  margin-top: 12px;
}

.dest-elig-box {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 75, 66, 0.08);
}

.dest-elig-box h4 { margin-bottom: 16px; }

.dest-elig-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
}

.dest-elig-row:last-child { border-bottom: none; }

.dest-elig-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }

.dest-elig-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}

.dest-elig-text strong {
  color: var(--forest-dark);
  font-weight: 600;
}

.dest-aside-cta {
  background: var(--forest);
  border-radius: 20px;
  padding: 28px;
}

.dest-aside-cta h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.dest-aside-cta p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.dest-aside-cta a {
  display: block;
  text-align: center;
  background: var(--white);
  color: var(--forest-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.3s;
}

.dest-aside-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* ── Matcher CTA box ──────────────────────────────────────────── */

.dest-matcher-cta {
  background: #E8F7ED;
  border: 0.5px solid rgba(0, 75, 66, 0.15);
  border-radius: 16px;
  padding: 28px;
}

.dest-matcher-cta h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #004B42;
  margin-bottom: 0;
}

.dest-matcher-cta p {
  font-size: 13px;
  color: #6B6B65;
  margin: 8px 0 16px;
  line-height: 1.55;
}

.dest-matcher-cta-btn {
  display: block;
  text-align: center;
  background: #004B42;
  color: var(--white);
  padding: 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.dest-matcher-cta-btn:hover { opacity: 0.85; }

/* ── Destination nav ──────────────────────────────────────────── */

.dest-nav-strip {
  padding: clamp(40px, 5vw, 48px) clamp(20px, 4.5vw, 60px);
  background: var(--cream);
}

.dest-nav-strip-inner {
  max-width: var(--container);
  margin-inline: auto;
}

.dest-nav-strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.dest-nav-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dest-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.2s;
}

.dest-nav-pill:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.dest-nav-pill--current {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ── CTA band ─────────────────────────────────────────────────── */

.dest-cta-band {
  padding: clamp(60px, 8vw, 80px) clamp(20px, 4.5vw, 60px);
  background: var(--forest);
  text-align: center;
}

.dest-cta-band-inner {
  max-width: 600px;
  margin-inline: auto;
}

.dest-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.dest-cta-band h2 em {
  font-style: italic;
  color: var(--sage);
}

.dest-cta-band p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.dest-cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .dest-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dest-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dest-panel-aside { position: static; }
}

@media (max-width: 640px) {
  .dest-stats-grid { grid-template-columns: 1fr 1fr; }
  .dest-tab-bar { gap: 6px; }
  .dest-tab-btn { padding: 9px 16px; font-size: 12px; }
  .dest-extra-section { padding: 56px 20px; }
  .dest-extra-cards { grid-template-columns: 1fr; }
}

/* ── State pay rates table ─────────────────────────────────────── */
.dest-spt {
  margin: 24px 0;
}
.dest-spt-head {
  margin-bottom: 12px;
}
.dest-spt-search {
  width: 100%;
  max-width: 280px;
  padding: 9px 14px;
  border: 1.5px solid rgba(0,75,66,.2);
  border-radius: 6px;
  font-size: 14px;
  color: var(--forest);
  font-family: var(--font-body);
  background: var(--white);
  transition: border-color .2s;
}
.dest-spt-search:focus {
  outline: none;
  border-color: var(--forest);
}
.dest-spt-search::placeholder { color: rgba(0,75,66,.4); }
.dest-spt-scroll {
  overflow-x: auto;
  border: 1px solid rgba(0,75,66,.1);
  border-radius: 10px;
}
.dest-spt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.dest-spt-table thead {
  background: rgba(0,75,66,.05);
}
.dest-spt-th {
  text-align: left;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--forest);
  white-space: nowrap;
  user-select: none;
}
.dest-spt-th:hover { background: rgba(0,75,66,.08); }
.dest-spt-sort {
  opacity: .45;
  font-size: 10px;
  margin-left: 4px;
}
.dest-spt-table tbody tr {
  border-top: 1px solid rgba(0,75,66,.07);
  transition: background .12s;
}
.dest-spt-table tbody tr:hover { background: rgba(0,75,66,.03); }
.dest-spt-table td {
  padding: 11px 16px;
  color: var(--text);
}
.dest-spt-table td:first-child { font-weight: 500; color: var(--forest); }
.dest-spt-demand {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.dest-spt-demand--high   { background: rgba(163,224,180,.3); color: #1a6b3a; }
.dest-spt-demand--medium { background: rgba(240,180,41,.2);  color: #7a5500; }
.dest-spt-demand--low    { background: rgba(0,75,66,.08);    color: var(--forest); }

/* ── Visa Bulletin widget ──────────────────────────────────────── */
.dest-vb {
  background: var(--cream);
  border: 1px solid rgba(0,75,66,.12);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 24px 0;
}
.dest-vb-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.dest-vb-head h3 {
  margin: 0;
}
.dest-vb-stamp {
  font-size: 11px;
  color: rgba(0,75,66,.5);
  font-weight: 500;
}
.dest-vb-intro {
  font-size: 14px;
  color: rgba(0,29,22,.7);
  margin: 0 0 20px;
  line-height: 1.65;
}
.dest-vb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dest-vb-item {
  background: var(--white);
  border: 1px solid rgba(0,75,66,.1);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dest-vb-flag {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 4px;
}
.dest-vb-country {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(0,75,66,.6);
}
.dest-vb-date {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  color: var(--forest);
  margin: 4px 0 2px;
}
.dest-vb-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(0,75,66,.45);
}

/* Status tints */
.dest-vb-current .dest-vb-date  { color: #1a6b3a; }
.dest-vb-current .dest-vb-item,
.dest-vb-item.dest-vb-current   { border-color: rgba(163,224,180,.5); background: rgba(163,224,180,.1); }
.dest-vb-recent  .dest-vb-date  { color: #7a5500; }
.dest-vb-delayed .dest-vb-date  { color: #b84c00; }
.dest-vb-retro   .dest-vb-date  { color: #9b1c1c; }

.dest-vb-item.dest-vb-current { border-color: rgba(163,224,180,.5); background: rgba(163,224,180,.1); }
.dest-vb-item.dest-vb-recent  { border-color: rgba(240,180,41,.3);  background: rgba(240,180,41,.06); }
.dest-vb-item.dest-vb-delayed { border-color: rgba(184,76,0,.25);   background: rgba(184,76,0,.05); }
.dest-vb-item.dest-vb-retro   { border-color: rgba(155,28,28,.25);  background: rgba(155,28,28,.05); }

.dest-vb-footer {
  font-size: 13px;
}
.dest-vb-footer a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}
.dest-vb-footer a:hover { text-decoration: underline; }

.dest-vb-unavailable {
  background: rgba(0,75,66,.05);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(0,75,66,.7);
}
.dest-vb-unavailable a { color: var(--forest); font-weight: 600; }

@media (max-width: 700px) {
  .dest-vb-grid { grid-template-columns: 1fr 1fr; }
  .dest-vb { padding: 20px; }
}
@media (max-width: 440px) {
  .dest-vb-grid { grid-template-columns: 1fr; }
  .dest-spt-search { max-width: 100%; }
}

/* ── Destination vacancy cards ──────────────────────────────────── */
.dest-vacancy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.dest-vacancy-card {
  background: #fff;
  border: 1.5px solid rgba(0,75,66,.1);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .2s, transform .2s;
}
.dest-vacancy-card:hover {
  box-shadow: 0 8px 28px rgba(0,75,66,.1);
  transform: translateY(-2px);
}
.dest-vacancy-card-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.dest-vacancy-card-status {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(163,224,180,.25);
  color: #1a6b3a;
}
.dest-vacancy-card h3 {
  font-family: var(--font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  color: #004B42 !important;
  margin: 0 0 8px !important;
}
.dest-vacancy-card-prof {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,75,66,.7);
  border: 1px solid rgba(0,75,66,.2);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.dest-vacancy-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(0,75,66,.08);
  border-bottom: 1px solid rgba(0,75,66,.08);
  margin-bottom: 12px;
  flex: 1;
}
.dest-vacancy-card-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dest-vacancy-card-meta-item--full {
  grid-column: 1 / -1;
}
.dest-vacancy-card-meta-label {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(0,75,66,.5);
  font-weight: 600;
}
.dest-vacancy-card-meta-val {
  font-family: var(--font-body);
  font-size: 13px;
  color: #004B42;
}
.dest-vacancy-card-salary {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #F0B429 !important;
}
.dest-vacancy-card-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(0,75,66,.65);
  margin: 0 0 4px;
  line-height: 1.4;
}
.dest-vacancy-card-note--nationality::before { content: '🌍 '; }
.dest-vacancy-card-note--fee::before         { content: '✅ '; }
.dest-vacancy-card-cta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #004B42;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 8px;
  transition: background .2s;
}
.dest-vacancy-card-cta:hover { background: #003830; }
@media (max-width: 900px) {
  .dest-vacancy-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .dest-vacancy-cards { grid-template-columns: 1fr; }
}
