.draft-products-section{
  width:100%;
}

.draft-products-inner{
  width:100%;
}

.draft-products-header{
  margin:0 0 18px 0;
}

.draft-products-title{
  font-size:34px;
  line-height:1.1;
  margin:0 0 12px 0;
  color:#58595B;
  font-weight:700;
}

.draft-products-intro{
  font-size:18px;
  line-height:1.45;
  margin:0 0 18px 0;
  color:#44546A;
}

.draft-products-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  align-items:stretch;
}

.draft-products-columns-1 .draft-products-grid{
  grid-template-columns:repeat(1, minmax(0, 1fr));
}

.draft-products-columns-2 .draft-products-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.draft-products-columns-3 .draft-products-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.draft-products-columns-4 .draft-products-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.draft-product-card{
  border:1px solid #E7E6E6;
  border-radius:18px;
  padding:20px 20px 18px;
  background:#F7F7F7;
  display:flex;
  flex-direction:column;
  height:100%;
  min-height:100%;
  aspect-ratio:3 / 4;
  overflow:hidden;
}

.draft-product-image-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  height:42%;
  min-height:0;
  overflow:hidden;
  background:#fff;
  border-radius:14px;
  margin-bottom:16px;
  padding:14px;
}

.draft-product-image{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  margin:0 auto;
}

.draft-product-image--placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  color:#6b7280;
  font-weight:700;
  letter-spacing:.08em;
}

.draft-product-content{
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
  min-height:0;
}

.draft-product-copy{
  min-height:0;
}

.draft-product-name{
  font-size:18px;
  line-height:1.15;
  margin:0 0 6px 0;
  color:#58595B;
  font-weight:700;
  letter-spacing:-0.01em;
}

.draft-product-subtitle{
  font-size:14px;
  line-height:1.3;
  color:#58595B;
  margin:0;
  font-weight:400;
}

.draft-product-card-footer{
  margin-top:auto;
  padding-top:16px;
}

.draft-product-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}

.draft-product-actions-secondary{
  margin-bottom:12px;
}

.draft-product-actions-primary{
  justify-content:flex-start;
}

.draft-product-why-btn,
.draft-product-details-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 18px;
  border-radius:999px;
  font-weight:500;
  font-size:13px;
  line-height:1.2;
  text-decoration:none;
  cursor:pointer;
  box-sizing:border-box;
  vertical-align:middle;
  appearance:none;
  -webkit-appearance:none;
  box-shadow:none;
  white-space:nowrap;
  text-align:center;
  margin:0;
  background:transparent;
  color:#1f6279;
  border:1.5px solid #1f6279;
}

.draft-product-why-btn:hover,
.draft-product-details-btn:hover{
  background:rgba(31,98,121,.06);
  color:#1f6279;
}

.draft-product-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:11px 28px;
  border-radius:999px;
  font-weight:700;
  font-size:16px;
  line-height:1.2;
  text-decoration:none;
  cursor:pointer;
  box-sizing:border-box;
  vertical-align:middle;
  appearance:none;
  -webkit-appearance:none;
  box-shadow:none;
  white-space:nowrap;
  text-align:center;
  margin:0;
  background:#1f6279;
  color:#fff;
  border:1px solid #1f6279;
  min-width:166px;
}

.draft-product-cta:hover{
  background:#184e61;
  color:#fff;
}

.draft-product-details-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  margin:0 0 16px 0;
  font-size:14px;
  color:#44546A;
}

.draft-product-details-meta span{
  display:inline-flex;
  align-items:center;
  gap:4px;
}

.draft-product-dialog{
  border:0;
  padding:0;
  width:min(760px, calc(100vw - 32px));
  max-width:760px;
  border-radius:18px;
  box-shadow:0 24px 70px rgba(0,0,0,.22);
}

.draft-product-dialog::backdrop{
  background:rgba(0,0,0,.48);
}

.draft-product-dialog-inner{
  position:relative;
  padding:28px 28px 24px 28px;
  background:#fff;
  border-radius:18px;
  max-height:85vh;
  overflow:auto;
}

.draft-product-dialog-close{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  background:#f3f4f6;
  color:#58595B;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.draft-product-dialog-title{
  margin:0 36px 14px 0;
  font-size:28px;
  line-height:1.15;
  color:#58595B;
  font-weight:700;
}

.draft-product-dialog-body{
  font-size:17px;
  line-height:1.6;
  color:#44546A;
}

.draft-product-dialog-body ul{
  margin:0;
  padding-left:20px;
}

.draft-product-dialog-body li{
  margin-bottom:8px;
}

@media (max-width: 1024px){
  .draft-products-grid,
  .draft-products-columns-3 .draft-products-grid,
  .draft-products-columns-4 .draft-products-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px){
  .draft-products-grid,
  .draft-products-columns-2 .draft-products-grid,
  .draft-products-columns-3 .draft-products-grid,
  .draft-products-columns-4 .draft-products-grid{
    grid-template-columns:repeat(1, minmax(0, 1fr));
  }

  .draft-product-card{
    aspect-ratio:auto;
    min-height:0;
  }

  .draft-product-image-wrap{
    height:220px;
  }

  .draft-product-cta{
    width:100%;
  }

  .draft-product-dialog{
    width:min(100vw - 20px, 760px);
  }

  .draft-product-dialog-inner{
    padding:22px 20px 20px 20px;
    max-height:88vh;
  }
}