/*
Theme Name: MedTravel Modern
Theme URI: https://test.medtravel.com.ua/
Author: Codex
Description: Custom staging theme for MedTravel medical tourism.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 7.0
Text Domain: medtravel-modern
*/

:root {
  --ink: #142032;
  --muted: #5e6f82;
  --line: #dce7ee;
  --soft: #f4f9fb;
  --teal: #087f8c;
  --teal-dark: #05606a;
  --coral: #ef7d65;
  --gold: #d8a13d;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(20, 32, 50, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.mt-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.mt-topbar {
  background: #102235;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.mt-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
}

.mt-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 238, 0.9);
  backdrop-filter: blur(14px);
}

.mt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
}

.mt-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 24px;
  font-weight: 800;
}

.mt-brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--teal);
  border-radius: var(--radius);
  font-size: 22px;
}

.mt-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #334458;
  font-weight: 650;
}

.mt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  font-weight: 750;
  box-shadow: 0 10px 22px rgba(8, 127, 140, 0.22);
}

.mt-button--light {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.mt-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #eaf5f7;
}

.mt-hero__image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(244, 249, 251, 0.98) 0%, rgba(244, 249, 251, 0.88) 38%, rgba(244, 249, 251, 0.24) 68%),
    url("assets/hero-medtravel.png");
  background-size: cover;
  background-position: center right;
}

.mt-hero__inner {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 690px;
  padding: 58px 0 84px;
}

.mt-hero__content {
  width: min(640px, 100%);
}

.mt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: 0;
}

.mt-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--coral);
}

.mt-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.mt-hero p {
  margin: 0 0 28px;
  color: #405267;
  font-size: 20px;
}

