
/* SD CEO Talk Form */
.sd-ceo-wrap{
  max-width:1600px;
  margin:0 auto 40px;
  padding:0 24px 24px;
  box-sizing:border-box;
  font-family:"Noto Sans KR",system-ui,-apple-system,Segoe UI,Roboto,"Apple SD Gothic Neo","Malgun Gothic",sans-serif;
}
.sd-ceo-title{
  font-size:34px;
  font-weight:800;
  letter-spacing:-.6px;
  margin:0 0 20px;
  text-align:left;
}
.sd-ceo-form{
  background:#fff;
  border-radius:16px;
  border:1px solid #e5e7eb;
  box-shadow:0 14px 40px rgba(15,23,42,.10);
  padding:20px 40px 32px;
}
.sd-row{
  display:grid;
  gap:20px;
  margin:16px 0;
}
.sd-row-3{grid-template-columns:repeat(3,minmax(0,1fr));}
.sd-field label{
  display:block;
  font-weight:700;
  margin:0 0 6px;
  color:#111827;
  font-size:14px;
}
.sd-field .req{color:#ef4444}
.sd-field input,
.sd-field textarea{
  width:100%;
  box-sizing:border-box;
  border:1px solid #d1d5db;
  background:#f9fafb;
  border-radius:10px;
  padding:13px 14px;
  font-size:15px;
  outline:none;
  transition:border-color .15s ease,box-shadow .15s ease,background .15s ease;
}
.sd-field input::placeholder,
.sd-field textarea::placeholder{
  color:#9ca3af;
}
.sd-field input:focus,
.sd-field textarea:focus{
  background:#fff;
  border-color:#2563eb;
  box-shadow:0 0 0 1px rgba(37,99,235,.12),0 6px 18px rgba(15,23,42,.06);
}
.sd-field textarea{
  min-height:220px;
  resize:vertical;
  line-height:1.6;
}
.sd-policy-title{margin-top:8px;font-size:14px;color:#111827;font-weight:700;}
.sd-policy{
  min-height:180px;
  max-height:220px;
  overflow:auto;
  white-space:pre-wrap;
  line-height:1.6;
  border-radius:10px;
  border:1px solid #e5e7eb;
  padding:12px 14px;
  background:#f9fafb;
  font-size:13px;
}
.sd-consent{
  display:flex;
  gap:8px;
  align-items:center;
  margin-top:28px;
  font-weight:600;
  font-size:14px;
}
.sd-consent input{
  width:16px;
  height:16px;
}
.sd-actions{
  display:flex;
  justify-content:center;
  margin:26px 0 0;
}
.sd-submit{
  border:0;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  color:#fff;
  font-weight:700;
  padding:14px 52px;
  cursor:pointer;
  border-radius:999px;
  font-size:15px;
  letter-spacing:.02em;
  box-shadow:0 14px 30px rgba(37,99,235,.35);
  transition:transform .12s ease,box-shadow .12s ease,opacity .12s ease;
}
.sd-submit:hover{
  opacity:.96;
  transform:translateY(-1px);
  box-shadow:0 18px 40px rgba(37,99,235,.40);
}
.sd-submit:active{
  transform:translateY(0);
  box-shadow:0 8px 20px rgba(37,99,235,.30);
}
.sd-msg{
  margin:14px 0 0;
  text-align:center;
  font-weight:600;
  font-size:14px;
}
.sd-msg.ok{color:#15803d}
.sd-msg.err{color:#b91c1c}

@media (max-width: 1024px){
  .sd-ceo-wrap{
    padding:0 20px 20px;
    margin:0 auto 24px;
  }
  .sd-ceo-form{
    padding:18px 22px 26px;
  }
}

@media (max-width: 900px){
  .sd-row-3{grid-template-columns:1fr}
  .sd-ceo-title{font-size:28px}
}

@media (max-width: 600px){
  .sd-ceo-form{
    padding:20px 16px 22px;
  }
  .sd-row{
    gap:14px;
    margin:12px 0;
  }
  .sd-ceo-title{
    font-size:24px;
  }
}
