.single-entry-visa-page {
  --ink: #101820;
  --navy: #111111;
  --blue: #c11425;
  --blue-700: #9f101f;
  --sand: #ffc000;
  --sand-100: #fff7d6;
  --paper: #f5f5f5;
  --surface: #ffffff;
  --border: #e6e6e6;
  --text: #101820;
  --text-2: #5d6b73;
  --success: #c11425;
  --success-100: #fbecee;
  --warn: #c11425;
  --warn-100: #fbecee;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-card: 0 1px 2px rgba(16, 24, 32, .04), 0 8px 24px rgba(16, 24, 32, .06);
  --shadow-hover: 0 12px 32px rgba(16, 24, 32, .10);
  --container: 1160px;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.single-entry-visa-page h1,
.single-entry-visa-page h2,
.single-entry-visa-page h3 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
  margin: 0;
}

.single-entry-visa-page h1 {
  font-size: clamp(33.6px, 25.6px + 2.4vw, 54.4px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
}

.single-entry-visa-page h2 {
  font-size: clamp(24px, 20.8px + 1vw, 33.6px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.01em;
}

.single-entry-visa-page h3 {
  font-size: clamp(16.8px, 16px + .3vw, 20px);
  font-weight: 600;
  line-height: 1.3;
}

.single-entry-visa-page p {
  margin: 0 0 1em;
  color: #5d6b73;
}

.mono {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}


.single-entry-visa-page img,
.single-entry-visa-page svg {
  display: block;
  max-width: 100%;
}

.visa-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.single-entry-visa-page section {
  padding: 64px 0;
}

.section-dark {
  background: var(--ink);
  color: #ffffff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.52px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: #fbecee;
  border: 1px solid #f3cfd4;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head p {
  color: var(--text-2);
  font-size: 16.8px;
  margin-top: 10px;
}

.lede {
  font-size: 18.4px;
  color: var(--text);
  font-weight: 500;
}

.muted {
  color: var(--text-2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15.68px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(193, 20, 37, .28);
}

.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--navy);
}

.btn-whatsapp {
  background: #1F9E52;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #188045;
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding: 10px 4px;
  font-weight: 600;
}

.btn-ghost svg {
  transition: transform .15s ease;
}

.btn-ghost:hover svg {
  transform: translateX(3px);
}

.btn-block {
  width: 100%;
}


/* ---------- Hero ---------- */
.hero {
  padding: 44px 0 40px;
  background:
    radial-gradient(1100px 480px at 82% -10%, #fbecee 0%, transparent 60%), var(--paper);
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

.hero h1 {
  margin-bottom: 16px;
}

.hero-copy {
  font-size: 17.28px;
  color: var(--text-2);
  max-width: 56ch;
  margin-bottom: 26px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

/* product / trust strip — boarding-pass styled bar */
.strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.strip-item {
  padding: 16px 18px;
  border-right: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}

.strip-item:nth-child(2n) {
  border-right: none;
}

.strip-item .label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.88px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
  display: block;
  margin-bottom: 4px;
}

.strip-item .value {
  font-weight: 600;
  color: var(--ink);
  font-size: 15.68px;
}

/* Entry stamp — signature element */
.stamp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.stamp {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2.5px dashed var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-8deg);
  margin: 0 auto 18px;
  color: var(--sand);
  position: relative;
}

.stamp::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  opacity: .5;
}

.stamp-text {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-size: 11.52px;
  letter-spacing: .06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.stamp-text small {
  display: block;
  font-size: 9.6px;
  letter-spacing: .14em;
  color: var(--sand);
  opacity: .85;
  margin-top: 4px;
}

.stamp-card h3 {
  text-align: center;
}

.stamp-card .stamp-note {
  text-align: center;
  color: var(--text-2);
  font-size: 14.72px;
  margin-top: 6px;
}

/* ---------- Fact callouts (AEO direct-answer blocks) ---------- */
.answer-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
}

.answer-block p {
  margin: 0;
  font-size: 16.8px;
}

.answer-block p:not(:last-child) {
  margin-bottom: 12px;
}

.callout-highlight {
  background: var(--sand-100);
  border: 1px solid #ffe69a;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 600;
  color: #5d6b73;
  font-size: 15.68px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.callout-highlight svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sand);
}

/* ---------- Quick facts table ---------- */
.facts-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.facts-table tr {
  border-bottom: 1px solid var(--border);
}

.facts-table tr:last-child {
  border-bottom: none;
}

.facts-table th,
.facts-table td {
  text-align: left;
  padding: 16px 20px;
  font-size: 15.68px;
  vertical-align: top;
}

