/* NSG Reasons */

.nsg-reasons {
  background-color: #111;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 2.5rem 0 1rem;
}

.nsg-reasons .nsg-container {
  padding: 0 4rem;
}

.nsg-reasons__heading {
  font-family: var(--nsg-font-display);
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 600;
  color: #fcfafa;
  margin: 0 0 0.75rem;
}

.nsg-reasons__rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 0 2rem;
}

.nsg-reasons__grid {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 300px) 1fr;
  gap: 2rem;
  align-items: center;
}

.nsg-reasons__col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-bottom: 2rem;
}

.nsg-reasons__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.nsg-reasons__icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  display: block;
}

.nsg-reasons__title {
  font-family: var(--nsg-font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0 0 0.4rem;
}

.nsg-reasons__copy {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.nsg-reasons__mascot {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.nsg-reasons__mascot-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: -2.5rem;
}

@media (max-width: 800px) {
  .nsg-reasons {
    margin: 1rem;
  }

  .nsg-reasons .nsg-container {
    padding: 0 1.5rem;
  }

  .nsg-reasons__grid {
    grid-template-columns: 1fr;
  }

  .nsg-reasons__mascot {
    display: none;
  }

  .nsg-reasons__col {
    gap: 1.25rem;
    padding-bottom: 0;
  }
}
