/**
 * Visit Visa hub page — Raab Group
 */
:root {
  --vv-teal: #0d9488;
  --vv-teal-dark: #0f766e;
  --vv-navy: #0c2d48;
  --vv-gold: #e8a020;
  --vv-sky: #38bdf8;
}

.visit-visa-page .vv-hero-bg {
  position: relative;
  background-color: var(--vv-navy);
  background-image:
    linear-gradient(135deg, rgba(12, 45, 72, 0.88) 0%, rgba(13, 148, 136, 0.78) 45%, rgba(56, 189, 248, 0.55) 100%),
    url('../img/maps/world-map.jpg');
  background-size: cover, min(70vw, 900px) auto;
  background-position: center, 75% center;
  background-repeat: no-repeat;
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.visit-visa-page .vv-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(232, 160, 32, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.visit-visa-page .vv-hero-bg .hero-content-wrap {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-left: 10px;
  margin-top: 100px;
}

.visit-visa-page .hero-title-gold {
  color: var(--vv-gold) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
}

.visit-visa-page .hero-copy-readable {
  color: #f7f9fc !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 720px;
}

.visit-visa-page .vv-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.visit-visa-page .vv-hero-badges span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.visit-visa-page .vv-trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
  .visit-visa-page .vv-trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.visit-visa-page .vv-trust-stat {
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.06);
}

.visit-visa-page .vv-trust-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--vv-teal-dark);
  font-weight: 800;
}

.visit-visa-page .vv-trust-stat span {
  font-size: 0.85rem;
  color: #5a6478;
  font-weight: 600;
}

.visit-visa-page .vv-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.visit-visa-page .vv-dest-card {
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.1);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.visit-visa-page .vv-dest-card:hover {
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.14);
  transform: translateY(-2px);
}

.visit-visa-page .vv-dest-card__img {
  height: 140px;
  background: linear-gradient(135deg, #e0f2fe 0%, #ccfbf1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid rgba(13, 148, 136, 0.08);
}

.visit-visa-page .vv-dest-card__img img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
}

.visit-visa-page .vv-dest-card__img--photo {
  padding: 0;
  height: 160px;
  background: #f0f6fa;
}

.visit-visa-page .vv-dest-card__img--photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.visit-visa-page .vv-dest-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.visit-visa-page .vv-dest-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vv-teal-dark);
  background: rgba(13, 148, 136, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.visit-visa-page .vv-dest-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vv-navy);
  margin-bottom: 8px;
}

.visit-visa-page .vv-dest-card h4 a {
  color: inherit;
  text-decoration: none;
}

.visit-visa-page .vv-dest-card h4 a:hover {
  color: var(--vv-teal);
}

.visit-visa-page .vv-dest-card p {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}

.visit-visa-page .vv-dest-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 0.86rem;
  color: #374151;
}

.visit-visa-page .vv-dest-card ul li {
  padding: 3px 0 3px 16px;
  position: relative;
}

.visit-visa-page .vv-dest-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--vv-teal);
  font-weight: 700;
}

.visit-visa-page .vv-dest-card__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--vv-teal-dark);
  text-decoration: none;
  margin-top: auto;
}

.visit-visa-page .vv-dest-card__link:hover {
  color: var(--vv-gold);
}

.visit-visa-page .vv-docs-banner {
  background: linear-gradient(135deg, var(--vv-navy) 0%, var(--vv-teal-dark) 100%);
  color: #fff;
  border-radius: 14px;
  padding: 28px 32px;
}

.visit-visa-page .vv-docs-banner strong {
  display: block;
  font-size: 1.25rem;
  color: var(--vv-gold);
  margin-bottom: 8px;
}

.visit-visa-page .vv-docs-banner p {
  margin: 0;
  line-height: 1.7;
  opacity: 0.95;
}

.visit-visa-page .vv-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
  .visit-visa-page .vv-gallery {
    grid-template-columns: 1fr;
  }
}

