/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Colors */
  --color-primary: #83be42;
  --color-primary-dark: #6caa3f;
  --color-secondary: #0f302a;
  --color-accent: #bbdb6e;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-light: #f8f8f8;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-xxxl: 96px;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 37px;
  --border-radius-lg: 55px;
  --border-radius-xl: 100px;
  --border-radius-round: 9999px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-normal: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Z-index Scale */
  --z-base: 1;
  --z-overlay: 10;
  --z-modal: 100;
  --z-tooltip: 1000;
  
  /* Aspect Ratios */
  --aspect-video: 16/9;
  --aspect-square: 1/1;
  --aspect-portrait: 3/4;
  --aspect-landscape: 4/3;
  --aspect-hero: 1298/749;
  --aspect-card: 430/590;
  
  /* Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-xxl: 1536px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

.safe-svg-cover {
  text-align: center;
}

.safe-svg-cover .safe-svg-inside {
  display: inline-block;
  max-width: 100%;
}

.safe-svg-cover svg {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
}

/* ==========================================================================
   Hero Components
   ========================================================================== */

.anchor-hero {
  background-image: url(../public/themes/ajandhaa/assets/bg-colours-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.homepage-hero {
  margin: auto;
  position: relative;
}

.homepage-hero::before {
  background-image: url(../public/themes/ajandhaa/assets/bg-colours-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-right-radius: var(--border-radius-xl);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
}

@media (min-width: 640px) {
  .homepage-hero::before {
    border-bottom-right-radius: 150px;
  }
}

@media (min-width: 830px) {
  .homepage-hero::before {
    border-bottom-right-radius: 250px;
  }
}

@media (min-width: 1600px) {
  .homepage-hero::before {
    border-bottom-right-radius: 440px;
  }
}

.homepage-hero .site-container {
  max-width: 100%;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

@media (min-width: 1100px) {
  .homepage-hero .site-container {
    padding-left: 90px;
    padding-right: 66px;
  }
}

@media (min-width: 1400px) {
  .homepage-hero .site-container {
    padding-left: 140px;
  }
}

/* ==========================================================================
   Interactive Slider
   ========================================================================== */

.interactive-slider .img-comp-container {
  height: auto;
  left: 50%;
  max-width: 100%;
  position: relative;
  transform: translateX(-50%);
  width: 100%;
}

.interactive-slider .img-comp-responsive {
  aspect-ratio: var(--aspect-hero);
  height: auto;
  width: 100%;
}

.interactive-slider img {
  aspect-ratio: var(--aspect-hero);
  height: 100%;
  max-width: unset;
  position: absolute;
  width: auto;
}

.interactive-slider .img-comp-img {
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.interactive-slider .img-comp-img img {
  display: block;
  vertical-align: middle;
}

.interactive-slider .img-comp-overlay {
  width: 50%;
}

.interactive-slider .img-comp-slider {
  cursor: ew-resize;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  z-index: var(--z-overlay);
}

.interactive-slider .img-comp-slider span {
  background-color: var(--color-white);
  height: calc(50% - 27.5px);
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
}

.interactive-slider .img-comp-slider span:last-child {
  bottom: 0;
  top: unset;
}

.interactive-slider .img-comp-slider::before {
  aspect-ratio: var(--aspect-square);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.314);
  border-radius: var(--border-radius-round);
  content: "";
  display: block;
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--border-radius-lg);
}

.interactive-slider .img-comp-slider svg {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  z-index: var(--z-overlay);
}

.interactive-slider .img-comp-slider svg #Path_10 {
  backdrop-filter: blur(10px);
  opacity: 0.5;
}

/* ==========================================================================
   Numbered Text
   ========================================================================== */

@media (min-width: 830px) {
  .numbered-text .site-container .quote:nth-child(2n) {
    margin-left: auto;
  }
  
  .numbered-text .site-container .quote:nth-child(2n) .h1 {
    left: unset;
    right: 0;
    top: 90%;
  }
}

/* ==========================================================================
   Product Enquiry
   ========================================================================== */

@media (min-width: 1600px) {
  .product-enquiry .copy p {
    font-size: 26px !important;
  }
}

/* ==========================================================================
   Tabbed Block
   ========================================================================== */

.tabbed-block .site-container {
  position: relative;
  z-index: var(--z-overlay);
}

.tabbed-block .toggle-container {
  position: relative;
}

.tabbed-block .toggle-container::before {
  background-color: var(--color-accent);
  border-radius: 39px;
  content: "";
  display: block;
  height: calc(100% - 22px);
  left: 11px;
  position: absolute;
  top: 11px;
  transition: var(--transition-normal);
  width: 50%;
}

.tabbed-block .toggle-container span {
  position: relative;
  z-index: var(--z-overlay);
}

.tabbed-block input:checked + label::before {
  left: calc(50% - 11px);
}

.tabbed-block .single-tab {
  display: none;
  opacity: 1;
  transition: var(--transition-normal);
}

.tabbed-block .single-tab.active {
  display: block;
}

.tabbed-block .single-tab.active img {
  opacity: 1;
}

.tabbed-block .single-tab.active:last-child img:first-child,
.tabbed-block .single-tab.active:last-child img:last-child {
  transform: translateY(0);
}

.tabbed-block .single-tab .text-container {
  transition: var(--transition-normal);
}

.tabbed-block .single-tab:not(.active) {
  display: none;
}

.tabbed-block .single-tab:not(.active) .text-container {
  display: none;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.tabbed-block .single-tab:not(.active) img {
  opacity: 0;
}

.tabbed-block .single-tab.fade-out-hidden .text-container {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.tabbed-block .single-tab.fade-out-hidden:last-child img:first-child,
.tabbed-block .single-tab.fade-out-hidden:last-child img:last-child {
  opacity: 0;
}

.tabbed-block .single-tab.fade-out-hidden:first-child img:first-child,
.tabbed-block .single-tab.fade-out-hidden:first-child img:last-child {
  opacity: 0;
  transform: translateY(0);
}

.tabbed-block .images .image-container {
  aspect-ratio: var(--aspect-square);
  height: auto;
  position: relative;
  transition: var(--transition-normal);
  width: 100%;
}

.tabbed-block .images .image-container img {
  border-bottom-right-radius: 55%;
  border-top-left-radius: 55%;
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: var(--transition-normal);
  width: 100%;
}

.tabbed-block .images .image-container img.active {
  opacity: 1;
}

.tabbed-block .images.active .image-container:first-child {
  transform: translateY(100px);
}

@media (max-width: 1024px) {
  .tabbed-block .images.active .image-container:first-child {
    transform: translateY(50px);
  }
}

.tabbed-block .images.active .image-container:last-child {
  transform: translateY(-100px);
}

@media (max-width: 1024px) {
  .tabbed-block .images.active .image-container:last-child {
    transform: translateY(-50px);
  }
}

/* ==========================================================================
   Accordion Components
   ========================================================================== */

.text-accordion .single-accordion svg {
  transition: var(--transition-normal);
}

.text-accordion .single-accordion .accordion-header {
  cursor: pointer;
}

.text-accordion .single-accordion.active svg {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .text-accordion h3 {
    font-size: 24px;
  }
  
  .text-accordion svg {
    height: auto;
    width: 30px;
  }
}

@media (min-width: 830px) {
  .text-accordion ul {
    column-count: 2;
    width: fit-content;
  }
  
  .text-accordion ul li {
    margin-bottom: 10px;
    padding-left: 50px !important;
    padding-right: 50px;
  }
}

.accordion-block .single-accordion:last-child {
  border-radius: var(--border-radius-md);
  margin-bottom: 0;
  padding-bottom: 0;
}

.accordion-block .single-accordion img {
  aspect-ratio: var(--aspect-square);
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  width: 100%;
}

.accordion-block .single-accordion[style*="background-color: #0f302a"] .btn {
  background-color: var(--color-primary);
}

.accordion-block .single-accordion svg {
  transition: var(--transition-normal);
}

.accordion-block .single-accordion .accordion-header {
  cursor: pointer;
}

.accordion-block .single-accordion.active svg {
  transform: rotate(45deg);
}

.accordion-block h4 a {
  text-decoration: none;
}

.accordion-block h4 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .accordion-block h3 {
    font-size: 24px;
  }
  
  .accordion-block svg {
    height: auto;
    width: 30px;
  }
}

/* ==========================================================================
   Text Block
   ========================================================================== */

@media (min-width: 1600px) {
  .text-block .copy h5 {
    font-size: 29px;
  }
  
  .text-block .copy > p {
    font-size: 26px;
  }
}

/* ==========================================================================
   Gallery
   ========================================================================== */

section.gallery .swiper-slide .image-container {
  clip-path: polygon(0 5%, 100% 5%, 100% 95%, 0 95%);
  transition: var(--transition-normal);
}

section.gallery .swiper-slide h6 {
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-normal);
}

section.gallery .swiper-slide b {
  font-weight: 600;
}

section.gallery .swiper-slide-active .image-container {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

section.gallery .swiper-slide-active h6 {
  opacity: 1;
  transform: translateY(0);
}

section.gallery .pagination-container {
  width: calc(71.42857vw - 50px);
}

@media (min-width: 1024px) {
  section.gallery .pagination-container {
    width: calc(58.82353vw - 68px);
  }
}

/* ==========================================================================
   Text Carousel
   ========================================================================== */

@media (max-width: 830px) {
  .text-carousel img {
    transform: scale(0.8);
  }
}

/* ==========================================================================
   Products Carousel
   ========================================================================== */

.products-carousel .products-carousel-container {
  position: relative;
}

.products-carousel .swiper-navigation-container {
  align-items: center;
  aspect-ratio: var(--aspect-square);
  background-color: var(--color-primary-dark);
  border-radius: var(--border-radius-round);
  display: none;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  z-index: var(--z-overlay);
}

@media (min-width: 1024px) {
  .products-carousel .swiper-navigation-container {
    display: flex;
    left: calc(31.25% - 5px);
  }
}

.products-carousel .swiper-navigation-container .swiper-left,
.products-carousel .swiper-navigation-container .swiper-right {
  align-items: center;
  display: flex;
  flex: 1 1 0%;
  height: 100%;
  justify-content: center;
  padding-right: 10px;
}

.products-carousel .swiper-navigation-container .swiper-left::before,
.products-carousel .swiper-navigation-container .swiper-right::before {
  background-color: var(--color-white);
}

.single-product .background-picture {
  transition: var(--transition-normal);
}

.single-product:hover .background-picture {
  opacity: 1;
}

/* ==========================================================================
   Downloads
   ========================================================================== */

@media screen and (min-width: 1025px) {
  .downloads .contact-banner {
    box-shadow: var(--shadow-md);
  }
}

/* ==========================================================================
   Fifty Fifty Block
   ========================================================================== */

@media (min-width: 830px) {
  .fifty-fifty-block.reverse-layout .text-container {
    grid-column: 2;
    grid-row: 1;
  }
  
  .fifty-fifty-block.reverse-layout .image-container {
    grid-column: 1;
    grid-row: 1;
    margin-left: 0;
    margin-right: -18px;
  }
}

@media (min-width: 1440px) {
  .fifty-fifty-block .copy p {
    font-size: 21px !important;
  }
}

.fifty-fifty-block:last-child {
  margin-bottom: 91px;
}

/* ==========================================================================
   Product Comparison
   ========================================================================== */

@media (max-width: 830px) {
  .product-comparison .copy,
  .table-block .copy {
    overflow-x: scroll;
  }
  
  .product-comparison .copy table,
  .table-block .copy table {
    max-width: 800px;
    min-width: 800px;
    width: 100%;
  }
}

/* ==========================================================================
   Video Block
   ========================================================================== */

.video-block iframe,
.video-block video {
  aspect-ratio: 1316/773;
  height: auto;
  width: 100%;
}

/* ==========================================================================
   Image Carousel
   ========================================================================== */

.image-carousel {
  position: relative;
}

.image-carousel::before {
  background-size: cover;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100vw;
}

.image-carousel .swiper-slide .pic-container {
  aspect-ratio: var(--aspect-card);
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  height: auto;
  position: relative;
  width: 100%;
}

@media (max-width: 830px) {
  .image-carousel .swiper-slide .left-column {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.image-carousel .swiper-slide .background-picture img {
  border-radius: var(--border-radius-md);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.image-carousel .swiper-slide .left-column,
.image-carousel .swiper-slide .right-column {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-normal);
}

.image-carousel .swiper-slide .left-column {
  transform: translateY(0);
}

.image-carousel .swiper-slide .right-column {
  transition-delay: 0s;
}

.image-carousel .swiper-slide-active .left-column,
.image-carousel .swiper-slide-active .right-column,
.image-carousel .swiper-slide-duplicate-active .left-column,
.image-carousel .swiper-slide-duplicate-active .right-column {
  transition: var(--transition-normal) 0.4s;
}

.image-carousel .swiper-slide-active .right-column,
.image-carousel .swiper-slide-duplicate-active .right-column {
  transition-delay: 0.7s;
}

.image-carousel .swiper-slide-active .left-column,
.image-carousel .swiper-slide-active .right-column,
.image-carousel .swiper-slide-duplicate-active .left-column,
.image-carousel .swiper-slide-duplicate-active .right-column {
  opacity: 1;
  transform: translateY(0);
}

.image-carousel .progress-pagination {
  background-color: var(--color-white);
  border-radius: var(--border-radius-sm);
  flex-grow: 1;
  height: 4px;
  position: relative;
  width: auto;
}

.image-carousel .progress-pagination::before {
  background-color: var(--color-primary);
  border-radius: var(--border-radius-sm);
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
}

.image-carousel .swiper-slide-active .progress-pagination::before,
.image-carousel .swiper-slide-duplicate-active .progress-pagination::before {
  animation: countingBar 8s linear forwards;
}

@keyframes countingBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.image-carousel + section {
  position: relative;
  z-index: var(--z-overlay);
}

.homepage-hero + .image-carousel::before,
.homepage-hero + style + .image-carousel::before {
  background-size: cover;
  content: "";
  display: block;
  height: calc(100vh + 100% + 100px);
  left: 0;
  pointer-events: none;
  position: absolute;
  top: -100vh;
  width: 100vw;
}

@media (min-width: 1920px) {
  .homepage-hero + .image-carousel::before,
  .homepage-hero + style + .image-carousel::before {
    height: calc(200vh + 100% + 100px);
    top: -200vh;
  }
}

/* ==========================================================================
   Contact Block
   ========================================================================== */

.contact-block {
  background-image: url(../public/themes/ajandhaa/assets/bg-colours-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.contact-block iframe {
  border-radius: var(--border-radius-md);
  height: 100%;
  position: absolute;
  width: 100%;
}

.contact-block svg path {
  fill: var(--color-secondary);
}

/* ==========================================================================
   Sectors Listing
   ========================================================================== */

@media (min-width: 830px) {
  .sectors-listing .fifty-fifty-container:nth-child(2n) .text-container {
    grid-column: 2;
    grid-row: 1;
  }
  
  .sectors-listing .fifty-fifty-container:nth-child(2n) .image-container {
    grid-column: 1;
    grid-row: 1;
    margin-left: 0;
    margin-right: -18px;
  }
}

@media (max-width: 830px) {
  .sectors-listing .fifty-fifty-container .image-container {
    aspect-ratio: var(--aspect-square);
    height: auto;
    width: 100%;
  }
}

/* ==========================================================================
   WordPress Core Styles
   ========================================================================== */

/* WordPress Global Styles */
:root {
  --wp--preset--aspect-ratio--square: 1;
  --wp--preset--aspect-ratio--4-3: 4/3;
  --wp--preset--aspect-ratio--3-4: 3/4;
  --wp--preset--aspect-ratio--3-2: 3/2;
  --wp--preset--aspect-ratio--2-3: 2/3;
  --wp--preset--aspect-ratio--16-9: 16/9;
  --wp--preset--aspect-ratio--9-16: 9/16;
  --wp--preset--color--black: #000000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
  --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
  --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
  --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
  --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
  --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
  --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
  --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
  --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
  --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
  --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
  --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
  --wp--preset--font-size--small: 13px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 36px;
  --wp--preset--font-size--x-large: 42px;
  --wp--preset--spacing--20: 0.44rem;
  --wp--preset--spacing--30: 0.67rem;
  --wp--preset--spacing--40: 1rem;
  --wp--preset--spacing--50: 1.5rem;
  --wp--preset--spacing--60: 2.25rem;
  --wp--preset--spacing--70: 3.38rem;
  --wp--preset--spacing--80: 5.06rem;
  --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
  --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
  --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

/* WordPress Layout Styles */
:root :where(.is-layout-flow) > :first-child {
  margin-block-start: 0;
}

:root :where(.is-layout-flow) > :last-child {
  margin-block-end: 0;
}

:root :where(.is-layout-flow) > * {
  margin-block-start: 24px;
  margin-block-end: 0;
}

:root :where(.is-layout-flow) > * {
  margin-block-start: 24px;
  margin-block-end: 0;
}

:root :where(.is-layout-constrained) > * {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
}

:root :where(.is-layout-flex) {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  align-items: center;
}

:root :where(.is-layout-grid) {
  display: grid;
  gap: 0.5em;
}

:root .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

:root .wp-block-column {
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
}

:root .wp-block-group {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}
