/*
Theme Name: Verbosa Child
Theme URI: https://igorstolyarov.ru
Description: Дочерняя тема Verbosa. Единая палитра и типографика. Все правки делаются здесь — родительская тема не трогается и спокойно обновляется.
Author: Igor Stolyarov
Template: verbosa
Version: 1.1.4
Requires PHP: 7.0
License: GNU General Public License v3.0
Text Domain: verbosa-child
*/

/* ============================================================
   1. ПАЛИТРА — единственный источник правды
   Меняете цвет здесь — он меняется на всём сайте.
   ============================================================ */

:root {
  --vx-navy:      #16293D;  /* заголовки, вордмарк, primary-кнопка */
  --vx-navy-deep: #0C1A2B;  /* тёмные секции */
  --vx-ink:       #18222D;  /* основной текст */
  --vx-muted:     #5D6A74;  /* вторичный текст, подписи */
  --vx-ice:       #E8F0F7;  /* фон секций, карточки */
  --vx-ice-soft:  #F2F7FB;  /* очень светлый фон */
  --vx-rule:      #C7D8E8;  /* тонкие линейки, рамки карточек */
  --vx-paper:     #FBFAF8;  /* фон страницы */
  --vx-white:     #FFFFFF;

  --vx-space-1: 0.5rem;
  --vx-space-2: 1rem;
  --vx-space-3: 1.5rem;
  --vx-space-4: 2.5rem;
  --vx-space-5: 4rem;
  --vx-space-6: 6rem;

  --vx-measure: 68ch;   /* длина строки текста */
  --vx-wrap:    1120px; /* ширина контента */
}

/* ============================================================
   2. ПЕРЕХВАТ БИРЮЗЫ
   Обе inline-палитры из контента страниц переопределяются
   на брендовый тёмно-синий. Работает без правки страниц.
   ============================================================ */

.igor-homepage-v2,
.igor-v11,
[class*="igor-"] {
  --ink:    var(--vx-ink);
  --muted:  var(--vx-muted);
  --accent: var(--vx-navy);
  --paper:  var(--vx-paper);
}

/* Точечная зачистка захардкоженной бирюзы #0d6674 */
[class*="igor-"] [style*="#0d6674"],
[class*="igor-"] [style*="#0D6674"] {
  color: var(--vx-navy) !important;
}

/* ============================================================
   3. ФИКС ОБРЕЗКИ ЗАГОЛОВКОВ
   Секции выставлены в full-bleed поверх контейнера Verbosa,
   который их режет. Возвращаем внутренние отступы.
   ============================================================ */

[class*="igor-"] section,
[class*="igor-"] .section,
[class*="igor-"] > div[class*="band"],
[class*="igor-"] > div[class*="hero"] {
  overflow: visible;
}

[class*="igor-"] h1,
[class*="igor-"] h2,
[class*="igor-"] h3,
[class*="igor-"] .eyebrow,
[class*="igor-"] .kicker {
  padding-left: max(var(--vx-space-3), env(safe-area-inset-left));
  padding-right: var(--vx-space-3);
  overflow-wrap: break-word;
  hyphens: none;
}

@media (min-width: 768px) {
  [class*="igor-"] h1,
  [class*="igor-"] h2,
  [class*="igor-"] .eyebrow,
  [class*="igor-"] .kicker {
    padding-left: var(--vx-space-4);
    padding-right: var(--vx-space-4);
  }
}

/* ============================================================
   4. КАРТОЧКИ — выравнивание по верху, CTA прижат к низу
   ============================================================ */

[class*="igor-"] .card,
[class*="igor-"] [class*="topic-card"],
[class*="igor-"] [class*="grid"] > article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background: var(--vx-white);
  border: 1px solid var(--vx-rule);
  border-radius: 2px;
  padding: var(--vx-space-3);
  box-shadow: none;
}

[class*="igor-"] .card > *:first-child { margin-top: 0; }

[class*="igor-"] .card a[class*="cta"],
[class*="igor-"] .card [class*="link"],
[class*="igor-"] [class*="topic-card"] a:last-child {
  margin-top: auto;
  padding-top: var(--vx-space-2);
  color: var(--vx-navy);
  font-weight: 600;
  text-decoration: none;
}

/* ============================================================
   5. ТИПОГРАФИКА
   ============================================================ */

