/*
Theme Name: Vallox Theme
Theme URI: https://vallox.tech
Author: Vallox Team
Author URI: https://vallox.tech
Description: Modern theme for Vallox regional website - clean, fast, and professional ventilation solutions showcase
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vallox-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Custom Properties - Vallox Brand Colors */
:root {
  --color-primary: #004a98;
  --color-primary-dark: #003670;
  --color-primary-light: #0066cc;
  --color-secondary: #00b4d8;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-light: #f5f5f5;
  --color-border: #e0e0e0;
  
  --font-primary: proxima-nova, Arial, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  --container-width: 1200px;
  --header-height: 80px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  
  --transition: all 0.3s ease;
}

/* Base Styles */
html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* WordPress Core Alignments */
.alignleft {
  float: left;
  margin-right: var(--spacing-md);
}

.alignright {
  float: right;
  margin-left: var(--spacing-md);
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Screen Reader Text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: var(--color-bg-light);
  clip: auto !important;
  color: var(--color-text);
  display: block;
  font-size: 1rem;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Standard page surface */
.vallox-page,
.vallox-single-post {
  background: #f7f9fb;
  color: #102033;
}

.vallox-page.is-support-page {
  background: #ffffff;
}

.vallox-page__container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 88px;
}

.vallox-page.is-support-page .vallox-page__container {
  padding-bottom: 136px;
}

/* Blue hero block — same width constraints as the header */
.vallox-page-hero {
  width: 100%;
  max-width: 1838px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 16px 58px;
  background: #0033a0;
  border-radius: 0 0 70px 0;
  overflow: hidden;
}

@media (min-width: 1280px) {
  .vallox-page-hero {
    width: calc(100% - 5rem);
    padding: 48px 0 58px;
  }
}

.vallox-page-hero__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.vallox-page-hero__eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vallox-page-hero .entry-title,
.vallox-page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
}

/* White breadcrumbs inside the blue hero */
.vallox-page-hero .vallox-page-breadcrumbs__list {
  color: rgba(255, 255, 255, 0.65);
}

.vallox-page-hero .vallox-page-breadcrumbs__item:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.45);
}

.vallox-page-hero .vallox-page-breadcrumbs__item a {
  color: rgba(255, 255, 255, 0.85);
}

.vallox-page-hero .vallox-page-breadcrumbs__item a:hover {
  color: #ffffff;
}

.vallox-page-hero .vallox-page-breadcrumbs__item span {
  color: rgba(255, 255, 255, 0.55);
}

.vallox-page__eyebrow {
  margin: 0 0 12px;
  color: #0062a8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vallox-page .entry-title {
  max-width: 900px;
  margin: 0;
  color: #08233f;
  font-size: clamp(2.35rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
}

.vallox-page__content {
  max-width: 920px;
  padding: 32px;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 36, 64, 0.08);
}

.vallox-page__content > * + * {
  margin-top: 1.2rem;
}

.vallox-page__content h2,
.vallox-page__content h3 {
  margin-top: 2rem;
  color: #08233f;
  font-weight: 700;
  line-height: 1.18;
}

.vallox-page__content h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.vallox-page__content h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.vallox-page__content p,
.vallox-page__content li {
  color: #4e5d6b;
  font-size: 1.05rem;
  line-height: 1.65;
}

.vallox-page__content ul,
.vallox-page__content ol {
  padding-left: 1.35rem;
}

.vallox-page__content a {
  color: #0062a8;
  font-weight: 700;
  text-decoration: none;
}

.vallox-page__content a:hover {
  color: #003f70;
  text-decoration: underline;
}

.vallox-page__content.is-support {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.vallox-page__content.is-support > p:first-child {
  margin-top: 0;
  padding: 28px 30px;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 36, 64, 0.06);
  color: #33495f;
  font-size: 1.12rem;
  line-height: 1.7;
}

.vallox-page__content.is-support > h2,
.vallox-page__content.is-support > h3 {
  margin-top: 2.25rem;
}

.vallox-page__content.is-support > ul,
.vallox-page__content.is-support > ol {
  padding: 24px 24px 24px 42px;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 36, 64, 0.06);
}

.vallox-page__content.is-support > ul li + li,
.vallox-page__content.is-support > ol li + li {
  margin-top: 10px;
}

.vallox-page__content.is-support > p + p,
.vallox-page__content.is-support > p + ul,
.vallox-page__content.is-support > p + ol {
  margin-top: 1rem;
}

