.checklist-hero {
  background: linear-gradient(135deg, #e6f4ea 0%, #f7fafc 100%);
}

.checklist-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-8);
  align-items: center;
}

.checklist-hero-actions {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.checklist-hero-aside {
  display: flex;
  justify-content: flex-end;
}

.checklist-hero-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  max-width: 26rem;
}

.checklist-hero-card h2 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.checklist-steps {
  list-style: decimal;
  padding-left: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.checklist-grid {
  gap: var(--space-6);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-3);
  align-items: flex-start;
  margin-bottom: var(--space-3);
  font-size: var(--font-size-sm);
}

.checklist input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
}

.checklist label {
  cursor: pointer;
}

.checklist--compact li {
  margin-bottom: var(--space-2);
}

.checklist--ordered {
  counter-reset: ordered;
}

.checklist--ordered li {
  grid-template-columns: auto minmax(0, 1fr);
}

.checklist--plain li {
  display: list-item;
  list-style: disc;
  margin-left: var(--space-5);
  grid-template-columns: minmax(0, 1fr);
}

.table-wrapper {
  overflow-x: auto;
}

.checklist-fridge {
  max-width: 44rem;
  margin: 0 auto;
}

.checklist-highlight {
  background-color: var(--color-primary-soft);
}

.checklist-highlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-8);
  align-items: center;
}

.checklist-highlight-media,
.checklist-downloads-media {
  max-width: 26rem;
  margin: 0 auto;
}

.checklist-highlight-media img,
.checklist-downloads-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.checklist-downloads-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-8);
  align-items: center;
}

.checklist-downloads-actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.checklist-downloads {
  background-color: #f1f5f9;
}

@media (max-width: 960px) {
  .checklist-hero-layout,
  .checklist-highlight-layout,
  .checklist-downloads-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .checklist-hero-aside {
    justify-content: flex-start;
  }

  .checklist-hero-card {
    max-width: 100%;
  }

  .checklist-highlight-media,
  .checklist-downloads-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .checklist li {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .checklist-hero-actions,
  .checklist-downloads-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
