/* ==========================================================================
   THEME-COVERED  —  Covered / Not covered icon grid
   ========================================================================== */

.theme-covered {
  padding: clamp(80px, 8vw, 120px) 0 120px;
  background: var(--highlight-light);
}
.theme-covered__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
}
.theme-covered__grid:before {
  content: '';
  position: absolute;
  left: 50%;
  width: 3px;
  top: calc(100px + 50%);
  height: 332px;
  background: #004F42;
  transform: translate(-50%, -50%);
}
.theme-covered__col h2 {
  text-align: center;
  margin: 0 0 100px
}

.theme-covered__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 24px;
}

.theme-covered__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  /* padding: clamp(16px, 2vw, 28px); */
  max-width: 130px;
}

.theme-covered__item img {
  width: auto;
  height: 109px;
  object-fit: contain;
}

.theme-covered__item span {
  color: var(--MSSF-New-Site-Black-Text, var(--color-grey-16, #282828));
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 550;
  line-height: 150%; /* 39px */
}

.theme-covered__cta {
  text-align: center;
}

.theme-covered__cta .btn-layout.green-outline {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans-condensed);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
  border: 2px solid var(--brand);
  background: transparent;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background .2s, color .2s;
}

.theme-covered__cta .btn-layout.green-outline:hover {
  background: var(--brand);
  color: #fff;
}
@media (max-width: 1450px) {
  .theme-covered__col h2 {
    min-height: 105px;
    margin: 0 0 50px
  }
}
@media (max-width: 991px) {
  .theme-covered__col h2 {
    min-height: 158px;
    margin: 0 0 50px
  }
  .theme-covered__item img {
    height: 70px;
  }
  .theme-covered__item span { font-size: 22px }
}
@media (max-width: 768px) {
  .theme-covered__col h2 {
    min-height: auto;
    margin: 40px 0 50px
  }
  .theme-covered__grid:before { display: none }
  .theme-covered { padding: 48px 0; }
  .theme-covered__grid { grid-template-columns: 1fr; gap: 40px; }
  .theme-covered__heading { font-size: 26px; }
  .theme-covered__icons { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .theme-covered { padding: 36px 0; }
  .theme-covered__heading { font-size: 22px; }
}