.mt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.mt-search {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 10px;
  width: min(860px, 100%);
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mt-search input,
.mt-search select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.mt-search--inline {
  width: 100%;
  margin: 0;
  box-shadow: none;
}

.mt-picker {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  margin: 0 0 44px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-picker h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.15;
}

.mt-picker p {
  margin: 0;
  color: var(--muted);
}

.mt-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mt-stat {
  padding: 28px 24px;
  background: var(--white);
}

.mt-stat strong {
  display: block;
  color: var(--teal-dark);
  font-size: 30px;
  line-height: 1;
}

.mt-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.mt-section {
  padding: 76px 0;
}

.mt-section--soft {
  background: var(--soft);
}

.mt-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.mt-section__head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.mt-section__head p {
  width: min(520px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.mt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mt-card {
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-card__image {
  width: calc(100% + 48px);
  height: 150px;
  margin: -24px -24px 20px;
  object-fit: cover;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.mt-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  background: #e1f3f4;
  border-radius: var(--radius);
  font-size: 24px;
}

.mt-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.mt-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.mt-card p {
  margin: 0;
  color: var(--muted);
}

.mt-content {
  max-width: 820px;
  color: #334458;
  font-size: 18px;
}

.mt-content h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 30px;
}

.mt-content ul {
  padding-left: 22px;
}

.mt-hub-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: stretch;
  margin: 0 0 38px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-hub-intro__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: 10px 8px;
}

.mt-hub-intro__content h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.06;
}

.mt-hub-intro__content p {
  width: min(660px, 100%);
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
}

.mt-hub-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mt-hub-intro__media {
  overflow: hidden;
  margin: 0;
  min-height: 330px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-hub-intro__media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.mt-hub-intro__stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mt-hub-intro__stats div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-hub-intro__stats strong {
  display: block;
  color: var(--teal-dark);
  font-size: 26px;
  line-height: 1;
}

.mt-hub-intro__stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.mt-hub-intro__points {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mt-hub-intro__points span {
  padding: 8px 11px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
}

.mt-article-page {
  padding: 58px 0 72px;
}

.mt-article {
  max-width: 1180px;
}

.mt-article-header {
  max-width: 920px;
  margin-bottom: 28px;
}

.mt-article-header h1 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

.mt-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.mt-article-meta span {
  padding: 8px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.mt-article-shell {
  display: grid;
  grid-template-columns: minmax(0, 820px) 320px;
  gap: 34px;
  align-items: start;
}

.mt-article-body {
  max-width: none;
}

.mt-article-body > *:first-child {
  margin-top: 0;
}

.mt-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.mt-article-body th,
.mt-article-body td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.mt-article-aside {
  position: sticky;
  top: 104px;
}

.mt-article-aside .mt-panel h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.mt-article-aside .mt-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

.mt-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.mt-hub-link {
  display: block;
  min-height: 118px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-hub-link strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.mt-hub-link span {
  color: var(--muted);
  font-size: 15px;
}

.mt-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mt-feature-card {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-feature-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.mt-feature-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.mt-feature-card p {
  margin: 0;
  color: var(--muted);
}

.mt-check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mt-check-card {
  min-height: 210px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-check-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 32px;
  margin-bottom: 28px;
  color: var(--teal-dark);
  background: #e1f3f4;
  border-radius: 999px;
  font-weight: 900;
}

.mt-check-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.mt-check-card p {
  margin: 0;
  color: var(--muted);
}

.mt-compare-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.mt-compare-table div {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mt-compare-table div:last-child {
  border-bottom: 0;
}

.mt-compare-table strong {
  color: var(--ink);
}

.mt-compare-table span {
  color: var(--muted);
}

.mt-country-route {
  display: grid;
  gap: 22px;
  margin: 0 0 44px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-country-route h2 {
  max-width: 820px;
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.mt-country-route p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.mt-dynamic-section {
  margin-top: 44px;
}

.mt-dynamic-section h2,
.mt-related h2,
.mt-page-cta h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.15;
}

.mt-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mt-list-card {
  display: block;
  overflow: hidden;
  min-height: 260px;
  padding: 0 18px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-list-card__image {
  width: calc(100% + 36px);
  height: 146px;
  margin: 0 -18px 16px;
  object-fit: cover;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.mt-list-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.22;
}

.mt-list-card span {
  color: var(--muted);
  font-size: 15px;
}

.mt-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -14px 0 26px;
  padding: 0;
  list-style: none;
}

.mt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  margin: 0 8px 8px 0;
  color: var(--teal-dark);
  background: #e1f3f4;
  border: 1px solid #bde3e6;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.mt-page-cta {
  margin-top: 44px;
  padding: 28px;
  color: var(--white);
  background: #102235;
  border-radius: var(--radius);
}

.mt-page-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.mt-lead-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 44px;
  padding: 30px;
  color: var(--white);
  background: #102235;
  border-radius: var(--radius);
}

.mt-lead-block__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.mt-lead-block h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.mt-lead-block p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.mt-lead-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mt-lead-proof span {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) - 4px);
}

.mt-lead-proof strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.mt-lead-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.mt-lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}

.mt-lead-form label span {
  font-size: 13px;
}

.mt-lead-form input,
.mt-lead-form select,
.mt-lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 6px);
  font: inherit;
}

.mt-lead-form textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.mt-lead-form .mt-button {
  width: 100%;
}

.mt-lead-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.mt-lead-notice {
  padding: 12px 14px;
  color: var(--ink);
  background: #fff7e0;
  border: 1px solid rgba(255, 198, 74, 0.55);
  border-radius: calc(var(--radius) - 6px);
}

.mt-lead-notice--success {
  color: #073f35;
  background: #dff8ef;
  border-color: rgba(8, 127, 140, 0.28);
}

.mt-lead-checklist {
  display: grid;
  gap: 7px;
  margin: 2px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 14px;
}

.mt-lead-checklist li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.mt-content .mt-answer-box,
.mt-content .mt-note-box {
  padding: 22px;
  margin: 24px 0;
  background: #f7fbfd;
  border: 1px solid #d7e5ee;
  border-radius: 8px;
}

.mt-content .mt-answer-box strong,
.mt-content .mt-note-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.mt-content .mt-fact-grid,
.mt-content .mt-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.mt-content .mt-fact-grid div,
.mt-content .mt-route-grid div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mt-content .mt-fact-grid strong,
.mt-content .mt-route-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 1.35rem;
  line-height: 1.1;
}

.mt-content .mt-route-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 800;
  background: var(--teal);
  border-radius: 50%;
}

.mt-content table {
  width: 100%;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-collapse: collapse;
}

.mt-content th,
.mt-content td {
  padding: 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.mt-content th {
  color: var(--ink);
  background: #eef7fa;
}

.mt-content tr:last-child td {
  border-bottom: 0;
}

.mt-content .mt-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-left: 0;
}

.mt-content .mt-checklist li {
  padding: 12px 14px;
  list-style: none;
  background: #f7fbfd;
  border-left: 4px solid var(--teal);
}

.mt-related {
  margin-top: 44px;
}

.mt-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.mt-detail-main {
  min-width: 0;
}

.mt-detail-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.mt-aside-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(20, 32, 50, 0.08);
}

.mt-aside-card--soft {
  background: var(--soft);
  box-shadow: none;
}

.mt-aside-card h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.mt-aside-card p {
  margin: 0;
  color: var(--muted);
}