.visit-visa-page .vv-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.visit-visa-page .vv-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-visa-page .vv-gallery-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(12, 45, 72, 0.85));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.visit-visa-page .vv-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.visit-visa-page .vv-checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.08);
  border-radius: 10px;
  padding: 16px;
}

.visit-visa-page .vv-checklist-item i {
  color: var(--vv-teal);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.visit-visa-page .vv-checklist-item strong {
  display: block;
  color: var(--vv-navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.visit-visa-page .vv-checklist-item span {
  font-size: 0.88rem;
  color: #5a6478;
  line-height: 1.5;
}

.visit-visa-page .vv-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  counter-reset: vvstep;
}

.visit-visa-page .vv-process-step {
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.visit-visa-page .vv-process-step::before {
  counter-increment: vvstep;
  content: counter(vvstep);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  background: var(--vv-teal);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
}

.visit-visa-page .vv-process-step h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vv-navy);
  margin-bottom: 6px;
}

.visit-visa-page .vv-process-step p {
  font-size: 0.82rem;
  color: #5a6478;
  margin: 0;
  line-height: 1.5;
}

.visit-visa-page .btn-get-started {
  background: var(--vv-teal-dark);
  border-color: var(--vv-teal-dark);
}

.visit-visa-page .btn-get-started:hover {
  background: var(--vv-teal);
  border-color: var(--vv-teal);
}

.visit-visa-page .ca-seo-link {
  color: var(--vv-teal-dark);
  font-weight: 600;
}

.visit-visa-page .ca-seo-link:hover {
  color: var(--vv-gold);
}

.visit-visa-page .vv-country-group {
  margin-bottom: 36px;
}

.visit-visa-page .vv-country-group__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vv-navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(13, 148, 136, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.visit-visa-page .vv-country-group__title i {
  color: var(--vv-teal);
}

.visit-visa-page .vv-flag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

@media (min-width: 768px) {
  .visit-visa-page .vv-flag-grid {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  }
}

.visit-visa-page .vv-flag-card {
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visit-visa-page .vv-flag-card:hover {
  box-shadow: 0 6px 22px rgba(13, 148, 136, 0.14);
  transform: translateY(-2px);
}

.visit-visa-page .vv-flag-card__img {
  width: 80px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.visit-visa-page .vv-flag-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vv-navy);
  margin: 0 0 4px;
}

.visit-visa-page .vv-flag-card h4 a {
  color: inherit;
  text-decoration: none;
}

.visit-visa-page .vv-flag-card h4 a:hover {
  color: var(--vv-teal);
}

.visit-visa-page .vv-flag-card p {
  font-size: 0.78rem;
  color: #5a6478;
  margin: 0;
  line-height: 1.4;
}

.visit-visa-page .vv-flag-card--featured {
  border-color: var(--vv-teal);
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.visit-visa-page .vv-countries-intro {
  font-size: 1rem;
  color: #4a5568;
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
  line-height: 1.7;
}

/* Country detail guide cards */
.visit-visa-page .vv-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .visit-visa-page .vv-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.visit-visa-page .vv-detail-card {
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(12, 45, 72, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.visit-visa-page .vv-detail-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.visit-visa-page .vv-detail-card__head img {
  width: 56px;
  height: 38px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.visit-visa-page .vv-detail-card__head h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vv-navy);
  margin: 0 0 2px;
}

.visit-visa-page .vv-detail-card__head h4 a {
  color: inherit;
  text-decoration: none;
}

.visit-visa-page .vv-detail-card__head h4 a:hover {
  color: var(--vv-teal);
}

.visit-visa-page .vv-detail-card__visa-type {
  font-size: 0.78rem;
  color: var(--vv-teal-dark);
  font-weight: 600;
  margin: 0;
}

.visit-visa-page .vv-detail-card__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.visit-visa-page .vv-detail-card__body > p {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.65;
  margin: 0 0 14px;
}

.visit-visa-page .vv-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.visit-visa-page .vv-detail-meta span {
  background: #f8fafc;
  border: 1px solid rgba(13, 148, 136, 0.08);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.75rem;
  color: #5a6478;
  line-height: 1.35;
}

.visit-visa-page .vv-detail-meta span strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vv-teal-dark);
  margin-bottom: 2px;
}

.visit-visa-page .vv-detail-docs {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.visit-visa-page .vv-detail-docs li {
  font-size: 0.82rem;
  color: #4a5568;
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.45;
}

.visit-visa-page .vv-detail-docs li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--vv-teal);
  font-size: 0.75rem;
  top: 6px;
}

.visit-visa-page .vv-detail-card__link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vv-teal-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.visit-visa-page .vv-detail-card__link:hover {
  color: var(--vv-gold);
}

.visit-visa-page .vv-detail-region {
  margin-bottom: 32px;
}

.visit-visa-page .vv-detail-region__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vv-navy);
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid var(--vv-teal);
}