[class*="igor-"] h1,
[class*="igor-"] h2 {
  color: var(--vx-navy);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

[class*="igor-"] p {
  color: var(--vx-ink);
  max-width: var(--vx-measure);
  line-height: 1.6;
}

[class*="igor-"] .eyebrow,
[class*="igor-"] .kicker {
  color: var(--vx-navy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================================
   6. КНОПКИ
   ============================================================ */

[class*="igor-"] [class*="cta-primary"],
[class*="igor-"] .button-primary,
[class*="igor-"] a[class*="btn"]:not([class*="secondary"]) {
  background: var(--vx-navy);
  color: var(--vx-white);
  border: 1px solid var(--vx-navy);
  border-radius: 2px;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s ease;
}

[class*="igor-"] [class*="cta-primary"]:hover,
[class*="igor-"] .button-primary:hover {
  background: var(--vx-navy-deep);
  color: var(--vx-white);
}

[class*="igor-"] a[class*="btn"][class*="secondary"],
[class*="igor-"] [class*="cta-source"] {
  background: transparent;
  color: var(--vx-navy);
  border: 1px solid var(--vx-rule);
  border-radius: 2px;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

/* ============================================================
   7. СЕКЦИОННЫЕ ФОНЫ — ледяной вместо мятного
   ============================================================ */

[class*="igor-"] [class*="band"],
[class*="igor-"] [class*="archive"],
[class*="igor-"] section[style*="background"] {
  background: var(--vx-ice) !important;
}

/* ============================================================
   9. ШАПКА — одна линейка вместо двух
   ============================================================ */

#header + hr,
#masthead + hr,
.site-header + hr { display: none; }


/* ============================================================
   10. ПЕРЕХВАТ ПАЛИТРЫ v13 (editorial-signal) И БУДУЩИХ ПОКОЛЕНИЙ
   Контентные стили грузятся в <body> и побеждают по порядку,
   поэтому здесь допустим !important — это карантин, а не норма.
   ============================================================ */

[class*="v13"], [class*="v12"], [class*="v11"], [class*="igor-"] {
  --accent: var(--vx-navy) !important;
  --ink: var(--vx-ink) !important;
  --muted: var(--vx-muted) !important;
}

.btn.primary,
[class*="v13"] .btn.primary {
  background: var(--vx-navy) !important;
  border-color: var(--vx-navy) !important;
  color: var(--vx-white) !important;
}

.btn.secondary,
[class*="v13"] .btn.secondary {
  background: transparent !important;
  color: var(--vx-navy) !important;
  border-color: var(--vx-rule) !important;
}

/* Ссылки на тёмных секциях: ледяной вместо мятного */
[class*="v13"] [class*="dark"] a,
[class*="v13"] .hero a:not(.btn),
[class*="v13"] a[href*="marshrut"],
[class*="v13"] section[style*="background"] a {
  color: var(--vx-ice) !important;
}

/* Надстрочники и eyebrow во всех поколениях */
[class*="v13"] .eyebrow, [class*="v13"] .kicker,
[class*="v13"] [class*="label"], [class*="v13"] [class*="tag"] {
  color: var(--vx-navy) !important;
}

/* Мятные фоны секций -> ледяной */
[class*="v13"] [class*="band"],
[class*="v13"] [class*="archive"] {
  background: var(--vx-ice) !important;
}


/* Секция Личный архив: ледяной фон вместо мятного */
section.history, .history { background: var(--vx-ice) !important; }


/* Мобильные боковые отступы: hero и юридический футер не прижаты к краю */
@media (max-width: 767px) {
  [class*="v13"] .hero-copy { padding-left: 20px; padding-right: 20px; }
  .isv2-legal-footer { padding-left: 20px !important; padding-right: 20px !important; }
}


/* Указатель материалов [vx_index] — сетка в фирменном стиле */
.vx-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin: 2rem 0;
}
.vx-index-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--vx-ice);
  border: 1px solid var(--vx-rule);
  border-radius: 2px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--vx-ink);
  transition: border-color .15s ease, background .15s ease;
}
.vx-index-card:hover {
  background: var(--vx-white);
  border-color: var(--vx-navy);
}
.vx-index-title {
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.3;
}
.vx-index-arrow {
  color: var(--vx-navy);
  flex: none;
}


/* Навигационная проза на тематических страницах */
.vx-topic-links p {
  max-width: 68ch;
  line-height: 1.65;
  margin: 0 0 1.35rem;
}
.vx-topic-links p:last-child { margin-bottom: 0; }
.vx-topic-links a {
  color: var(--vx-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--vx-rule);
  padding-bottom: 1px;
  transition: border-color .15s ease;
}
.vx-topic-links a:hover,
.vx-topic-links a:focus {
  border-bottom-color: var(--vx-navy);
}
@media (max-width: 767px) {
  .vx-topic-links p { line-height: 1.7; margin-bottom: 1.5rem; }
}


