.draft-cat-wrap{
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
  font-family:Arial,Helvetica,sans-serif;
}

.draft-cat-hero{
  margin-bottom:40px;
}

.draft-cat-eyebrow{
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:1px;
  color:#777;
  margin-bottom:6px;
}

.draft-cat-title{
  font-size:36px;
  margin-bottom:12px;
}

.draft-cat-problem{
  font-size:18px;
  line-height:1.6;
  max-width:750px;
}

.draft-cat-band{
  margin:40px 0;
  background:#f4f4f4;
  padding:14px 20px;
  border-radius:6px;
}

.draft-cat-band-inner{
  display:flex;
  gap:30px;
  font-size:14px;
  color:#444;
}

.draft-cat-section{
  margin-top:50px;
}

.draft-cat-section h2{
  font-size:26px;
  margin-bottom:20px;
}

.draft-cat-considerations{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.draft-cat-situations{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.draft-cat-card{
  background:#fff;
  padding:20px;
  border:1.5px solid #d6d6d6;
  border-radius:10px;
}

.draft-cat-card h3{
  margin-top:0;
  font-size:18px;
}

/* Guide cards with checkmarks */
.draft-cat-card--guide{
  position:relative;
  padding:20px 20px 20px 54px;
}

.draft-cat-card--guide p{
  margin:0;
}

.draft-cat-card-check{
  position:absolute;
  top:20px;
  left:20px;
  color:#CA9833;
  font-size:24px;
  line-height:1;
  font-weight:900;
}

.draft-products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:26px;
  margin-top:30px;
}

.draft-product-card{
  border:1.5px solid #c8c8c8;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  display:flex;
  flex-direction:column;
  transition:border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.draft-product-card:hover{
  border-color:#a8a8a8;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  transform:translateY(-2px);
}

.draft-product-image-wrap{
  display:block;
  background:#fafafa;
  text-align:center;
  padding:20px;
}

.draft-product-image{
  max-width:100%;
  height:auto;
}

.draft-product-body{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.draft-product-bestfor{
  font-size:12px;
  color:#777;
}

.draft-product-title{
  font-size:18px;
  margin:0;
}

.draft-product-summary{
  font-size:14px;
  line-height:1.6;
  color:#444;
}

.draft-product-footer{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

.draft-product-link,
.draft-product-link--secondary{
  display:inline-block;
  font-size:14px;
  line-height:1.2;
  padding:8px 14px;
  border-radius:4px;
  text-decoration:none;
  transition:background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.draft-product-link{
  background:#000;
  color:#fff;
}

.draft-product-card .draft-product-link:hover,
.draft-product-card .draft-product-link:focus{
  background:#111 !important;
  color:#fff !important;
  text-decoration:none;
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
  transform:translateY(-1px);
}

.draft-product-link--secondary{
  background:#eee;
  color:#000;
}

.draft-product-card .draft-product-link--secondary:hover,
.draft-product-card .draft-product-link--secondary:focus{
  background:#e5e5e5;
  color:#000 !important;
  text-decoration:none;
}

.draft-cat-faq-item{
  margin-bottom:12px;
}

.draft-cat-disclosure{
  margin-top:40px;
  font-size:13px;
  color:#666;
}

/* Optional checklist styling if used elsewhere */
.draft-checklist{
  list-style:none;
  padding:0;
  margin:0;
}

.draft-checklist li{
  position:relative;
  padding-left:30px;
  margin-bottom:12px;
  font-size:15px;
  line-height:1.55;
  color:#444;
}

.draft-checklist li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#CA9833;
  font-weight:900;
  font-size:24px;
  line-height:1.2;
}