.page-layout-wrapper > .container.tool-page-main.checklist-page {
  max-width: 920px;
  padding-left: 20px;
  padding-right: 20px;
}

.checklist-page .checklist-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
  margin-bottom: 24px;
  padding: 26px;
}

.checklist-section-head {
  align-items: flex-end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.checklist-eyebrow {
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}

.checklist-section-head h2 {
  color: var(--ink);
  font-size: 1.4rem;
  letter-spacing: 0;
  margin: 3px 0 0;
}

.checklist-section-head > a {
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.checklist-intro {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 76ch;
}

.checklist-page textarea {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: 700 0.96rem/1.6 "Courier New", monospace;
  min-height: 124px;
  padding: 14px;
  resize: vertical;
  width: 100%;
}

.checklist-page textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgb(68 90 216 / 0.14);
}

.checklist-actions {
  margin-bottom: 22px;
}

.checklist-output {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding-top: 22px;
}

.checklist-output .checklist-alert {
  background: #fff8f5;
  border: 1px solid #f1d9ce;
  border-left: 4px solid var(--accent);
  border-radius: 7px;
  color: #4b4450;
  line-height: 1.55;
  margin: 0;
  padding: 13px 15px;
}

.checklist-output .checklist-ok {
  background: #f3faf5;
  border-color: #d3e8d9;
  border-left-color: var(--ok);
}

.checklist-output a {
  color: var(--brand-dark);
  font-weight: 800;
}

.checklist-page .adsense-top {
  margin: 0 0 24px;
}

.checklist-related {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.checklist-related a {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 15px 16px;
  text-decoration: none;
}

.checklist-related a:hover {
  background: var(--chip);
  border-color: #cfd8ff;
}

.checklist-related span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checklist-related strong {
  color: var(--brand-dark);
  font-size: 0.88rem;
  margin-top: 3px;
}

@media (max-width: 720px) {
  .checklist-related {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page-layout-wrapper > .container.tool-page-main.checklist-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .checklist-page .checklist-panel {
    padding: 20px 16px;
  }

  .checklist-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