/* Материалы по теме — сетка карточек на тематических страницах */
.vx-topic-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:12px;margin:1.25rem 0 0;}
.vx-topic-lead{max-width:64ch;line-height:1.65;margin:0 0 1.25rem;}
.vx-card{display:block;background:var(--vx-white);border:1px solid var(--vx-rule);border-radius:2px;padding:16px 18px;text-decoration:none;color:var(--vx-ink);transition:border-color .15s ease,background .15s ease;}
.vx-card:hover,.vx-card:focus{border-color:var(--vx-navy);background:var(--vx-ice-soft);}
.vx-card--primary{background:var(--vx-ice);border-color:var(--vx-navy);}
.vx-card__kind{display:block;font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;font-weight:700;color:var(--vx-muted);margin-bottom:8px;}
.vx-card--primary .vx-card__kind{color:var(--vx-navy);}
.vx-card__title{display:block;font-size:1rem;font-weight:600;color:var(--vx-navy);margin-bottom:6px;line-height:1.25;}
.vx-card__desc{display:block;font-size:.875rem;line-height:1.5;color:var(--vx-muted);}
.vx-card--primary .vx-card__desc{color:var(--vx-ink);}
@media (max-width:767px){.vx-topic-cards{grid-template-columns:1fr;gap:10px;}.vx-card{padding:14px 16px;}}


/* Блок «Точка отсчёта»: второй кадр вертикальный 3:4, выводится целиком без кадрирования. 23.07.2026 */
.history .history-grid figure:nth-of-type(2) img{aspect-ratio:3/4;}

/* Заголовок блока «Точка отсчёта» — на всю ширину, одной строкой. Вторая колонка шапки не используется. 23.07.2026 */
.history .section-head{grid-template-columns:1fr;}
.history .section-head h2{max-width:none;}

/* Строка «Жест почти не изменился» — подпись под первым кадром. 23.07.2026 */
.history .history-grid figure > p{margin:14px 0 0;font-size:1.02rem;}

/* Блок «Первый ориентир»: правая ячейка шапки освобождена, заголовок на всю ширину. 23.07.2026 */
.value .section-head{grid-template-columns:1fr;}
.value .section-head h2{max-width:none;}

/* «Первый ориентир»: выключка по формату с автопереносами. Только на широких экранах. 23.07.2026 */
@media (min-width:781px){
  .value .value-copy p{text-align:justify;hyphens:auto;-webkit-hyphens:auto;text-wrap:auto;}
}



/* BEGIN isv2-mobile-content-order */
@media (max-width: 800px) {
  #container {
    display: flex;
    flex-direction: column;
  }

  #container > main#main {
    order: 1;
    min-width: 0;
  }

  #container > #sidebar {
    order: 2;
    min-width: 0;
  }

  #container > #sidebar-back {
    order: 3;
  }
}
/* END isv2-mobile-content-order */


/* BEGIN isv2-mobile-reading-20260803
   Только страницы длинного чтения: главная и архивы не затрагиваются. */
@media (max-width: 800px) {
  body.single .entry-content,
  body.page:not(.home) .entry-content {
    color: #17262d;
  }

  body.single .entry-content h2,
  body.page:not(.home) .entry-content h2 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 12px;
    scroll-margin-top: 80px;
  }

  body.single .entry-content h3,
  body.page:not(.home) .entry-content h3 {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 8px;
    scroll-margin-top: 80px;
  }

  body.single .entry-title,
  body.page:not(.home) .entry-title,
  body.single .entry-content h1,
  body.page:not(.home) .entry-content h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  body.single .entry-content p,
  body.single .entry-content li,
  body.single .entry-content blockquote,
  body.page:not(.home) .entry-content p,
  body.page:not(.home) .entry-content li,
  body.page:not(.home) .entry-content blockquote {
    font-size: 18px;
    line-height: 1.55;
  }

  body.single .entry-content figcaption,
  body.single .entry-content small,
  body.single .entry-content .caption,
  body.page:not(.home) .entry-content figcaption,
  body.page:not(.home) .entry-content small,
  body.page:not(.home) .entry-content .caption,
  body.home .entry-content figcaption,
  body.home .entry-content .caption {
    font-size: 15px;
  }

  body.single .entry-content img,
  body.single .entry-content video,
  body.page:not(.home) .entry-content img,
  body.page:not(.home) .entry-content video {
    max-width: 100%;
    height: auto;
  }

  body.single .entry-content iframe,
  body.page:not(.home) .entry-content iframe {
    max-width: 100%;
  }

  body.single .entry-content table,
  body.page:not(.home) .entry-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.single .entry-content p a,
  body.single .entry-content li a,
  body.page:not(.home) .entry-content p a,
  body.page:not(.home) .entry-content li a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 600px) {
  body.single #main,
  body.page:not(.home) #main {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.single #main > article,
  body.page:not(.home) #main > article {
    box-sizing: border-box;
    width: 100%;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
/* END isv2-mobile-reading-20260803 */


/* BEGIN isv2-start-here-heading-scale-20260803
   The page injects an !important clamp() rule from its legacy V1.2 shell.
   Keep section headings below the page H1 on desktop and mobile. */
body.page-id-130 #content .entry-content .v12-start h2 {
  font-size: 32px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

@media (max-width: 800px) {
  body.page-id-130 #content .entry-content .v12-start h2 {
    font-size: 24px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    margin-top: 40px !important;
    margin-bottom: 12px !important;
    scroll-margin-top: 80px;
  }
}
/* END isv2-start-here-heading-scale-20260803 */