.facts-table th {
  width: 38%;
  color: var(--text-2);
  font-weight: 600;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13.12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.facts-table td {
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Card grids ---------- */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .15s ease, transform .15s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fbecee;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--text-2);
  font-size: 15.2px;
  margin-bottom: 0;
}

.persona-card {
  text-align: left;
}

.persona-card .icon-wrap {
  background: var(--sand-100);
  color: var(--sand);
}

/* ---------- Duration cards ---------- */
.duration-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.duration-card .tag {
  align-self: flex-start;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.52px;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--success-100);
  color: var(--success);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.duration-card .big {
  font-family: "Fraunces", serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
}

.duration-card .big small {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--text-2);
  font-weight: 500;
}

.mini-compare {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.mini-compare .col {
  flex: 1 1 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.mini-compare .col strong {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.48px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

/* ---------- Ticket stub (re-entry signature diagram) ---------- */
.stub-wrap {
  display: grid;
  gap: 28px;
  align-items: center;
}

.ticket-stub {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}

.stub-main {
  flex: 1;
  padding: 24px;
}

.stub-main .row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.stub-main .row:last-child {
  margin-bottom: 0;
}

.stub-main .label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.88px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-2);
}

.stub-main .val {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.stub-divider {
  width: 0;
  border-left: 2px dashed var(--border);
  position: relative;
}

.stub-divider::before,
.stub-divider::after {
  content: "";
  position: absolute;
  left: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--border);
}

.stub-divider::before {
  top: -9px;
}

.stub-divider::after {
  bottom: -9px;
}

.stub-end {
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--warn-100);
  padding: 16px;
  position: relative;
}

.stub-end svg {
  color: var(--warn);
}

.stub-end span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.88px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--warn);
  text-align: center;
  line-height: 1.4;
}

.flow-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

.flow-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.flow-step.is-void .flow-num {
  background: var(--warn-100);
  border-color: var(--warn);
  color: var(--warn);
}

.flow-step p {
  margin: 0;
  font-weight: 600;
  color: #5d6b73;
}

.flow-step.is-void p {
  color: var(--warn);
}

.flow-connector {
  width: 1.5px;
  height: 22px;
  background: var(--border);
  margin-left: 17px;
}

/* ---------- Pricing ---------- */
.price-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.price-tab {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14.72px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  cursor: pointer;
}

.price-tab[aria-selected="true"] {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.price-tab:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.price-panel {
  display: none;
}

.price-panel.is-active {
  display: block;
}

.price-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #fbecee, var(--shadow-card);
}

.price-card .badge {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--blue);
  color: #fff;
  font-size: 10.88px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.price-card .speed {
  font-weight: 700;
  color: var(--ink);
  font-size: 16.8px;
}

.price-card .time {
  font-family: "IBM Plex Mono", monospace;
  color: var(--text-2);
  font-size: 14.4px;
}

.price-card .amount {
  font-family: "Fraunces", serif;
  font-size: 33.6px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
}

.price-card .amount small {
  font-family: "Inter", sans-serif;
  font-size: 13.6px;
  color: var(--text-2);
  font-weight: 500;
}

/* ---------- Requirements checklist ---------- */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 500;
  color: var(--ink);
}

.checklist svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.step-num {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 22.4px;
  color: var(--blue);
  flex-shrink: 0;
  width: 40px;
}

.step h3 {
  margin-bottom: 4px;
}

.step p {
  color: var(--text-2);
  font-size: 14.72px;
  margin: 0;
}

/* ---------- Processing time table ---------- */
.ptime-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.ptime-table th,
.ptime-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.ptime-table tr:last-child td {
  border-bottom: none;
}

.ptime-table thead th {
  background: var(--paper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.48px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-2);
}

.ptime-table td.time-val {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  color: var(--ink);
}

.disclaimer {
  font-size: 14.08px;
  color: var(--text-2);
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

/* ---------- Decision section ---------- */
.decision-grid {
  display: grid;
  gap: 20px;
}

.decision-card {
  border-radius: var(--radius);
  padding: 28px;
}

.decision-card.yes {
  background: var(--success-100);
  border: 1px solid #f3cfd4;
}

.decision-card.no {
  background: var(--surface);
  border: 1px solid var(--border);
}

.decision-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.decision-card ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.decision-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
}

.decision-card.yes svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.decision-card.no svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- Reviews ---------- */
.review-placeholder {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  background: var(--surface);
  color: var(--text-2);
}

.review-placeholder svg {
  margin: 0 auto 14px;
  color: var(--text-2);
}

/* ---------- FAQ accordion ---------- */
.accordion {
  display: grid;
  gap: 12px;
}

.acc-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.acc-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.acc-trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.acc-trigger .plus {
  flex-shrink: 0;
  transition: transform .2s ease;
  color: var(--blue);
}

