/* 뉴스레터 구독 CTA — v1 인라인 입력 (시안 스펙 그대로) */

.chiko-nl-v1 {
  margin: 3.5rem 0 1.75rem;
  font-family: inherit;
}

.chiko-nl-v1-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: box-shadow 0.2s;
}

.chiko-nl-v1-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.chiko-nl-v1-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background-color: #ecfdf5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.chiko-nl-v1-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.chiko-nl-v1-text {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.chiko-nl-v1-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.chiko-nl-v1-input-wrapper {
  display: flex;
  position: relative;
  width: 100%;
}

.chiko-nl-v1-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.chiko-nl-v1-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-right: none;
  border-radius: 0.75rem 0 0 0.75rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
  color: #111827;
}

.chiko-nl-v1-input::placeholder {
  color: #9ca3af;
}

.chiko-nl-v1-input:focus {
  background-color: #ffffff;
  border-color: #059669;
}

.chiko-nl-v1-btn {
  background-color: #111827;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0.75rem 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.chiko-nl-v1-btn:hover {
  background-color: #1f2937;
}

.chiko-nl-v1-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

.chiko-nl-v1-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.chiko-nl-v1-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  justify-content: center;
}

.chiko-nl-v1-status {
  font-size: 0.85rem;
  min-height: 1.2em;
  margin-top: 0.4rem;
  text-align: center;
  font-weight: 500;
}
.chiko-nl-v1-status.is-ok { color: #059669; }
.chiko-nl-v1-status.is-err { color: #dc2626; }

@media (min-width: 768px) {
  .chiko-nl-v1-card {
    flex-direction: row;
    padding: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  .chiko-nl-v1-content { flex: 1; padding-right: 2rem; }
  .chiko-nl-v1-form { width: 340px; flex-shrink: 0; }
  .chiko-nl-v1-heading { font-size: 1.5rem; }
  .chiko-nl-v1-hint { justify-content: flex-start; }
  .chiko-nl-v1-status { text-align: left; }
}
