.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  color: var(--white-text-color);
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: calc(1.4rem + 1.8vw);
}

h2 {
  color: var(--white-text-color);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: calc(1.1rem + 1.5vw);
}

.description {
  color: var(--white-text-color);
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 300;
}

.stores-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.stores-links a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  width: fit-content;
}

.stores-links img {
  background-color: var(--tertiary-background-color);
  width: 170px;
  max-width: 48vw;
}

.cards-container {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
  gap: 1rem;
}

.header {
  padding: 1.5rem 0 3rem;
}

.hero-row {
  display: grid;
  gap: 1.75rem;
}

.hero-row.align-items-center {
  align-items: center;
}

.card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.3rem;
  color: #e7ecff;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 35px rgba(7, 6, 23, 0.35);
  backdrop-filter: blur(10px);
}

.ni-black {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #0b0a1a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  font-size: 1.35rem;
}

.pin3 {
  background: linear-gradient(135deg, #ff6a88, #ff9770);
}

.satisfied {
  background: linear-gradient(135deg, #5be3ff, #8c7bff);
}

.chartbar32 {
  background: linear-gradient(135deg, #4ade80, #22d3ee);
}

.calendargrid58 {
  background: linear-gradient(135deg, #cfd8ff, #9ea5ff);
}

.card-title {
  margin-bottom: 0.25rem;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #f6f7ff;
  font-family: inherit;
  margin-top: 0;
}

.card-copy {
  margin: 0;
  color: #cfd6ff;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 300;
}

@media screen and (width >= 768px) {
  .main-content {
    padding: 32px 32px 48px;
    max-width: 720px;
  }

  .stores-links {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .cards-container {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .hero-row {
    grid-template-columns: 1fr;
  }
}

@media screen and (width >= 992px) {
  .main-content {
    max-width: 960px;
  }
}

@media screen and (width >= 1024px) {
  .header {
    padding: 2.25rem 0 4rem;
  }

  .main-content {
    padding: 48px 36px 56px;
  }

  .stores-links {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }

  .hero-row {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    column-gap: 2.25rem;
  }

  .cards-container {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 640px;
    margin-left: auto;
  }
}

@media screen and (width >= 1200px) {
  .main-content {
    max-width: 1160px;
  }

  .header {
    padding: 1rem 0 1.5rem;
  }

  .main-content {
    padding: 56px 0 20px;
  }

  .hero-row {
    column-gap: 2.75rem;
  }

  .cards-container {
    gap: 1.4rem;
  }
}