.mt-fact-list {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.mt-fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.mt-fact-list span {
  color: var(--muted);
}

.mt-fact-list strong {
  text-align: right;
}

.mt-mini-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mt-mini-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.mt-mini-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.mt-faq {
  display: grid;
  gap: 10px;
}

.mt-faq details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.mt-faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.mtca-article-image {
  overflow: hidden;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.mtca-article-image img {
  width: 100%;
  height: clamp(240px, 36vw, 430px);
  object-fit: cover;
}

.mtca-article-image figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
}

.mtca-infographic {
  margin: 0 0 34px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mtca-infographic h2 {
  margin-top: 0;
}

.mtca-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.mtca-steps div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mtca-steps strong {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
}

.mtca-steps span {
  display: block;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.mtca-infographic table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.mtca-infographic th,
.mtca-infographic td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.mt-compact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mt-compact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-compact-row strong {
  color: var(--ink);
  line-height: 1.25;
}

.mt-compact-row span {
  flex: 0 0 auto;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.mt-page-visual {
  overflow: hidden;
  margin: 0 0 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.mt-page-visual img {
  width: 100%;
  height: clamp(220px, 34vw, 420px);
  object-fit: cover;
}

.mt-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  margin: 0 0 34px;
}

.mt-detail-hero__media {
  overflow: hidden;
  margin: 0;
  min-height: 360px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-detail-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.mt-detail-hero__facts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-detail-hero__facts h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.15;
}

.mt-detail-hero__facts p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.mt-stat-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mt-stat-tiles div {
  min-height: 96px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-stat-tiles strong {
  display: block;
  color: var(--teal-dark);
  font-size: 26px;
  line-height: 1.05;
}

.mt-stat-tiles span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.mt-destinations {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: stretch;
}

.mt-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mt-panel h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.mt-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.mt-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mt-list li:last-child {
  border-bottom: 0;
}

.mt-tag {
  color: var(--teal-dark);
  font-weight: 800;
}

.mt-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mt-step {
  position: relative;
  padding: 24px;
  background: #102235;
  color: var(--white);
  border-radius: var(--radius);
  min-height: 220px;
}

.mt-process--light .mt-step {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.mt-process--light .mt-step p {
  color: var(--muted);
}

.mt-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  color: #102235;
  background: var(--coral);
  border-radius: 50%;
  font-weight: 900;
}

.mt-step h3 {
  margin: 0 0 10px;
}

.mt-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.mt-cta {
  padding: 44px;
  color: var(--white);
  background: #0f5160;
  border-radius: var(--radius);
}

.mt-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
}

.mt-cta p {
  width: min(680px, 100%);
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

.mt-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #102235;
}

.mt-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 900px) {
  .mt-topbar__inner,
  .mt-header__inner,
  .mt-section__head,
  .mt-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mt-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .mt-hero,
  .mt-hero__inner {
    min-height: auto;
  }

  .mt-hero__inner {
    padding: 56px 0;
  }

  .mt-hero__image {
    background-image:
      linear-gradient(180deg, rgba(244, 249, 251, 0.98) 0%, rgba(244, 249, 251, 0.92) 58%, rgba(244, 249, 251, 0.48) 100%),
      url("assets/hero-medtravel.png");
    background-position: center bottom;
  }

  .mt-search,
  .mt-picker,
  .mt-stats,
  .mt-grid,
  .mt-hub-grid,
  .mt-list-grid,
  .mt-feature-grid,
  .mt-check-grid,
  .mt-hub-intro,
  .mt-article-shell,
  .mt-detail-layout,
  .mt-detail-hero,
  .mt-lead-block,
  .mtca-steps,
  .mt-compact-list,
  .mt-destinations,
  .mt-process,
  .mt-content .mt-fact-grid,
  .mt-content .mt-route-grid,
  .mt-content .mt-checklist {
    grid-template-columns: 1fr;
  }

  .mt-detail-aside,
  .mt-article-aside {
    position: static;
  }

  .mt-hub-intro__stats {
    grid-template-columns: 1fr;
  }

  .mt-lead-proof {
    grid-template-columns: 1fr;
  }

  .mt-hub-intro__content,
  .mt-hub-intro__media,
  .mt-hub-intro__media img {
    min-height: 260px;
  }

  .mt-compare-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mt-detail-hero__media,
  .mt-detail-hero__media img {
    min-height: 260px;
  }

  .mt-compact-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .mt-section {
    padding: 54px 0;
  }
}

@media (max-width: 560px) {
  .mt-container {
    width: min(100% - 22px, 1180px);
  }

  .mt-hero h1 {
    font-size: 38px;
  }

  .mt-search {
    padding: 8px;
  }

  .mt-card,
  .mt-panel,
  .mt-step,
  .mt-cta,
  .mt-lead-block,
  .mt-detail-hero__facts {
    padding: 20px;
  }

  .mt-stat-tiles {
    grid-template-columns: 1fr;
  }
}
