/* =========================================================
   LeadSprint – Cards
========================================================= */

.ls-cards {
  position: relative;
}

/* =========================================================
   LeadSprint – Cards header
========================================================= */

.ls-cards-header {
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 72px);
}

/* Titel */
.ls-cards-header .h2 {
  position: relative;
  margin-bottom: 20px;
}

/* Divider onder titel */
.ls-cards-header .h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin: 16px auto 0;

  background: var(--color-accent);
  border-radius: 2px;
  opacity: .9;
}

/* Intro tekst */
.ls-cards-header .lead {
  margin: 0;
  max-width: 52ch;
  margin-inline: auto;
}


.ls-cards-grid {
  display: grid;
  gap: clamp(32px, 4vw, 48px);
}

/* Columns */
.ls-cards--cols-2 .ls-cards-grid {
  grid-template-columns: repeat(2, 1fr);
}

.ls-cards--cols-3 .ls-cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.ls-cards--cols-4 .ls-cards-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Mobile */
@media (max-width: 900px) {

  .ls-cards--cols-2 .ls-cards-grid,
  .ls-cards--cols-3 .ls-cards-grid,
  .ls-cards--cols-4 .ls-cards-grid {
    grid-template-columns: 1fr;
  }

}

