:root {
  --m2-bg: #f5f7f9;
  --m2-surface: #ffffff;
  --m2-ink: #112530;
  --m2-ink-soft: #4f6673;
  --m2-primary: #0a84bf;
  --m2-primary-strong: #08638f;
  --m2-accent: #1bb17f;
  --m2-line: rgba(17, 37, 48, 0.12);
  --m2-shadow: 0 18px 40px rgba(10, 35, 50, 0.12);
  --m2-radius-lg: 24px;
  --m2-radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--m2-ink);
  background:
    radial-gradient(circle at 90% -10%, rgba(10, 132, 191, 0.12) 0%, rgba(10, 132, 191, 0) 44%),
    radial-gradient(circle at 0% 0%, rgba(27, 177, 127, 0.09) 0%, rgba(27, 177, 127, 0) 40%),
    var(--m2-bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

.m2-container {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.m2-strip {
  background: linear-gradient(120deg, #08334a, #0c5f87);
  color: #ebfbff;
}

.m2-strip-inner {
  min-height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.m2-strip p {
  margin: 0;
  font-size: 0.9rem;
}

.m2-strip a {
  text-decoration: none;
  font-weight: 700;
  color: #0e4f72;
  background: #effbff;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}

.m2-nav-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.m2-brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.m2-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  position: relative;
  background:
    linear-gradient(rgba(236, 250, 255, 0.95), rgba(236, 250, 255, 0.95)) center 10px / 3px 10px no-repeat,
    linear-gradient(rgba(236, 250, 255, 0.88), rgba(236, 250, 255, 0.88)) center 18px / 9px 2px no-repeat,
    linear-gradient(145deg, #0a84bf, #075f8a);
  border: 1px solid rgba(7, 65, 92, 0.22);
  box-shadow: 0 10px 18px rgba(8, 72, 102, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.m2-brand-mark::before,
.m2-brand-mark::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 13px;
  height: 16px;
  border: 2px solid rgba(236, 250, 255, 0.92);
  background: rgba(236, 250, 255, 0.08);
  border-radius: 56% 44% 62% 64% / 50% 50% 50% 50%;
}

.m2-brand-mark::before {
  left: 8px;
  transform: rotate(8deg);
}

.m2-brand-mark::after {
  right: 8px;
  transform: scaleX(-1) rotate(8deg);
}

.m2-brand-copy {
  display: inline-grid;
  gap: 0.16rem;
}

.m2-brand strong {
  font-family: "Bree Serif", serif;
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #0f3043;
}

.m2-brand small {
  font-size: 0.88rem;
  color: var(--m2-ink-soft);
  font-weight: 800;
  line-height: 1;
}

.m2-brand:hover .m2-brand-mark {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(8, 72, 102, 0.28);
}

.m2-menu-btn {
  display: none;
  border: 1px solid var(--m2-line);
  border-radius: 10px;
  background: var(--m2-surface);
  color: var(--m2-ink);
  padding: 0.42rem 0.72rem;
  font-weight: 700;
}

.m2-nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.m2-nav a {
  text-decoration: none;
  font-size: 0.93rem;
  color: var(--m2-ink-soft);
  font-weight: 600;
}

.m2-nav a:hover {
  color: var(--m2-primary-strong);
}

.m2-nav-pill {
  padding: 0.52rem 0.86rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--m2-primary), var(--m2-primary-strong));
  color: #effbff !important;
}

.m2-hero {
  padding: 2.4rem 0 3.2rem;
}

.m2-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: start;
}

.m2-kicker {
  margin: 0;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--m2-primary-strong);
  background: rgba(10, 132, 191, 0.12);
  border-radius: 999px;
  padding: 0.34rem 0.64rem;
}

.m2-hero-copy h1 {
  margin: 0.86rem 0 0;
  font-family: "Bree Serif", serif;
  font-size: clamp(2rem, 4.3vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.m2-hero-text {
  margin: 1rem 0 1.4rem;
  color: var(--m2-ink-soft);
  max-width: 60ch;
  font-size: 1.03rem;
}

.m2-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.66rem;
}

.m2-lung-care {
  margin-top: 1rem;
  border: 1px solid rgba(10, 132, 191, 0.28);
  border-radius: 14px;
  background: linear-gradient(130deg, rgba(10, 132, 191, 0.08), rgba(27, 177, 127, 0.08));
  padding: 0.78rem 0.88rem;
}

.m2-lung-care-title {
  margin: 0;
  font-weight: 800;
  color: #0d4f71;
  font-size: 0.95rem;
}

.m2-lung-care p:last-child {
  margin: 0.35rem 0 0;
  color: #264a5d;
  font-size: 0.92rem;
}

.m2-btn {
  border: 0;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.74rem 1.08rem;
  font-size: 0.94rem;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.22s ease;
}

.m2-btn:hover {
  transform: translateY(-2px);
}

.m2-btn-primary {
  color: #eefbff;
  background: linear-gradient(120deg, var(--m2-primary), var(--m2-primary-strong));
  box-shadow: 0 10px 24px rgba(10, 132, 191, 0.35);
}

.m2-btn-soft {
  color: var(--m2-primary-strong);
  background: var(--m2-surface);
  border: 1px solid rgba(8, 99, 143, 0.28);
}

.m2-quick-facts {
  margin: 1.35rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.m2-quick-facts div {
  border-left: 4px solid rgba(10, 132, 191, 0.25);
  padding-left: 0.65rem;
}

.m2-quick-facts dt {
  font-weight: 800;
  font-size: 0.9rem;
}

.m2-quick-facts dd {
  margin: 0.18rem 0 0;
  color: var(--m2-ink-soft);
  font-size: 0.92rem;
}

.m2-profile {
  border: 1px solid var(--m2-line);
  background: var(--m2-surface);
  border-radius: var(--m2-radius-lg);
  padding: 0.9rem;
  box-shadow: var(--m2-shadow);
}

.m2-photo-wrap {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(140deg, #dbe9f3, #f2f7fb);
  display: flex;
  align-items: center;
  justify-content: center;
}

.m2-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.m2-profile-body {
  text-align: center;
  padding: 0.85rem 0.2rem 0.2rem;
}

.m2-profile-body h2 {
  margin: 0;
  font-size: 1.34rem;
}

.m2-profile-body p {
  margin: 0.22rem 0 0.9rem;
  color: var(--m2-ink-soft);
}

.m2-badges {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.m2-badges img {
  width: 118px;
  height: 62px;
  object-fit: contain;
}

.m2-section {
  padding: 4rem 0;
}

.m2-telemed {
  padding-top: 0.6rem;
}

.m2-telemed-card {
  border: 1px solid rgba(10, 132, 191, 0.26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 18%, rgba(120, 227, 255, 0.2), rgba(120, 227, 255, 0) 34%),
    linear-gradient(130deg, #08354e, #0a6c9a 62%, #0d7cb3);
  color: #ebfbff;
  padding: 1.2rem;
  box-shadow: 0 18px 34px rgba(6, 34, 51, 0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.m2-telemed-card h2 {
  margin: 0.7rem 0 0;
  font-family: "Bree Serif", serif;
  line-height: 1.08;
  text-wrap: balance;
}

.m2-telemed-card p {
  margin: 0.66rem 0 0;
  color: rgba(235, 251, 255, 0.92);
}

.m2-telemed-actions {
  display: grid;
  gap: 0.5rem;
  min-width: min(290px, 100%);
}

.m2-telemed-actions .m2-btn-primary {
  box-shadow: none;
  color: #053a2c;
  background: linear-gradient(120deg, #27ca9a, #13a87c);
}

.m2-telemed-actions .m2-btn-soft {
  border-color: rgba(235, 251, 255, 0.45);
  color: #ebfbff;
  background: rgba(235, 251, 255, 0.08);
}

.m2-section-head {
  margin-bottom: 1.35rem;
}

.m2-section-head h2 {
  margin: 0.72rem 0 0;
  font-family: "Bree Serif", serif;
  font-size: clamp(1.8rem, 3.3vw, 2.7rem);
  line-height: 1.08;
  text-wrap: balance;
}

.m2-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.88rem;
}

.m2-scenario {
  text-align: left;
  border: 1px solid var(--m2-line);
  background: var(--m2-surface);
  border-radius: var(--m2-radius-md);
  padding: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.m2-scenario strong {
  display: block;
  font-size: 1.03rem;
}

.m2-scenario span {
  display: block;
  margin-top: 0.38rem;
  color: var(--m2-ink-soft);
  font-size: 0.91rem;
}

.m2-scenario:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(9, 45, 67, 0.12);
}

.m2-scenario.is-active {
  border-color: rgba(10, 132, 191, 0.45);
  box-shadow: 0 10px 24px rgba(10, 132, 191, 0.2);
}

.m2-scenario-result {
  margin-top: 0.95rem;
  border: 1px solid rgba(10, 132, 191, 0.3);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: rgba(10, 132, 191, 0.08);
  color: #174156;
  font-weight: 600;
}

.m2-scenario-result.state-alert {
  border-color: rgba(204, 56, 56, 0.42);
  background: rgba(204, 56, 56, 0.09);
  color: #7b2424;
}

.m2-scenario-result.state-plan {
  border-color: rgba(27, 177, 127, 0.4);
  background: rgba(27, 177, 127, 0.1);
  color: #0f5c43;
}

.m2-symptoms {
  background: linear-gradient(180deg, rgba(10, 132, 191, 0.04), rgba(10, 132, 191, 0.1));
}

.m2-symptoms-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.m2-symptoms-grid h2 {
  margin: 0.72rem 0;
  font-family: "Bree Serif", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-wrap: balance;
}

.m2-symptoms-grid p {
  margin: 0;
  color: var(--m2-ink-soft);
}

.m2-tabs {
  border: 1px solid var(--m2-line);
  border-radius: var(--m2-radius-md);
  background: var(--m2-surface);
  padding: 0.8rem;
}

.m2-tablist {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.m2-tablist button {
  border: 1px solid var(--m2-line);
  border-radius: 999px;
  background: #f8fbfd;
  color: var(--m2-ink-soft);
  padding: 0.45rem 0.72rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.m2-tablist button.is-active {
  background: linear-gradient(120deg, var(--m2-primary), var(--m2-primary-strong));
  color: #f1fbff;
  border-color: transparent;
}

.m2-tabpanel {
  display: none;
  margin-top: 0.75rem;
}

.m2-tabpanel.is-active {
  display: block;
}

.m2-tabpanel ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.48rem;
}

.m2-tabpanel li {
  color: var(--m2-ink-soft);
}

.m2-hospital-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.m2-hospital-card {
  border: 1px solid var(--m2-line);
  background: var(--m2-surface);
  border-radius: var(--m2-radius-md);
  padding: 1rem;
  box-shadow: 0 10px 20px rgba(12, 48, 68, 0.08);
}

.m2-hospital-card img {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

.m2-hospital-card h3 {
  margin: 0.7rem 0 0;
  text-align: center;
}

.m2-hospital-card p {
  margin: 0.42rem 0 0.75rem;
  color: var(--m2-ink-soft);
  font-size: 0.92rem;
  text-align: center;
}

.m2-hospital-card a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--m2-primary-strong);
  font-weight: 700;
}

.m2-faq {
  background: linear-gradient(180deg, rgba(27, 177, 127, 0.06), rgba(27, 177, 127, 0));
}

.m2-faq-list {
  display: grid;
  gap: 0.68rem;
}

.m2-faq-list details {
  border: 1px solid var(--m2-line);
  border-radius: 13px;
  background: var(--m2-surface);
  padding: 0.8rem 0.9rem;
}

.m2-faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.m2-faq-list p {
  margin: 0.6rem 0 0;
  color: var(--m2-ink-soft);
  font-size: 0.92rem;
}

.m2-faq-list a {
  color: var(--m2-primary-strong);
  font-weight: 700;
}

.m2-cta {
  padding-top: 2.7rem;
}

.m2-cta-grid {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(10, 132, 191, 0.22);
  border-radius: 26px;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 90% 20%, rgba(120, 227, 255, 0.26), rgba(120, 227, 255, 0) 36%),
    linear-gradient(130deg, #08354e, #0a6c9a 55%, #0e7bb1);
  box-shadow: 0 20px 42px rgba(6, 34, 51, 0.24);
  color: #ebfbff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.1rem;
}

.m2-cta-grid::after {
  content: "";
  position: absolute;
  inset: auto -45px -55px auto;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(20, 205, 162, 0.18);
  filter: blur(1px);
  z-index: -1;
}

.m2-cta-grid h2 {
  margin: 0.75rem 0 0;
  font-family: "Bree Serif", serif;
  line-height: 1.08;
  max-width: 24ch;
  text-wrap: balance;
}

.m2-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  min-width: min(420px, 100%);
}

.m2-cta-actions .m2-btn {
  min-width: 126px;
  min-height: 47px;
}

.m2-cta-actions .m2-btn-primary {
  box-shadow: none;
  color: #053a2c;
  background: linear-gradient(120deg, #27ca9a, #13a87c);
}

.m2-cta-actions .m2-btn-soft {
  border-color: rgba(235, 251, 255, 0.45);
  color: #ebfbff;
  background: rgba(235, 251, 255, 0.08);
}

.m2-footer {
  padding: 1.7rem 0 2.6rem;
}

.m2-footer-card {
  border: 1px solid var(--m2-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 10%, rgba(10, 132, 191, 0.1), rgba(10, 132, 191, 0) 32%),
    linear-gradient(175deg, #f7fbfd, #ffffff 52%);
  padding: 1.3rem;
  box-shadow: var(--m2-shadow);
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr;
  gap: 1rem;
}

.m2-footer-kicker {
  margin: 0;
  display: inline-flex;
  padding: 0.32rem 0.66rem;
  border-radius: 999px;
  background: rgba(10, 132, 191, 0.14);
  color: var(--m2-primary-strong);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.m2-footer-brand h3 {
  margin: 0.7rem 0 0;
  font-family: "Bree Serif", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.1;
  text-wrap: balance;
}

.m2-footer-brand p:last-child {
  margin: 0.55rem 0 0;
  color: var(--m2-ink-soft);
  font-size: 0.92rem;
}

.m2-footer-links {
  display: grid;
  gap: 0.42rem;
  align-content: start;
}

.m2-footer-links a {
  text-decoration: none;
  color: var(--m2-ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.m2-footer-links a:hover {
  color: var(--m2-primary-strong);
}

.m2-footer-contact {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.m2-footer-contact a {
  text-decoration: none;
  color: #0b4867;
  background: rgba(10, 132, 191, 0.1);
  border: 1px solid rgba(10, 132, 191, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.82rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.m2-footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--m2-line);
  padding-top: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: var(--m2-ink-soft);
  font-size: 0.86rem;
}

.m2-footer-bottom p {
  margin: 0;
}

.m2-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.m2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .m2-hero-grid,
  .m2-telemed-card,
  .m2-symptoms-grid,
  .m2-cta-grid {
    grid-template-columns: 1fr;
  }

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

  .m2-cta-actions {
    min-width: 0;
    justify-content: flex-start;
  }

  .m2-telemed-actions {
    min-width: 0;
  }

  .m2-footer-card {
    grid-template-columns: 1fr 1fr;
  }

  .m2-footer-contact {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .m2-nav-row {
    min-height: auto;
    flex-wrap: wrap;
    row-gap: 0.72rem;
    padding: 0.78rem 0;
  }

  .m2-menu-btn {
    display: inline-flex;
    margin-left: auto;
  }

  .m2-nav {
    position: static;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    background: #f7fbfd;
    border: 1px solid rgba(17, 37, 48, 0.15);
    border-radius: 14px;
    padding: 0.84rem;
    box-shadow: 0 12px 24px rgba(9, 42, 62, 0.14);
    z-index: 20;
  }

  .m2-nav.open {
    display: flex;
  }

  .m2-nav a {
    width: 100%;
    padding: 0.32rem 0.08rem;
  }

  .m2-nav-pill {
    width: 100%;
    text-align: center;
    padding: 0.58rem 0.86rem !important;
  }

  .m2-strip-inner {
    min-height: 62px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0.5rem 0;
  }

  .m2-photo-wrap {
    height: 340px;
  }

  .m2-brand-mark {
    width: 42px;
    height: 42px;
  }

  .m2-brand strong {
    font-size: 1.55rem;
  }

  .m2-brand small {
    font-size: 0.8rem;
  }

  .m2-scenario-grid,
  .m2-hospital-grid {
    grid-template-columns: 1fr;
  }

  .m2-hero-cta,
  .m2-telemed-actions,
  .m2-cta-actions {
    width: 100%;
  }

  .m2-cta-actions .m2-btn {
    min-width: 0;
    flex: 1 1 100%;
  }

  .m2-footer-card {
    grid-template-columns: 1fr;
  }

  .m2-footer-contact {
    grid-template-columns: 1fr;
  }

  .m2-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .m2-container {
    width: calc(100% - 1.2rem);
  }

  .m2-strip-inner {
    min-height: auto;
    padding: 0.55rem 0;
    gap: 0.5rem;
  }

  .m2-strip p {
    font-size: 0.81rem;
  }

  .m2-strip a {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0.74rem;
  }

  .m2-nav-row {
    padding: 0.62rem 0;
    row-gap: 0.62rem;
  }

  .m2-brand {
    gap: 0.56rem;
  }

  .m2-brand strong {
    font-size: 1.34rem;
  }

  .m2-brand small {
    font-size: 0.72rem;
  }

  .m2-nav {
    padding: 0.74rem;
  }

  .m2-hero {
    padding: 1.6rem 0 2.2rem;
  }

  .m2-hero-copy h1 {
    font-size: clamp(1.64rem, 10.2vw, 2.15rem);
    line-height: 1.08;
  }

  .m2-hero-text {
    font-size: 0.97rem;
  }

  .m2-section {
    padding: 2.4rem 0;
  }

  .m2-profile,
  .m2-telemed-card,
  .m2-tabs,
  .m2-hospital-card,
  .m2-cta-grid,
  .m2-footer-card {
    padding: 0.92rem;
    border-radius: 18px;
  }

  .m2-photo-wrap {
    height: 300px;
  }

  .m2-profile-body h2 {
    font-size: 1.2rem;
  }

  .m2-badges {
    gap: 0.55rem;
  }

  .m2-badges img {
    width: min(42vw, 118px);
    height: 56px;
  }

  .m2-tablist button {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .m2-faq-list details {
    padding: 0.72rem 0.8rem;
  }

  .m2-cta-grid::after {
    display: none;
  }

  .m2-footer-contact a {
    border-radius: 12px;
  }
}

@media (max-width: 400px) {
  .m2-brand small {
    display: none;
  }

  .m2-strip p {
    font-size: 0.76rem;
  }

  .m2-kicker {
    font-size: 0.72rem;
  }

  .m2-hero-copy h1 {
    font-size: clamp(1.5rem, 9.5vw, 1.9rem);
  }

  .m2-photo-wrap {
    height: 264px;
  }
}