.vallox-page__content.is-support .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.25rem;
}

.vallox-page__content.is-support .wp-block-button {
  margin: 0;
}

.vallox-page__content.is-support .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  background: #0062a8;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.vallox-page__content.is-support .wp-block-button__link:hover {
  background: #004f89;
  color: #ffffff;
  text-decoration: none;
}

.vallox-page__content.is-support-hub > h2 {
  margin-top: 2.75rem;
}

.vallox-page__content.is-support-hub > p:first-child,
.vallox-page__content.is-support-hub > h2:first-of-type {
  display: none;
}

.vallox-page__content.is-support-hub > ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px 34px;
  margin-top: 44px;
  margin-bottom: 110px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
}

.vallox-page__content.is-support-hub > ul li {
  display: flex;
  min-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
  text-align: center;
  transition: transform 180ms ease;
}

.vallox-page__content.is-support-hub > ul li::marker {
  content: "";
}

.vallox-page__content.is-support-hub > ul li:hover {
  transform: translateY(-2px);
}

.vallox-page__content.is-support-hub > ul li a {
  display: flex;
  flex: 1 1 auto;
  gap: 22px;
  min-height: 100%;
  padding: 0;
  align-items: center;
  color: #000000;
  flex-direction: column;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.vallox-page__content.is-support-hub > ul li a:hover {
  color: #0062a8;
  text-decoration: none;
}

.vallox-support-hub-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 36px 0 28px;
}

.vallox-support-hub-card {
  min-width: 0;
  text-align: center;
}

.vallox-support-hub-card a {
  display: grid;
  gap: 14px;
  justify-items: center;
  color: #111827;
  font-weight: 400;
  text-decoration: none;
}

.vallox-support-hub-card a:hover {
  color: #0033a0;
  text-decoration: none;
}

.vallox-support-hub-card__icon {
  display: grid;
  width: 108px;
  height: 108px;
  margin-bottom: 8px;
  place-items: center;
  border: 4px solid #f39200;
  border-radius: 999px;
  color: #f39200;
}

.vallox-support-hub-card__icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.vallox-support-hub-card strong {
  color: #111827;
  font-size: 1.32rem;
  line-height: 1.18;
}

.vallox-support-hub-card span:not(.vallox-support-hub-card__icon) {
  max-width: 230px;
  color: #536271;
  font-size: 1rem;
  line-height: 1.55;
}