.acc-trigger[aria-expanded="true"] .plus {
  transform: rotate(45deg);
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.acc-panel-inner {
  padding: 0 20px 18px;
  color: var(--text-2);
}

.acc-panel-inner p {
  margin: 0;
}

/* ---------- Related help ---------- */
.help-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.help-card h3 {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 2px;
}

.help-card p {
  margin: 0;
  font-size: 13.6px;
  color: var(--text-2);
}

.help-card .icon-wrap {
  margin-bottom: 0;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(180deg, var(--navy), #111111);
  color: #fff;
  border-radius: 20px;
  padding: 52px 32px;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}

.final-cta p {
  color: #e6e6e6;
  max-width: 52ch;
  margin: 0 auto 28px;
}

.final-cta .hero-ctas {
  justify-content: center;
  margin-bottom: 0;
}


.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

ul.plain {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Styles moved from inline attributes */
.duration-compare-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.inline-icon {
  display: inline-block;
  vertical-align: middle;
}

.entry-compare-link {
  margin-top: 20px;
}



.reentry-eyebrow {
  background: rgba(255, 255, 255, .08);
  color: #ffc000;
  border-color: rgba(255, 255, 255, .15);
}

.reentry-answer {
  background: #171717;
  border-color: #343434;
  border-left-color: var(--sand);
}

.dark-text {
  color: #ffffff;
}

.dark-text {
  color: #fff;
}

.dark-text {
  color: #ffffff;
}

.dark-text {
  color: #fff;
}


.entry-status {
  color: var(--success);
}

.reentry-actions {
  margin-top: 32px;
}

.reentry-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}

.fees-actions {
  margin-top: 8px;
}



.speed-time {
  color: var(--ink);
  font-weight: 600;
}


.processing-compare {
  margin-top: 24px;
}



.requirements-actions {
  margin-top: 22px;
}

.requirements-links {
  margin-top: 16px;
  font-size: 14.72px;
}

.apply-actions {
  margin-top: 32px;
}



.processing-time-link {
  margin-top: 16px;
}



.policy-links {
  margin-top: 20px;
  font-size: 14.4px;
}

.review-title {
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--ink);
}

.review-copy {
  margin: 0;
}

/* Responsive safety */

/* =========================================================
   RESPONSIVE CSS
   All media queries kept together at the bottom
========================================================= */

@media (max-width: 767px) {
.single-entry-visa-page .btn,
  .single-entry-visa-page .btn-primary,
  .single-entry-visa-page .btn-secondary {
    max-width: 100%;
  }

  .single-entry-visa-page table {
    max-width: 100%;
  }
}

@media(max-width:640px) {
.facts-table,
  .facts-table tbody,
  .facts-table tr,
  .facts-table th,
  .facts-table td {
    display: block;
    width: 100%;
  }

  .facts-table tr {
    padding: 14px 20px;
  }

  .facts-table th {
    padding: 0 0 4px;
  }

  .facts-table td {
    padding: 0;
  }
}

@media(min-width:640px) {
.strip {
    grid-template-columns: repeat(4, 1fr);
  }

.strip-item {
    border-bottom: none;
  }

  .strip-item:nth-child(2n) {
    border-right: 1px dashed var(--border);
  }

  .strip-item:last-child {
    border-right: none;
  }

.grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

.checklist {
    grid-template-columns: 1fr 1fr;
  }
}

@media(min-width:760px) {
.price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width:800px) {
.decision-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width:900px) {
.single-entry-visa-page section {
    padding: 96px 0;
  }
}

@media(min-width:900px) {
.hero {
    padding: 64px 0 48px;
  }

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

.stub-wrap {
    grid-template-columns: 1fr 1fr;
  }

.steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

.step {
    border-bottom: none;
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }
}

@media(min-width:980px) {
.hero-grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
  }
}

