/* ==========================================================================
   Pakket checklist (shortcode [pakket])
   ========================================================================== */

.nh-pakket-checklist {
  --nh-charcoal: #231e1a;
  --nh-cream: #f5f0e8;
  --nh-bronze: #a87a4a;

  list-style: none;
  margin: 0;
  padding: 24px;
  background: rgba(35, 30, 26, 0.4);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.35);
  color: var(--nh-cream);
  font-family: 'Raleway', sans-serif;
}

@media (min-width: 1024px) {
  .nh-pakket-checklist {
    padding: 32px;
  }
}

.nh-pakket-checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.nh-pakket-checklist li:last-child {
  border-bottom: 0;
}

.nh-check,
.nh-minus {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nh-check {
  background: var(--nh-bronze);
  color: var(--nh-cream);
}

.nh-minus {
  background: rgba(245, 240, 232, 0.1);
  color: rgba(245, 240, 232, 0.4);
}

.is-included .nh-label {
  color: var(--nh-cream);
  font-weight: 500;
}

.is-excluded .nh-label {
  color: rgba(245, 240, 232, 0.4);
  text-decoration: line-through;
}