.visit-visa-page .vv-compare-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(13, 148, 136, 0.12);
  background: #fff;
  box-shadow: 0 4px 18px rgba(12, 45, 72, 0.05);
}

.visit-visa-page .vv-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 640px;
}

.visit-visa-page .vv-compare-table th {
  background: var(--vv-navy);
  color: #fff;
  font-weight: 600;
  padding: 12px 14px;
  text-align: left;
  white-space: nowrap;
}

.visit-visa-page .vv-compare-table td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(13, 148, 136, 0.08);
  color: #4a5568;
  vertical-align: top;
}

.visit-visa-page .vv-compare-table tr:last-child td {
  border-bottom: none;
}

.visit-visa-page .vv-compare-table tr:nth-child(even) td {
  background: #f8fafc;
}

.visit-visa-page .vv-compare-table td:first-child {
  font-weight: 600;
  color: var(--vv-navy);
  white-space: nowrap;
}

.visit-visa-page .vv-flag-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-top: 8px;
}

.visit-visa-page .vv-flag-card__meta span {
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(13, 148, 136, 0.1);
  color: var(--vv-teal-dark);
  padding: 2px 7px;
  border-radius: 999px;
}

/* Visit visa destination landing pages */
.visit-visa-page.vv-landing .vv-landing-flag {
  margin-bottom: 16px;
}

.visit-visa-page.vv-landing .vv-landing-flag img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.visit-visa-page.vv-landing .vv-hero-bg--canada {
  background-color: #0c2d48;
  background-image:
    linear-gradient(135deg, rgba(12, 45, 72, 0.88) 0%, rgba(200, 16, 46, 0.68) 100%),
    url('../img/maps/canada-map.svg');
  background-size: cover, min(58vw, 560px) auto;
  background-position: center, 82% 45%;
  background-repeat: no-repeat;
}

.visit-visa-page.vv-landing .vv-hero-bg--australia {
  background-color: #0c2d48;
  background-image:
    linear-gradient(135deg, rgba(12, 45, 72, 0.88) 0%, rgba(0, 132, 61, 0.65) 50%, rgba(255, 204, 0, 0.28) 100%),
    url('../img/maps/australia-map.svg');
  background-size: cover, min(52vw, 500px) auto;
  background-position: center, 80% 50%;
  background-repeat: no-repeat;
}

.visit-visa-page.vv-landing .vv-hero-bg--uk {
  background-color: #0c2d48;
  background-image:
    linear-gradient(135deg, rgba(12, 45, 72, 0.9) 0%, rgba(1, 33, 105, 0.75) 50%, rgba(200, 16, 46, 0.5) 100%),
    url('../img/maps/uk-map.svg');
  background-size: cover, min(50vw, 480px) auto;
  background-position: center, 78% 42%;
  background-repeat: no-repeat;
}

