/* ==========================================================================
   CHECKLIST SECTION ("Why Fleets Choose Fort Knox")
   Pozadina #242424 (nastavak iz prethodnih sekcija).
   Desktop first (>1023px), zatim mobile (<=767px).
   ========================================================================== */

.checklist {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 100px 48px;
  background: #242424;
}

.checklist__inner {
  width: 100%;
  max-width: var(--container-width);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.checklist__eyebrow {
  margin: 0;
  color: var(--main-blue);
  text-align: center;
  font-family: var(--font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 150% */
  letter-spacing: 1.68px;
  text-transform: uppercase;
}

.checklist__heading {
  margin: 16px 0 0;
  color: #FFF;
  text-align: center;
  font-family: var(--font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px; /* 115% */
  letter-spacing: -0.8px;
}

.checklist__grid {
  margin-top: 64px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 74px;
  gap: 24px;
}

.checklist__item {
  display: flex;
  height: 74px;
  padding: 24px 32px;
  align-items: center;
  gap: 16px;
  justify-self: stretch;
  box-sizing: border-box;

  border-radius: 8px;
  border: 1px solid transparent;

  background-image: linear-gradient(#343434, #343434), linear-gradient(#5A5A5A, #5A5A5A);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  transition: background-image 0.3s ease;
}

.checklist__item:hover {
  background-image: linear-gradient(#343434, #343434), linear-gradient(200deg, #CC3838 -1.35%, #5B8AE1 100%);
}

.checklist__item svg {
  flex-shrink: 0;
  display: block;
}

.checklist__item span {
  margin: 0;
  color: #FFF;
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
}

/* ==========================================================================
   MOBILE (<= 767px)
   Jedna kolona, gap 16px.
   ========================================================================== */
@media (max-width: 767px) {

  .checklist {
    padding: 80px 24px;
  }

  .checklist__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