/* BEGIN isv2-footer-cookie-settings-20260803 */
.isv2-legal-footer .footer-cookie-settings {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: -10px 0;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #003b68;
  font: inherit;
  line-height: 1.55;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.isv2-legal-footer .footer-cookie-settings:hover,
.isv2-legal-footer .footer-cookie-settings:focus-visible {
  color: #2277d8;
}

.isv2-cookie-banner[hidden] {
  display: none !important;
}
/* END isv2-footer-cookie-settings-20260803 */


/* BEGIN workorder-5-accessibility-20260807 */
#site-description {
  color: var(--vx-muted);
}

#sidebar .widget-title span {
  color: #14524f;
}

.isv2-legal-footer li {
  display: flex;
  align-items: center;
}

.isv2-legal-footer a,
.isv2-legal-footer .footer-cookie-settings {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.vx-sendsay-fallback {
  margin: 12px 0;
  padding: 12px 14px;
  border-left: 4px solid #a13d2d;
  background: #fff3f0;
  color: #6f2118;
}

.vx-sendsay-fallback[hidden] {
  display: none !important;
}

/* Axe WCAG AA follow-up on the five acceptance templates. */
.home .route:nth-child(1) > .route-num,
.home .route:nth-child(1) > a {
  color: #1f615b !important;
}

.home .route:nth-child(4) > .route-num,
.home .route:nth-child(4) > a {
  color: #7d3449 !important;
}

.home .route:nth-child(5) > .route-num,
.home .route:nth-child(5) > a {
  color: #63430f !important;
}

.home .route:nth-child(6) > .route-num,
.home .route:nth-child(6) > a {
  color: #405f37 !important;
}

.home .route:nth-child(7) > .route-num,
.home .route:nth-child(7) > a {
  color: #1f6170 !important;
}

.single .published,
.single .bl_categ,
.single .footer-tags,
#nav-below .nav-previous em,
#nav-below .nav-next em {
  color: #505b63 !important;
}

.isv-contact a[href*="t.me/"] {
  background: #0b668f !important;
}

.isv-contact a[href*="max.ru/"] {
  background: #0057b8 !important;
}

.isv-contact > div[style*="font-size:13px"] {
  color: #53615e !important;
}

@media (max-width: 600px) {
  .isv2-legal-footer ul {
    gap: 8px;
  }

  .isv2-legal-footer li {
    margin: 0;
  }
}
/* END workorder-5-accessibility-20260807 */


/* Stage 2: findability, freshness and global contact — 2026-08-04 */
.v13-editorial-signal .home-featured,
.v13-editorial-signal .home-credentials,
.v13-editorial-signal .home-latest {
  box-sizing: border-box;
  padding: clamp(48px, 6vw, 76px) clamp(20px, 5vw, 56px);
}

.v13-editorial-signal .home-featured {
  background: #e8f4f1;
  border-top: 1px solid #bfded7;
  border-bottom: 1px solid #bfded7;
}