.visit-visa-page.vv-landing .vv-hero-bg--usa {
  background-color: #0c2d48;
  background-image:
    linear-gradient(135deg, rgba(12, 45, 72, 0.88) 0%, rgba(0, 40, 104, 0.78) 50%, rgba(191, 10, 48, 0.45) 100%),
    url('../img/maps/usa-map.png');
  background-size: cover, min(56vw, 540px) auto;
  background-position: center, 80% 48%;
  background-repeat: no-repeat;
}

.visit-visa-page.vv-landing .vv-hero-bg--schengen {
  background-color: #0c2d48;
  background-image:
    linear-gradient(135deg, rgba(12, 45, 72, 0.88) 0%, rgba(13, 148, 136, 0.78) 45%, rgba(0, 51, 153, 0.5) 100%),
    url('../img/maps/europe-map.svg');
  background-size: cover, min(62vw, 600px) auto;
  background-position: center, 75% 40%;
  background-repeat: no-repeat;
}

.visit-visa-page .vv-gallery-item--map img {
  object-fit: contain;
  background: linear-gradient(180deg, #f0fdfa 0%, #e8f4fc 100%);
  padding: 16px;
}

.visit-visa-page .ca-intro-banner--map .vv-banner-map {
  object-fit: contain;
  background: linear-gradient(180deg, #e8f4fc 0%, #f0fdfa 100%);
  padding: 12px;
  min-height: 280px;
}

/* Schengen destinations showcase (replaces decorative gallery) */
.visit-visa-page .vv-schengen-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 992px) {
  .visit-visa-page .vv-schengen-showcase {
    grid-template-columns: 5fr 7fr;
    gap: 32px;
  }
}

.visit-visa-page .vv-schengen-map-card {
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(12, 45, 72, 0.06);
}

.visit-visa-page .vv-schengen-map-card img {
  width: 100%;
  height: auto;
  display: block;
  padding: 16px;
  background: linear-gradient(180deg, #e8f4fc 0%, #f0fdfa 100%);
  object-fit: contain;
}

.visit-visa-page .vv-schengen-map-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(13, 148, 136, 0.1);
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.visit-visa-page .vv-schengen-stat {
  background: #fff;
  padding: 14px 12px;
  text-align: center;
}

.visit-visa-page .vv-schengen-stat strong {
  display: block;
  font-size: 1.15rem;
  color: var(--vv-teal-dark);
  font-weight: 800;
}

.visit-visa-page .vv-schengen-stat span {
  font-size: 0.72rem;
  color: #5a6478;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.visit-visa-page .vv-schengen-rule {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-radius: 12px;
}

.visit-visa-page .vv-schengen-rule > i {
  font-size: 1.4rem;
  color: var(--vv-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-visa-page .vv-schengen-rule strong {
  display: block;
  font-size: 0.9rem;
  color: var(--vv-navy);
  margin-bottom: 4px;
}

.visit-visa-page .vv-schengen-rule p {
  font-size: 0.85rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.55;
}

.visit-visa-page .vv-schengen-countries__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vv-navy);
  margin: 0 0 6px;
}

.visit-visa-page .vv-schengen-countries__sub {
  font-size: 0.88rem;
  color: #5a6478;
  margin: 0 0 16px;
  line-height: 1.5;
}

.visit-visa-page .vv-schengen-countries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 576px) {
  .visit-visa-page .vv-schengen-countries {
    grid-template-columns: repeat(3, 1fr);
  }
}

.visit-visa-page .vv-schengen-country {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.1);
  border-radius: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.visit-visa-page .vv-schengen-country:hover {
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.12);
  transform: translateY(-1px);
}

.visit-visa-page .vv-schengen-country img {
  width: 40px;
  height: 27px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.visit-visa-page .vv-schengen-country h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vv-navy);
  margin: 0;
  line-height: 1.2;
}

.visit-visa-page .vv-schengen-country p {
  font-size: 0.68rem;
  color: #5a6478;
  margin: 2px 0 0;
  line-height: 1.3;
}

.visit-visa-page .vv-schengen-countries__footer {
  font-size: 0.82rem;
  color: #5a6478;
  margin: 16px 0 0;
  line-height: 1.55;
}
