/*
Theme Name: NTi Audio Demo & Support
Theme URI: https://www.nti-audio.com/en/
Author: Codex
Description: Demo presentation room and customer support focused WordPress theme inspired by NTi Audio.
Version: 2.0.1
Text Domain: nti-support
*/

:root {
  --ink: #111b35;
  --ink-soft: #47546d;
  --navy: #0b1740;
  --navy-light: #182960;
  --cyan: #29c7d9;
  --green: #71e84c;
  --green-dark: #4dc72b;
  --ice: #eaf9fb;
  --mist: #f4f7f9;
  --white: #ffffff;
  --line: #dce4ea;
  --shadow: 0 16px 36px rgba(17, 27, 53, 0.12);
  --shadow-hover: 0 24px 48px rgba(17, 27, 53, 0.2);
  --radius: 6px;
  --container: 1180px;
  --reading: 820px;
  --body-size: 16px;
  --small-size: 14px;
  --nav-size: 15px;
  --h1-size: 56px;
  --h2-size: 38px;
  --h3-size: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Helvetica Neue", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  font-size: var(--body-size);
  line-height: 1.75;
  letter-spacing: 0;
  text-align: center;
}

body,
button,
input,
select,
textarea {
  font-family: "Helvetica Neue", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font-size: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), 900px);
}

.reading-width {
  width: min(calc(100% - 48px), var(--reading));
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
}

.notice-bar {
  position: relative;
  z-index: 60;
  color: #116e79;
  background: var(--ice);
  border-bottom: 1px solid #c9edf1;
  font-size: var(--small-size);
  font-weight: 700;
}

.notice-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 36px;
}

.notice-bar a {
  text-decoration: none;
}

.notice-bar a:hover,
.notice-bar a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(220, 228, 234, 0.9);
  box-shadow: 0 8px 24px rgba(17, 27, 53, 0.06);
  backdrop-filter: blur(14px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-shell {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
}

.site-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-brand__link,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-brand img,
.custom-logo {
  width: auto;
  max-width: 118px;
  max-height: 52px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--ink);
  font-size: var(--nav-size);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle:checked + .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked + .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(17, 27, 53, 0.13);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.button:active,
.wp-block-button__link:active {
  transform: translateY(-2px);
}

.button--accent {
  background: var(--green);
}

.button--accent:hover,
.button--accent:focus-visible {
  background: #82ee61;
}

.button--light {
  color: var(--navy);
  background: var(--white);
}

.button--navy {
  color: var(--white);
  background: var(--navy);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.header-contact {
  justify-self: end;
  min-height: 46px;
  padding-inline: 22px;
  font-size: var(--nav-size);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("https://nti-audio.b-cdn.net/wp-content/uploads/background-image-call-to-action.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 50, 0.94) 0%, rgba(7, 17, 50, 0.76) 52%, rgba(7, 17, 50, 0.36) 100%),
    linear-gradient(180deg, rgba(7, 17, 50, 0.1), rgba(7, 17, 50, 0.5));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 900px;
  padding: 110px 0 170px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: var(--small-size);
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.purpose-section h2,
.demo-copy h2,
.contact-panel h2,
.page-hero h1,
.archive-hero h1 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 880px;
  color: var(--white);
  font-size: var(--h1-size);
  font-weight: 500;
  line-height: 1.18;
}

.hero__lead {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 600;
}

.hero .button-row {
  margin-top: 34px;
}

.hero-quick {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 17, 50, 0.84);
  backdrop-filter: blur(12px);
}

.hero-quick__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-quick a {
  display: grid;
  gap: 3px;
  min-height: 112px;
  padding: 23px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.hero-quick a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-quick a:hover,
.hero-quick a:focus-visible {
  background: rgba(41, 199, 217, 0.18);
}

.hero-quick strong {
  font-size: 17px;
}

.hero-quick span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 94px 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 44px;
}

.section-heading h2,
.purpose-section h2,
.demo-copy h2,
.contact-panel h2 {
  color: var(--ink);
  font-size: var(--h2-size);
  font-weight: 500;
  line-height: 1.25;
}

.section-lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 600;
}

.purpose-section {
  background: var(--white);
}

.purpose-section .section-lead {
  max-width: 820px;
}

.editor-section {
  padding-top: 0;
  background: var(--white);
}

.front-entry-content {
  padding: 44px 0 0;
  border-top: 1px solid var(--line);
}

.demo-section {
  color: var(--white);
  background: var(--navy);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 70px;
}

.demo-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe7ed;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.demo-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.demo-copy {
  display: grid;
  justify-items: center;
}

.demo-copy h2 {
  color: var(--white);
}

.demo-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 10px;
  width: min(100%, 540px);
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.35em;
  left: 2px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  content: "✓";
  color: var(--navy);
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.demo-copy .button-row {
  align-items: center;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d7581;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

.text-link::after {
  margin-left: 8px;
  content: "›";
  font-size: 21px;
  line-height: 1;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.text-link--light {
  color: var(--white);
}

.text-link--light:hover,
.text-link--light:focus-visible {
  color: var(--green);
}

.support-section {
  background: var(--white);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.support-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 330px;
  padding: 38px 30px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 27, 53, 0.07);
}

.support-card__number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--green);
  font-weight: 900;
}

