/* =================== hc-newsletter.css =================== */
/* Premium framed subscription block (журнал мебельщика). Single source of truth —
   the previous file stacked several conflicting .hc-newsletter__form / form
   overrides; this is one clean layout. */

.hc-newsletter {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border: 0.5px solid var(--hc-gold-border, rgba(212, 184, 150, 0.42));
  border-radius: 24px;
  background:
    radial-gradient(130% 150% at 100% 0%, rgba(212, 184, 150, 0.2), transparent 58%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.94), rgba(247, 243, 236, 0.7));
  box-shadow: 0 36px 90px -54px rgba(80, 60, 30, 0.45);
}

.hc-newsletter__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hc-newsletter__eyebrow-ico {
  color: var(--hc-accent, #8b7355);
}

.hc-newsletter__title {
  margin: 10px 0 12px;
  max-width: 18ch;
  font-family: var(--hc-serif, "Playfair Display", Georgia, serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  color: var(--hc-ink, #1a1714);
}

.hc-newsletter__desc {
  margin: 0;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--hc-ink-mid, rgba(26, 23, 20, 0.65));
}

.hc-newsletter__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.hc-newsletter__perks li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border: 0.5px solid var(--hc-gold-border, rgba(212, 184, 150, 0.42));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.7));
}
.hc-newsletter__perks li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hc-accent, #8b7355);
}

.hc-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hc-newsletter__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 8px;
}
.hc-newsletter__input {
  flex: 1 1 220px;
  min-width: 180px;
  height: 50px;
  padding: 0 18px;
  font-size: 15px;
  color: var(--hc-ink, #1a1714);
  border: 1px solid rgba(141, 109, 71, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hc-newsletter__input:focus {
  border-color: rgba(141, 109, 71, 0.55);
  box-shadow: 0 0 0 3px rgba(141, 109, 71, 0.12);
  background: var(--hc-paper, #ffffff);
  outline: none;
}
.hc-newsletter__submit {
  flex: 0 0 auto;
  height: 50px;
  white-space: nowrap;
}

.hc-newsletter__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--hc-ink-mid, rgba(26, 23, 20, 0.55));
}

@media (max-width: 860px) {
  .hc-newsletter {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
