/* ==================================================
   MOIT - Site Map Page
   Node: 279
   Scoped CSS
   ================================================== */

/* ==================================================
   Root
   ================================================== */

.moit-sitemap-page {
  background: #f7fafc;
  color: #243746;
}


/* ==================================================
   HERO
   ================================================== */

.moit-sitemap-hero {
  position: relative;

  padding: 72px 24px 56px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fafc 100%
    );

  overflow: hidden;
}

.moit-sitemap-hero::before {
  content: "";

  position: absolute;

  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;

  height: 4px;

  background:
    linear-gradient(
      90deg,
      #0f766e,
      #15803d,
      #d4a017
    );
}

.moit-sitemap-hero__content {
  max-width: 860px;
  margin: 0 auto;

  text-align: center;
}

.moit-sitemap-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;
  padding: 8px 18px;

  border-radius: 999px;

  background: rgba(15,118,110,.08);
  color: #0f766e;

  font-size: 13px;
  font-weight: 700;
}

.moit-sitemap-hero__title {
  margin: 0 0 18px;

  color: #0f2a44;

  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
}

.moit-sitemap-hero__description {
  max-width: 760px;
  margin: 0 auto;

  color: #556472;

  font-size: 1.05rem;
  line-height: 2;
}


/* ==================================================
   Site Map Grid Section
   ================================================== */

.moit-sitemap-grid-section {
  padding: 0 24px 72px;
}

.moit-sitemap-grid {
  max-width: 1320px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


/* ==================================================
   Site Map Card
   ================================================== */

.moit-sitemap-card {
  background: #ffffff;

  border: 1px solid #e5edf3;
  border-radius: 20px;

  padding: 28px 30px;

  box-shadow:
    0 10px 30px rgba(15,42,68,.04);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.moit-sitemap-card:hover {
  transform: translateY(-4px);

  border-color: rgba(15,118,110,.16);

  box-shadow:
    0 16px 36px rgba(15,42,68,.08);
}

.moit-sitemap-card h2 {
  margin: 0 0 20px;

  position: relative;

  color: #0f2a44;

  font-size: 1.22rem;
  font-weight: 800;
}

.moit-sitemap-card h2::after {
  content: "";

  display: block;

  width: 42px;
  height: 3px;

  margin-top: 10px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #0f766e,
      #d4a017
    );
}


/* ==================================================
   Links List
   ================================================== */

.moit-sitemap-card ul {
  list-style: none;

  margin: 0;
  padding: 0;
}

.moit-sitemap-card li {
  margin: 0;
  padding: 0;
}

.moit-sitemap-card li + li {
  margin-top: 10px;
}

.moit-sitemap-card a {
  position: relative;

  display: block;

  padding: 8px 0;
  padding-inline-start: 18px;

  color: #556472;

  text-decoration: none;

  font-size: .96rem;
  line-height: 1.7;

  transition:
    color .2s ease,
    padding .2s ease;
}

.moit-sitemap-card a::before {
  content: "›";

  position: absolute;

  inset-inline-start: 0;
  top: 50%;

  transform: translateY(-50%);

  color: #0f766e;

  font-size: 1rem;
  font-weight: 700;
}

.moit-sitemap-card a:hover {
  color: #0f766e;

  padding-inline-start: 22px;
}

/* ==================================================
   FOOTER NOTE
   ================================================== */

.moit-sitemap-note {
  padding: 0 24px 80px;
}

.moit-sitemap-note__content {
  max-width: 1100px;
  margin: 0 auto;

  padding: 34px 38px;

  text-align: center;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f9fbfc 100%
    );

  border: 1px solid #e5edf3;
  border-radius: 20px;

  box-shadow:
    0 12px 30px rgba(15, 42, 68, .04);
}

.moit-sitemap-note__content p {
  margin: 0;

  color: #556472;

  font-size: 1rem;
  line-height: 2;
}


/* ==================================================
   TABLET
   (769px - 1024px)
   ================================================== */

@media (min-width: 769px) and (max-width: 1024px) {

  .moit-sitemap-hero {
    padding: 64px 28px 48px;
  }

  .moit-sitemap-grid-section {
    padding: 0 28px 60px;
  }

  .moit-sitemap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .moit-sitemap-card {
    padding: 26px 24px;
  }

  .moit-sitemap-note {
    padding: 0 28px 64px;
  }

  .moit-sitemap-note__content {
    padding: 30px 28px;
  }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 768px) {

  .moit-sitemap-hero {
    padding: 56px 20px 42px;
  }

  .moit-sitemap-hero__badge {
    margin-bottom: 18px;
  }

  .moit-sitemap-hero__title {
    font-size: 2rem;
  }

  .moit-sitemap-hero__description {
    font-size: .95rem;
    line-height: 1.9;
  }

  .moit-sitemap-grid-section {
    padding: 0 20px 48px;
  }

  .moit-sitemap-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .moit-sitemap-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .moit-sitemap-card h2 {
    font-size: 1.12rem;
    margin-bottom: 18px;
  }

  .moit-sitemap-card a {
    font-size: .93rem;
    line-height: 1.65;
  }

  .moit-sitemap-note {
    padding: 0 20px 56px;
  }

  .moit-sitemap-note__content {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .moit-sitemap-note__content p {
    font-size: .95rem;
    line-height: 1.9;
  }

}


/* ==================================================
   ACCESSIBILITY
   ================================================== */

.moit-sitemap-card a:focus-visible {
  outline: 2px solid rgba(15, 118, 110, .25);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ==================================================
   REDUCED MOTION
   ================================================== */

@media (prefers-reduced-motion: reduce) {

  .moit-sitemap-page *,
  .moit-sitemap-page *::before,
  .moit-sitemap-page *::after {
    animation: none !important;
    transition: none !important;
  }

}


/* ==================================================
   PRINT
   ================================================== */

@media print {

  .moit-sitemap-page {
    background: #ffffff;
  }

  .moit-sitemap-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #d9dfe5;
  }

  .moit-sitemap-card:hover {
    transform: none;
  }

}


/* ==================================================
   END OF FILE
   ================================================== */