.support-card h3,
.product-card h3,
.post-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--h3-size);
  line-height: 1.35;
}

.support-card p {
  margin: 18px auto 0;
  color: var(--ink-soft);
}

.support-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.products-section {
  background: var(--mist);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 27, 53, 0.07);
}

.product-card__media {
  display: block;
  overflow: hidden;
  background: var(--white);
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  transition: transform 240ms ease;
}

.product-card__media:hover img,
.product-card__media:focus-visible img {
  transform: scale(1.035);
}

.product-card__body {
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 28px 23px 30px;
}

.product-card p {
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.product-card .text-link {
  margin-top: 22px;
}

.flow-section {
  background: var(--white);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.flow-list li {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 245px;
  padding: 38px 32px;
  border-right: 1px solid var(--line);
}

.flow-list li:last-child {
  border-right: 0;
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--cyan);
  font-weight: 900;
}

.flow-list strong {
  font-size: 19px;
}

.flow-list p {
  margin: 14px auto 0;
  color: var(--ink-soft);
}

.contact-section {
  color: var(--white);
  background: var(--navy-light);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.contact-panel > div {
  max-width: 760px;
  text-align: left;
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-main,
.archive-main {
  min-height: 60vh;
}

.page-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 350px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero--image {
  background-image: var(--page-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 50, 0.78);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 76px 0;
}

.page-hero h1,
.archive-hero h1 {
  color: var(--white);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.24;
}

.page-hero__content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.page-content-section {
  padding: 82px 0 100px;
  background: var(--white);
}

.page-article {
  margin-inline: auto;
}

.entry-content {
  color: var(--ink-soft);
  text-align: left;
}

.entry-content::after {
  display: table;
  clear: both;
  content: "";
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--ink);
  line-height: 1.4;
}

.entry-content h2 {
  margin: 2.2em 0 0.8em;
  font-size: 30px;
}

.entry-content h3 {
  margin: 2em 0 0.7em;
  font-size: 23px;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  margin-top: 0;
  margin-bottom: 1.5em;
}

.entry-content a {
  color: #0d7581;
  text-underline-offset: 0.2em;
}

.entry-content img {
  border-radius: var(--radius);
}

.entry-content .alignwide {
  width: min(100vw - 48px, var(--container));
  max-width: none;
  margin-right: calc((min(100vw - 48px, var(--container)) - 100%) / -2);
  margin-left: calc((min(100vw - 48px, var(--container)) - 100%) / -2);
}

.entry-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-right: calc((100vw - 100%) / -2);
  margin-left: calc((100vw - 100%) / -2);
}

.archive-hero {
  padding: 92px 0;
  color: var(--white);
  background: var(--navy);
}

.archive-section {
  padding: 82px 0 100px;
  background: var(--mist);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 27, 53, 0.07);
}

.post-card__media {
  display: block;
  overflow: hidden;
}

.post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-card__body {
  display: grid;
  justify-items: center;
  padding: 28px 26px 32px;
}