.v13-editorial-signal .home-section-kicker {
  display: block;
  margin-bottom: 12px;
  color: #2d7473;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v13-editorial-signal .home-featured h2,
.v13-editorial-signal .home-latest h2 {
  margin: 0 0 18px;
  max-width: 920px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.08;
}

.v13-editorial-signal .home-featured h2 a {
  color: #17262d;
  text-decoration: none;
}

.v13-editorial-signal .home-featured p {
  max-width: 820px;
  margin: 0 0 22px;
  color: #3f565d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.v13-editorial-signal .home-featured-link,
.v13-editorial-signal .home-credentials-more a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #246d69;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.v13-editorial-signal .home-credentials {
  background: #fff;
}

.v13-editorial-signal .home-credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.v13-editorial-signal .home-credentials-grid article {
  min-width: 0;
  padding: 22px 20px;
  border: 1px solid #d8e2df;
  border-radius: 14px;
  background: #f7faf9;
}

.v13-editorial-signal .home-credentials-grid strong,
.v13-editorial-signal .home-credentials-grid span {
  display: block;
}

.v13-editorial-signal .home-credentials-grid strong {
  margin-bottom: 10px;
  color: #17262d;
  font-size: clamp(21px, 2.15vw, 29px);
  line-height: 1.15;
}

.v13-editorial-signal .home-credentials-grid span {
  color: #53686e;
  font-size: 16px;
  line-height: 1.52;
}

.v13-editorial-signal .home-credentials-more {
  margin: 20px 0 0;
}

.v13-editorial-signal .home-latest {
  background: #f5f8f6;
}

.v13-editorial-signal .home-latest ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.v13-editorial-signal .home-latest li {
  display: flex;
  min-width: 0;
  min-height: 160px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 20px;
  border: 1px solid #cddbd7;
  border-radius: 14px;
  background: #fff;
}

.v13-editorial-signal .home-latest li a {
  display: block;
  min-height: 44px;
  color: #17262d;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.v13-editorial-signal .home-latest time {
  margin-top: 24px;
  color: #5e7278;
  font-size: 15px;
  line-height: 1.4;
}

.v13-editorial-signal .home-featured a:hover,
.v13-editorial-signal .home-credentials a:hover,
.v13-editorial-signal .home-latest a:hover {
  color: #1f6965;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.vx-footer-email {
  box-sizing: border-box;
  width: min(100% - 40px, 1180px);
  margin: 18px auto 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(93, 115, 122, .35);
  color: #53686e;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.vx-footer-email a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: inherit;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .v13-editorial-signal .home-credentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .v13-editorial-signal .home-featured,
  .v13-editorial-signal .home-credentials,
  .v13-editorial-signal .home-latest {
    padding: 44px 20px 52px;
  }

  .v13-editorial-signal .home-featured h2,
  .v13-editorial-signal .home-latest h2 {
    font-size: 30px;
    line-height: 1.13;
  }

  .v13-editorial-signal .home-featured p {
    font-size: 18px;
  }

  .v13-editorial-signal .home-credentials-grid,
  .v13-editorial-signal .home-latest ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v13-editorial-signal .home-credentials-grid article,
  .v13-editorial-signal .home-latest li {
    padding: 19px 17px;
  }

  .v13-editorial-signal .home-latest li {
    min-height: 0;
  }

  .v13-editorial-signal .home-latest li a {
    font-size: 19px;
  }
}

@media (max-width: 360px) {
  .v13-editorial-signal .home-featured,
  .v13-editorial-signal .home-credentials,
  .v13-editorial-signal .home-latest {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Subscription preview. No public page uses these styles while drafts stay unpublished. */
.vx-subscribe-form {
  max-width: 680px;
  margin: 2rem 0;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--vx-rule);
  border-radius: 12px;
  background: var(--vx-ice-soft);
}

.vx-subscribe-email-label {
  display: block;
  margin-bottom: 8px;
  color: var(--vx-ink);
  font-weight: 700;
}

.vx-subscribe-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--vx-rule);
  border-radius: 8px;
  background: var(--vx-white);
  color: var(--vx-ink);
  font: inherit;
  font-size: 16px;
}

.vx-subscribe-check {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 44px;
  margin-top: 18px;
  color: var(--vx-ink);
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
}

.vx-subscribe-check input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
}

.vx-subscribe-form button {
  min-height: 48px;
  margin-top: 22px;
  padding: 11px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--vx-navy);
  color: var(--vx-white);
  font: inherit;
  font-weight: 700;
}

.vx-subscribe-form button[disabled] {
  cursor: not-allowed;
  opacity: .55;
}

.vx-subscribe-disabled {
  margin: 12px 0 0;
  color: var(--vx-muted);
  font-size: 15px;
}

.vx-subscribe-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 600px) {
  .vx-subscribe-form button {
    width: 100%;
  }
}