@media (max-width: 979px) {
  .single-entry-visa-page .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .single-entry-visa-page .stamp-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .single-entry-visa-page .strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-entry-visa-page .strip-item {
    min-width: 0;
  }

  .single-entry-visa-page .strip-item .value {
    overflow-wrap: anywhere;
  }

  .single-entry-visa-page .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-entry-visa-page .stub-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .visa-container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .single-entry-visa-page section {
    padding: 52px 0;
  }

  .single-entry-visa-page .hero {
    padding: 34px 0 44px;
  }

  .single-entry-visa-page h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .single-entry-visa-page h2 {
    font-size: 29px;
  }

  .single-entry-visa-page .hero-copy,
  .single-entry-visa-page .section-head p,
  .single-entry-visa-page .answer-block p {
    font-size: 16px;
  }

  .single-entry-visa-page .section-head {
    margin-bottom: 28px;
  }

  .single-entry-visa-page .hero-ctas {
    gap: 10px;
    margin-bottom: 24px;
  }

  .single-entry-visa-page .hero-ctas .btn {
    max-width: 100%;
  }

  .single-entry-visa-page .card,
  .single-entry-visa-page .duration-card,
  .single-entry-visa-page .price-card,
  .single-entry-visa-page .decision-card {
    padding: 22px 20px;
  }

  .single-entry-visa-page .answer-block {
    padding: 20px;
  }

  .single-entry-visa-page .ticket-stub {
    flex-direction: column;
  }

  .single-entry-visa-page .stub-main {
    padding: 22px 20px;
  }

  .single-entry-visa-page .stub-divider {
    width: 100%;
    height: 0;
    border-left: 0;
    border-top: 2px dashed var(--border);
  }

  .single-entry-visa-page .stub-divider::before,
  .single-entry-visa-page .stub-divider::after {
    top: -9px;
  }

  .single-entry-visa-page .stub-divider::before {
    left: -9px;
  }

  .single-entry-visa-page .stub-divider::after {
    left: auto;
    right: -9px;
    bottom: auto;
  }

  .single-entry-visa-page .stub-end {
    width: 100%;
    min-height: 100px;
  }

  .single-entry-visa-page .mini-compare {
    flex-direction: column;
  }

  .single-entry-visa-page .mini-compare .col {
    width: 100%;
    flex: none;
  }

  .single-entry-visa-page .duration-compare-link {
    justify-content: flex-start;
  }

  .single-entry-visa-page .price-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .single-entry-visa-page .price-tab {
    width: 100%;
    padding: 10px 12px;
  }

  .single-entry-visa-page .ptime-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .single-entry-visa-page .ptime-table th,
  .single-entry-visa-page .ptime-table td {
    min-width: 160px;
    white-space: nowrap;
  }

  .single-entry-visa-page .reentry-actions,
  .single-entry-visa-page .fees-actions,
  .single-entry-visa-page .requirements-actions,
  .single-entry-visa-page .apply-actions {
    margin-top: 24px;
  }

  .single-entry-visa-page .final-cta {
    padding: 42px 22px;
  }

  .single-entry-visa-page .acc-trigger {
    padding: 17px 16px;
    align-items: flex-start;
  }

  .single-entry-visa-page .acc-panel-inner {
    padding: 0 16px 16px;
  }
}

@media (max-width: 560px) {
  .visa-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .single-entry-visa-page h1 {
    font-size: 32px;
  }

  .single-entry-visa-page h2 {
    font-size: 27px;
  }

  .single-entry-visa-page .hero-ctas,
  .single-entry-visa-page .final-cta .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .single-entry-visa-page .hero-ctas .btn,
  .single-entry-visa-page .final-cta .btn,
  .single-entry-visa-page .decision-card .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .single-entry-visa-page .strip {
    grid-template-columns: 1fr;
  }

  .single-entry-visa-page .strip-item,
  .single-entry-visa-page .strip-item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px dashed var(--border);
  }

  .single-entry-visa-page .strip-item:last-child {
    border-bottom: 0;
  }

  .single-entry-visa-page .grid-2,
  .single-entry-visa-page .grid-3,
  .single-entry-visa-page .grid-4 {
    grid-template-columns: 1fr;
  }

  .single-entry-visa-page .stamp-card {
    padding: 24px 20px;
  }

  .single-entry-visa-page .stamp {
    width: 130px;
    height: 130px;
  }

  .single-entry-visa-page .facts-table,
  .single-entry-visa-page .facts-table tbody,
  .single-entry-visa-page .facts-table tr,
  .single-entry-visa-page .facts-table th,
  .single-entry-visa-page .facts-table td {
    display: block;
    width: 100%;
  }

  .single-entry-visa-page .facts-table tr {
    padding: 14px 16px;
  }

  .single-entry-visa-page .facts-table th {
    padding: 0 0 5px;
  }

  .single-entry-visa-page .facts-table td {
    padding: 0;
  }

  .single-entry-visa-page .price-tabs {
    grid-template-columns: 1fr;
  }

  .single-entry-visa-page .stub-main .row {
    flex-direction: column;
    gap: 4px;
  }

  .single-entry-visa-page .stub-main .val {
    text-align: left;
  }

  .single-entry-visa-page .callout-highlight {
    padding: 14px;
  }

  .single-entry-visa-page .review-placeholder {
    padding: 32px 20px;
  }

  .single-entry-visa-page .final-cta {
    padding: 38px 18px;
  }
}

@media (min-width: 980px) {
  .single-entry-visa-page .hero-grid {
    align-items: center;
  }

  .single-entry-visa-page .stamp-card {
    max-width: 420px;
    justify-self: end;
  }
}