.post-card__date {
  margin: 0 0 12px;
  color: #0d7581;
  font-size: var(--small-size);
  font-weight: 800;
}

.post-card h2 a {
  text-decoration: none;
}

.post-card__body > p:not(.post-card__date) {
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.post-card .text-link {
  margin-top: 20px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 70px 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.pagination {
  margin-top: 44px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.page-numbers {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
}

.page-numbers.current {
  color: var(--navy);
  background: var(--green);
  border-color: var(--green);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #07102d;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  padding-top: 54px;
  padding-bottom: 44px;
}

.footer-brand {
  display: grid;
  justify-items: start;
  max-width: 540px;
  text-align: left;
}

.footer-brand img,
.footer-brand .custom-logo {
  width: auto;
  max-width: 108px;
  max-height: 46px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 20px 0 0;
}

.footer-nav__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1080px) {
  .header-shell {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 118px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 118px);
    overflow-y: auto;
    padding: 20px 24px 28px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .admin-bar .site-nav {
    top: 150px;
  }

  .nav-toggle:checked ~ .site-nav {
    display: block;
  }

  .site-nav__menu {
    flex-direction: column;
    gap: 2px;
  }

  .site-nav a {
    justify-content: center;
    width: 100%;
    min-height: 48px;
  }

  .header-contact {
    grid-column: 3;
    grid-row: 1;
  }

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

  .hero-quick a:nth-child(2) {
    border-right: 0;
  }

  .hero {
    min-height: 790px;
  }

  .hero__content {
    padding-bottom: 260px;
  }

  .demo-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .demo-media {
    width: min(100%, 820px);
    margin-inline: auto;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: 0;
  }

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

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

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .site-nav {
    top: 176px;
  }
}

@media (max-width: 760px) {
  :root {
    --h1-size: 38px;
    --h2-size: 30px;
    --h3-size: 20px;
  }

  .container,
  .narrow,
  .reading-width {
    width: min(calc(100% - 32px), var(--container));
  }

  .notice-bar__inner {
    min-height: 48px;
    font-size: 12px;
  }

  .notice-bar__inner span,
  .notice-bar__inner a:last-child {
    display: none;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 72px;
  }

  .site-brand img,
  .custom-logo {
    max-width: 100px;
    max-height: 44px;
  }

  .header-contact {
    display: none;
  }

  .site-nav {
    top: 120px;
    max-height: calc(100vh - 120px);
  }

  .admin-bar .site-nav {
    top: 166px;
  }

  .hero {
    min-height: 780px;
  }

  .hero__media {
    background-position: 64% center;
  }

  .hero__shade {
    background: rgba(7, 17, 50, 0.79);
  }

  .hero__content {
    padding: 82px 0 300px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero .button-row {
    width: min(100%, 340px);
  }

  .hero .button {
    width: 100%;
  }

  .hero-quick__grid {
    width: 100%;
  }

  .hero-quick a {
    min-height: 106px;
    padding: 19px 12px;
  }

  .hero-quick a:nth-child(odd) {
    border-left: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-lead {
    font-size: 16px;
  }

  .demo-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .demo-copy .button-row {
    width: min(100%, 340px);
  }

  .demo-copy .button {
    width: 100%;
  }

  .support-card {
    padding: 34px 22px;
  }

  .product-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-list li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-list li:last-child {
    border-bottom: 0;
  }

  .contact-panel {
    flex-direction: column;
    gap: 30px;
  }

  .contact-panel > div {
    text-align: center;
  }

  .contact-panel .button {
    width: min(100%, 340px);
  }

  .page-hero {
    min-height: 300px;
  }

  .page-hero h1,
  .archive-hero h1 {
    font-size: 34px;
  }

  .page-content-section,
  .archive-section {
    padding: 62px 0 76px;
  }

  .entry-content h2 {
    font-size: 26px;
  }

  .entry-content .alignwide,
  .entry-content .alignfull {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    justify-items: center;
    margin-inline: auto;
    text-align: center;
  }

  .footer-nav__menu {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-quick strong {
    font-size: 15px;
  }

  .hero-quick span {
    font-size: 12px;
  }

  .button,
  .wp-block-button__link {
    min-height: 50px;
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