.vallox-support-hub-card em {
  color: #0033a0;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}

.vallox-support-feature-blocks {
  display: grid;
  gap: 64px;
  margin-top: 78px;
}

.vallox-support-feature {
  display: grid;
  position: relative;
  align-items: stretch;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  min-height: 330px;
}

.vallox-support-feature__media {
  display: block;
  position: relative;
  z-index: 2;
  align-self: end;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 80px 0 80px 0;
  background: #e6eef3;
}

.vallox-support-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vallox-support-feature__body {
  display: flex;
  z-index: 1;
  min-height: 330px;
  margin-left: -72px;
  padding: 68px 64px 56px 118px;
  border-radius: 16px 0 0 0;
  background: #e9eef1;
  color: #4c5965;
  flex-direction: column;
  justify-content: center;
}

.vallox-support-feature--reverse {
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
}

.vallox-support-feature--reverse .vallox-support-feature__body {
  order: 1;
  margin-right: -72px;
  margin-left: 0;
  padding-right: 118px;
  padding-left: 64px;
  border-radius: 0 16px 0 0;
}

.vallox-support-feature--reverse .vallox-support-feature__media {
  order: 2;
}

.vallox-support-feature__body h2 {
  max-width: 430px;
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
}

.vallox-support-feature__body p {
  max-width: 430px;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.vallox-support-feature__link {
  align-self: flex-start;
  margin-top: 26px;
  padding: 9px 20px;
  border: 2px solid #000000;
  border-radius: 999px;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.vallox-support-feature__link::after {
  margin-left: 8px;
  content: '\2192';
}

.vallox-support-feature__link:hover {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
}

.vallox-faq-list {
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin: 16px auto 0;
}

.vallox-faq-list details {
  border: 1px solid #aeb7be;
  border-radius: 8px;
  background: #ffffff;
}

.vallox-faq-list summary {
  display: grid;
  gap: 20px;
  align-items: center;
  min-height: 96px;
  padding: 24px 36px;
  color: #111827;
  cursor: pointer;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  list-style: none;
}

.vallox-faq-list summary::-webkit-details-marker {
  display: none;
}

.vallox-faq-list summary::after {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #0033a0;
  border-bottom: 2px solid #0033a0;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.vallox-faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.vallox-faq-list summary span {
  color: #111827;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.24;
}

.vallox-faq-list__copy {
  min-height: 34px;
  padding: 6px 16px;
  border: 0;
  border-radius: 999px;
  background: #edf2f5;
  color: #0033a0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.vallox-faq-list__copy:hover,
.vallox-faq-list__copy:focus {
  background: #dfe8ee;
}

.vallox-faq-list__answer {
  max-width: 820px;
  padding: 0 36px 30px;
}

.vallox-faq-list__answer p {
  margin: 0;
  color: #4e5d6b;
  font-size: 1.06rem;
  line-height: 1.65;
}

.vallox-page__content.is-support-hub > ul li a::before {
  display: block;
  width: 104px;
  height: 104px;
  border: 5px solid #f39200;
  border-radius: 999px;
  background-color: transparent;
  background-image: var(--vallox-support-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 44px 44px;
  content: "";
}

.vallox-page__content.is-support-hub > ul li:nth-child(1) a {
  --vallox-support-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23f39200'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M14%202H6a2%202%200%200%200-2%202v16a2%202%200%200%200%202%202h12a2%202%200%200%200%202-2V8z'/%3E%3Cpath%20d='M14%202v6h6'/%3E%3C/svg%3E");
}

.vallox-page__content.is-support-hub > ul li:nth-child(2) a {
  --vallox-support-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23f39200'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='12'%20cy='12'%20r='9'/%3E%3Cpath%20d='M9.5%209a2.5%202.5%200%200%201%204.8%201c0%202-2.3%202.1-2.3%204'/%3E%3Cpath%20d='M12%2017h.01'/%3E%3C/svg%3E");
}

.vallox-page__content.is-support-hub > ul li:nth-child(3) a {
  --vallox-support-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23f39200'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M12%203v12'/%3E%3Cpath%20d='m7%2010%205%205%205-5'/%3E%3Cpath%20d='M5%2021h14'/%3E%3C/svg%3E");
}

.vallox-page__content.is-support-hub > ul li:nth-child(4) a {
  --vallox-support-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23f39200'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M14.7%206.3a4%204%200%200%200-5.4%205.4L3%2018l3%203%206.3-6.3a4%204%200%200%200%205.4-5.4l-3%203-3-3z'/%3E%3C/svg%3E");
}

.vallox-page__content.is-support-hub > ul li:nth-child(5) a {
  --vallox-support-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23f39200'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M12%202l7%204v5c0%205-3%209-7%2011-4-2-7-6-7-11V6z'/%3E%3Cpath%20d='m9%2012%202%202%204-4'/%3E%3C/svg%3E");
}

.vallox-page__content.is-support-hub > ul li:nth-child(6) a {
  --vallox-support-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23f39200'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M22%2016.9v3a2%202%200%200%201-2.2%202%2019.8%2019.8%200%200%201-8.6-3.1%2019.5%2019.5%200%200%201-6-6A19.8%2019.8%200%200%201%202.1%204.2%202%202%200%200%201%204.1%202h3a2%202%200%200%201%202%201.7c.1%201%20.3%202%20.7%202.8a2%202%200%200%201-.5%202.1L8.1%209.9a16%2016%200%200%200%206%206l1.3-1.2a2%202%200%200%201%202.1-.5c.9.4%201.8.6%202.8.7A2%202%200%200%201%2022%2016.9z'/%3E%3C/svg%3E");
}

.vallox-page__content.is-why-page {
  max-width: 1088px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.vallox-page__content.is-why-page > p:first-child {
  margin-top: 0;
  max-width: 860px;
  color: #33495f;
  font-size: 1.2rem;
  line-height: 1.75;
}

.vallox-page__content.is-why-page > h2 {
  margin-top: 2.5rem;
}

.vallox-page__content.is-why-page > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  list-style: none;
}

.vallox-page__content.is-why-page > ul li {
  margin: 0;
  padding: 24px 26px;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 36, 64, 0.06);
  color: #33495f;
}

.vallox-page__content.is-why-page > ul li::marker {
  content: "";
}

.vallox-page__content.is-why-page .wp-block-buttons {
  margin-top: 2rem;
}

.vallox-page__content.is-why-page .wp-block-button__link {
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  background: #0062a8;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.vallox-page__content.is-why-page .wp-block-button__link:hover {
  background: #004f89;
  color: #ffffff;
  text-decoration: none;
}

.vallox-page-breadcrumbs {
  margin-bottom: 16px;
}

.vallox-page-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #6a7886;
  font-size: 0.85rem;
}

.vallox-page-breadcrumbs__item:not(:last-child)::after {
  margin-left: 6px;
  color: #94a3b8;
  content: '›';
}

.vallox-page-breadcrumbs__item a {
  color: #0062a8;
  font-weight: 600;
  text-decoration: none;
}

.vallox-page-breadcrumbs__item a:hover {
  text-decoration: underline;
}

.vallox-page-breadcrumbs__item span {
  color: #4e5d6b;
}

.vallox-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.vallox-search-form__input {
  flex: 1 1 280px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #dfe7ee;
  border-radius: 4px;
  background: #ffffff;
  color: #102033;
  font-size: 1rem;
}

.vallox-page .vallox-search-form__submit,
.vallox-search-form .vallox-search-form__submit {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  background-color: #0041bb;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.vallox-page .vallox-search-form__submit:hover,
.vallox-search-form .vallox-search-form__submit:hover {
  background-color: #003399;
}

.vallox-search-results {
  display: grid;
  gap: 16px;
}

.vallox-search-results__item {
  padding: 24px;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 36, 64, 0.06);
}

.vallox-search-results__type {
  margin: 0 0 8px;
  color: #0062a8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vallox-search-results__title {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.vallox-search-results__title a {
  color: #08233f;
  text-decoration: none;
}

.vallox-search-results__title a:hover {
  color: #0062a8;
  text-decoration: underline;
}

.vallox-search-results__excerpt {
  color: #4e5d6b;
  line-height: 1.6;
}

.vallox-search-empty,
.vallox-search-pagination {
  margin-top: 24px;
}

.vallox-search-empty__link {
  color: #0062a8;
  font-weight: 700;
  text-decoration: none;
}

.vallox-search-empty__link:hover {
  text-decoration: underline;
}

.site-footer {
  background: #08233f;
  color: #ffffff;
}

.site-footer .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.site-footer .site-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .vallox-page__content.is-support-hub > ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .vallox-support-feature,
  .vallox-support-feature--reverse {
    grid-template-columns: 1fr;
    min-width: 0;
    min-height: 0;
  }

  .vallox-support-feature__media,
  .vallox-support-feature--reverse .vallox-support-feature__media {
    order: 1;
    width: 100%;
    min-width: 0;
    border-radius: 56px 0 56px 0;
  }

  .vallox-support-feature__body,
  .vallox-support-feature--reverse .vallox-support-feature__body {
    order: 2;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 34px 30px 38px;
    border-radius: 0;
  }
}

@media (max-width: 720px) {
  .vallox-page__container {
    padding: 42px 0 64px;
  }

  .vallox-page__content {
    padding: 24px;
  }

  .vallox-page__content.is-support {
    padding: 0;
  }

  .vallox-page__content.is-support > p:first-child,
  .vallox-page__content.is-support > ul,
  .vallox-page__content.is-support > ol {
    padding: 22px;
  }

  .vallox-page__content.is-support-hub > ul {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .vallox-page__content.is-support-hub > ul li a {
    padding: 0;
  }

  .vallox-support-hub-grid {
    gap: 34px;
    grid-template-columns: 1fr;
    padding-top: 12px;
  }

  .vallox-support-feature-blocks {
    gap: 40px;
    margin-top: 54px;
  }

  .vallox-support-feature__media,
  .vallox-support-feature--reverse .vallox-support-feature__media {
    border-radius: 48px 0 48px 0;
  }

  .vallox-support-feature__body,
  .vallox-support-feature--reverse .vallox-support-feature__body {
    padding: 30px 24px 34px;
  }

  .vallox-support-feature__body h2,
  .vallox-support-feature__body p {
    max-width: none;
    overflow-wrap: anywhere;
  }

  .vallox-faq-list summary {
    gap: 14px;
    min-height: 80px;
    padding: 20px;
    grid-template-columns: minmax(0, 1fr) 16px;
  }

  .vallox-faq-list summary span {
    font-size: 1.15rem;
  }

  .vallox-faq-list__copy {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .vallox-faq-list__answer {
    padding: 0 20px 24px;
  }

  .vallox-page__content.is-why-page > ul {
    grid-template-columns: 1fr;
  }

  .vallox-page__content.is-why-page > ul li {
    padding: 22px;
  }
}
