/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 10 2026 | 22:32:21 */
/* =========================================
   Ventari Homepage - Who We Work With Section
========================================= */

.ventari-workwith-section {
  --ventari-navy: #243A5E;
  --ventari-navy-deep: #1B2F4A;
  --ventari-navy-ink: #10223A;
  --ventari-amber: #D89B2B;
  --ventari-platinum: #E5E4E2;
  --ventari-white: #ffffff;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #1B2F4A 0%,
      #142842 48%,
      #10223A 100%
    );
}

/* Scoped heading/copy colours for this homepage section only */
.ventari-workwith-section .homepage-whoweworkwith-eyebrow-h6 {
  color: var(--ventari-amber) !important;
}

.ventari-workwith-section .homepage-whoweworkwith-h2,
.ventari-workwith-section .homepage-whoweworkwith-p {
  color: var(--ventari-white) !important;
}

.ventari-workwith-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.055) 0%,
      rgba(255, 255, 255, 0) 36%
    ),
    linear-gradient(
      315deg,
      rgba(216, 155, 43, 0.08) 0%,
      rgba(216, 155, 43, 0) 34%
    ),
    radial-gradient(
      circle at 50% 0%,
      rgba(229, 228, 226, 0.055),
      rgba(229, 228, 226, 0) 42%
    );

  pointer-events: none;
}

.ventari-workwith-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;

  width: min(860px, 76vw);
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(216, 155, 43, 0),
      rgba(216, 155, 43, 0.52),
      rgba(216, 155, 43, 0)
    );

  transform: translateX(-50%);
  pointer-events: none;
}

/* =========================================
   Cards
========================================= */

.ventari-workwith-cards {
  --ventari-site-dark-blue: #07172D;

  --ventari-card-blue-top: #123066;
  --ventari-card-blue-mid: #081E44;
  --ventari-card-blue-deep: #030D24;
  --ventari-card-blue-hover: #153B78;

  --ventari-amber: #D89B2B;
  --ventari-amber-light: #F1C66A;
  --ventari-platinum: #E5E4E2;
  --ventari-white: #ffffff;

  width: min(calc(100% - 96px), 1320px);
  margin: clamp(28px, 3vw, 42px) auto 0;

  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: clamp(34px, 3.2vw, 48px) clamp(16px, 1.7vw, 26px);
  align-items: start;

  font-family: Montserrat, Arial, sans-serif;
}

.ventari-workwith-card {
  position: relative;
  isolation: isolate;

  box-sizing: border-box;
  grid-column: span 2;

  min-height: clamp(168px, 13vw, 210px);

  color: var(--ventari-white);
  border-radius: 2px;
  border: 1px solid rgba(181, 198, 232, 0.22);

  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(82, 124, 205, 0.22) 0%,
      rgba(82, 124, 205, 0.08) 32%,
      rgba(82, 124, 205, 0) 58%
    ),
    linear-gradient(
      145deg,
      var(--ventari-card-blue-top) 0%,
      var(--ventari-card-blue-mid) 46%,
      var(--ventari-card-blue-deep) 100%
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(0, 0, 0, 0.34),
    0 16px 30px rgba(0, 0, 0, 0.24);

  transform: translateY(0);
  overflow: visible;

  transition:
    min-height 0.26s ease,
    height 0.26s ease,
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

/* Locked initial/closed height */
.ventari-workwith-card:not([open]) {
  height: clamp(168px, 13vw, 210px);
  min-height: clamp(168px, 13vw, 210px);
}

.ventari-workwith-card:not([open]) .ventari-workwith-card__summary {
  height: 100%;
  min-height: 100%;
}

/* Top row: 4 centered cards */
.ventari-workwith-card:nth-child(1) {
  grid-column: 2 / span 2;
}

.ventari-workwith-card:nth-child(2) {
  grid-column: 4 / span 2;
}

.ventari-workwith-card:nth-child(3) {
  grid-column: 6 / span 2;
}

.ventari-workwith-card:nth-child(4) {
  grid-column: 8 / span 2;
}

/* Bottom row: 5 cards */
.ventari-workwith-card:nth-child(5) {
  grid-column: 1 / span 2;
}

.ventari-workwith-card:nth-child(6) {
  grid-column: 3 / span 2;
}

.ventari-workwith-card:nth-child(7) {
  grid-column: 5 / span 2;
}

.ventari-workwith-card:nth-child(8) {
  grid-column: 7 / span 2;
}

.ventari-workwith-card:nth-child(9) {
  grid-column: 9 / span 2;
}

.ventari-workwith-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  border-radius: 2px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.025) 34%,
      rgba(255, 255, 255, 0) 68%
    );

  opacity: 0.86;
  pointer-events: none;
}

.ventari-workwith-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 46%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(216, 155, 43, 0),
      rgba(216, 155, 43, 0.78),
      rgba(216, 155, 43, 0)
    );

  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  opacity: 0;

  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

/* Native details cleanup */
.ventari-workwith-card > summary {
  list-style: none;
}

.ventari-workwith-card > summary::-webkit-details-marker {
  display: none;
}

.ventari-workwith-card__summary {
  position: relative;
  z-index: 2;

  min-height: clamp(168px, 13vw, 210px);
  box-sizing: border-box;
  padding: clamp(22px, 2vw, 30px) clamp(14px, 1.45vw, 22px) clamp(34px, 2.6vw, 42px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.8vw, 12px);

  text-align: center;
  cursor: pointer;
  outline: none;
}

.ventari-workwith-card__summary:focus-visible {
  outline: 2px solid rgba(216, 155, 43, 0.72);
  outline-offset: 5px;
}

.ventari-workwith-card i {
  color: var(--ventari-amber);

  font-size: clamp(1.55rem, 2.05vw, 2.25rem);
  line-height: 1;

  filter: drop-shadow(0 8px 16px rgba(216, 155, 43, 0.16));

  transition:
    color 0.24s ease,
    transform 0.24s ease,
    filter 0.24s ease;
}

.ventari-workwith-card__title {
  display: block;

  color: rgba(255, 255, 255, 0.96);

  font-size: clamp(0.96rem, 1.02vw, 1.16rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.035em;

  transition:
    color 0.24s ease,
    font-weight 0.24s ease;
}

.ventari-workwith-card__teaser {
  display: block;

  max-width: 24ch;
  margin-top: 2px;

  color: rgba(255, 255, 255, 0.82);

  font-size: clamp(0.72rem, 0.78vw, 0.88rem);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.02em;

  transition:
    color 0.24s ease;
}

.ventari-workwith-card__toggle {
  position: absolute;
  left: 50%;
  bottom: -18px;
  z-index: 5;

  width: 36px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 2px;
  border: 1.5px solid rgba(216, 155, 43, 0.95);
  background:
    linear-gradient(
      180deg,
      rgba(5, 16, 29, 0.98),
      rgba(3, 13, 36, 0.98)
    );

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.28),
    0 0 0 3px rgba(216, 155, 43, 0.08);

  transform: translate3d(-50%, 0, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform-origin: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  pointer-events: auto;
  cursor: pointer;

  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.ventari-workwith-card__toggle::before {
  content: "+";

  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--ventari-amber);
  font-size: 1.38rem;
  line-height: 1;
  font-weight: 300;
  pointer-events: none;
}

.ventari-workwith-card__toggle::after {
  content: "";

  position: absolute;
  inset: -10px;
  z-index: 1;

  border-radius: 999px;
  background: transparent;
}

.ventari-workwith-card:hover,
.ventari-workwith-card:focus-within {
  transform: translateY(-3px);

  border-color: rgba(255, 255, 255, 0.78);

  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(95, 142, 225, 0.28) 0%,
      rgba(95, 142, 225, 0.10) 34%,
      rgba(95, 142, 225, 0) 60%
    ),
    linear-gradient(
      145deg,
      var(--ventari-card-blue-hover) 0%,
      #0A2556 46%,
      #030D24 100%
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    0 20px 38px rgba(0, 0, 0, 0.32),
    0 0 0 3px rgba(216, 155, 43, 0.05);
}

.ventari-workwith-card:hover::after,
.ventari-workwith-card:focus-within::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.ventari-workwith-card:hover i,
.ventari-workwith-card:focus-within i {
  color: var(--ventari-amber-light);
  transform: translateY(-1px);
  filter: drop-shadow(0 9px 18px rgba(216, 155, 43, 0.24));
}

.ventari-workwith-card:hover .ventari-workwith-card__title,
.ventari-workwith-card:focus-within .ventari-workwith-card__title {
  color: #ffffff;
}

.ventari-workwith-card:hover .ventari-workwith-card__teaser,
.ventari-workwith-card:focus-within .ventari-workwith-card__teaser {
  color: rgba(255, 255, 255, 0.92);
}

.ventari-workwith-card:not([open]):hover .ventari-workwith-card__toggle,
.ventari-workwith-card:not([open]):focus-within .ventari-workwith-card__toggle {
  background:
    linear-gradient(
      180deg,
      rgba(5, 16, 29, 0.98),
      rgba(3, 13, 36, 0.98)
    );

  border-color: rgba(241, 198, 106, 1);

  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.32),
    0 0 0 4px rgba(216, 155, 43, 0.10),
    0 0 22px rgba(216, 155, 43, 0.24);
}

.ventari-workwith-card:not([open]):hover .ventari-workwith-card__toggle::before,
.ventari-workwith-card:not([open]):focus-within .ventari-workwith-card__toggle::before {
  color: #F1C66A;
}

/* Card plus soft-drop on click */
.ventari-workwith-card:not([open]) .ventari-workwith-card__toggle:active,
.ventari-workwith-card:not([open]) .ventari-workwith-card__summary:active .ventari-workwith-card__toggle {
  background:
    linear-gradient(
      180deg,
      #FFF8EA 0%,
      #ffffff 52%,
      #F6E4BE 100%
    );

  border-color: rgba(216, 155, 43, 0.94);

  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 0 0 4px rgba(216, 155, 43, 0.16),
    0 0 20px rgba(216, 155, 43, 0.30);

  transform: translate3d(-50%, 2px, 0);
  -webkit-transform: translate3d(-50%, 2px, 0);
}

.ventari-workwith-card:not([open]) .ventari-workwith-card__toggle:active::before,
.ventari-workwith-card:not([open]) .ventari-workwith-card__summary:active .ventari-workwith-card__toggle::before {
  color: var(--ventari-amber);
}

/* Expanded card */
.ventari-workwith-card[open] {
  height: auto;
  min-height: clamp(292px, 21vw, 350px);

  border-color: rgba(216, 155, 43, 0.92);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    0 24px 48px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(216, 155, 43, 0.34),
    0 0 28px rgba(216, 155, 43, 0.22);
}

.ventari-workwith-card[open]::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.ventari-workwith-card[open] .ventari-workwith-card__summary {
  height: auto;
  min-height: auto;
  padding-bottom: clamp(36px, 2.8vw, 44px);
  justify-content: flex-start;
}

.ventari-workwith-card[open] .ventari-workwith-card__toggle {
  bottom: -22px;

  background:
    linear-gradient(
      180deg,
      #E3AA42 0%,
      var(--ventari-amber) 54%,
      #B8791C 100%
    );

  border-color: rgba(255, 255, 255, 0.84);

  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.34),
    0 0 0 4px rgba(255, 255, 255, 0.10),
    0 0 26px rgba(216, 155, 43, 0.42);
}

.ventari-workwith-card[open] .ventari-workwith-card__toggle::before {
  content: "−";
  color: #ffffff;
}

/* Open card minus hover/active */
.ventari-workwith-card[open] .ventari-workwith-card__toggle:hover:not(:active),
.ventari-workwith-card[open] .ventari-workwith-card__summary:hover:not(:active):not(:has(.ventari-workwith-card__toggle:active)) .ventari-workwith-card__toggle {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.96) 100%
    );

  border-color: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 0 0 4px rgba(255, 255, 255, 0.16);

  transform: translate3d(-50%, -3px, 0);
  -webkit-transform: translate3d(-50%, -3px, 0);
}

.ventari-workwith-card[open] .ventari-workwith-card__toggle:hover:not(:active)::before,
.ventari-workwith-card[open] .ventari-workwith-card__summary:hover:not(:active):not(:has(.ventari-workwith-card__toggle:active)) .ventari-workwith-card__toggle::before {
  color: var(--ventari-amber);
}

.ventari-workwith-card[open] .ventari-workwith-card__toggle:active,
.ventari-workwith-card[open] .ventari-workwith-card__summary:active .ventari-workwith-card__toggle {
  background:
    linear-gradient(
      180deg,
      #FFF8EA 0%,
      #ffffff 52%,
      #F6E4BE 100%
    );

  border-color: rgba(216, 155, 43, 0.94);

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 0 0 4px rgba(216, 155, 43, 0.18),
    0 0 24px rgba(216, 155, 43, 0.40);

  transform: translate3d(-50%, 0, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
}

.ventari-workwith-card[open] .ventari-workwith-card__toggle:active::before,
.ventari-workwith-card[open] .ventari-workwith-card__summary:active .ventari-workwith-card__toggle::before {
  color: var(--ventari-amber);
}

.ventari-workwith-card__expand {
  position: relative;
  z-index: 2;

  margin: clamp(5px, 0.65vw, 9px) clamp(14px, 1.4vw, 22px) clamp(28px, 2.3vw, 34px);
  padding: clamp(17px, 1.45vw, 22px) clamp(15px, 1.35vw, 20px) clamp(15px, 1.35vw, 20px);

  text-align: center;
  cursor: pointer;

  border-radius: 2px;
  border: 1px solid rgba(181, 198, 232, 0.16);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.14);

  animation: ventariWorkwithExpand 0.24s ease both;
}

/* Amber expanded eyebrow */
.ventari-workwith-card__expand .ventari-workwith-card__eyebrow,
html body .ventari-workwith-card__expand .ventari-workwith-card__eyebrow {
  margin: 0 0 9px;

  color: var(--ventari-amber) !important;
  -webkit-text-fill-color: var(--ventari-amber) !important;

  font-size: clamp(0.62rem, 0.68vw, 0.72rem);
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.ventari-workwith-card__expand p:last-child {
  margin: 0;

  color: rgba(255, 255, 255, 0.88);

  font-size: clamp(0.72rem, 0.74vw, 0.84rem);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.02em;
}

@keyframes ventariWorkwithExpand {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   Guide
========================================= */

.ventari-workwith-guide {
  width: min(calc(100% - 96px), 1320px);
  margin: clamp(34px, 3.2vw, 48px) auto 0;
  padding-top: clamp(16px, 1.5vw, 22px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  border-top: 1px solid rgba(229, 228, 226, 0.20);

  font-family: Montserrat, Arial, sans-serif;
}

.ventari-workwith-guide__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: rgba(255, 255, 255, 0.84);

  font-size: clamp(0.74rem, 0.8vw, 0.9rem);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.ventari-workwith-guide__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 2px;
  border: 1.5px solid rgba(216, 155, 43, 0.95);

  color: var(--ventari-amber);
  background: rgba(5, 16, 29, 0.62);

  font-size: 1.18rem;
  line-height: 1;
  font-weight: 300;

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.20),
    0 0 0 3px rgba(216, 155, 43, 0.06);

  cursor: default;

  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform-origin: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.ventari-workwith-guide__icon--minus {
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #E3AA42 0%,
      var(--ventari-amber) 54%,
      #B8791C 100%
    );

  border-color: rgba(255, 255, 255, 0.78);
}

/* Guide plus hover/active */
.ventari-workwith-guide__item:hover .ventari-workwith-guide__icon:not(.ventari-workwith-guide__icon--minus) {
  color: #F1C66A;
  border-color: rgba(241, 198, 106, 1);

  transform: translate3d(0, -3px, 0);
  -webkit-transform: translate3d(0, -3px, 0);

  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.24),
    0 0 0 3px rgba(241, 198, 106, 0.10);
}

.ventari-workwith-guide__item:active .ventari-workwith-guide__icon:not(.ventari-workwith-guide__icon--minus) {
  color: var(--ventari-amber);

  background:
    linear-gradient(
      180deg,
      #FFF8EA 0%,
      #ffffff 52%,
      #F6E4BE 100%
    );

  border-color: rgba(216, 155, 43, 0.94);

  transform: translate3d(0, 2px, 0);
  -webkit-transform: translate3d(0, 2px, 0);

  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 0 0 4px rgba(216, 155, 43, 0.16),
    0 0 20px rgba(216, 155, 43, 0.30);
}

/* Guide minus hover/active */
.ventari-workwith-guide__item:hover:not(:active):not(:has(.ventari-workwith-guide__icon--minus:active)) .ventari-workwith-guide__icon--minus {
  color: var(--ventari-amber);

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.96) 100%
    );

  border-color: rgba(255, 255, 255, 0.96);

  transform: translate3d(0, -3px, 0);
  -webkit-transform: translate3d(0, -3px, 0);

  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 0 0 4px rgba(255, 255, 255, 0.16);
}

.ventari-workwith-guide__item:active .ventari-workwith-guide__icon--minus,
.ventari-workwith-guide__icon--minus:active {
  color: var(--ventari-amber);

  background:
    linear-gradient(
      180deg,
      #FFF8EA 0%,
      #ffffff 52%,
      #F6E4BE 100%
    );

  border-color: rgba(216, 155, 43, 0.94);

  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 0 0 4px rgba(216, 155, 43, 0.18),
    0 0 24px rgba(216, 155, 43, 0.40);
}

/* =========================================
   Tablet
========================================= */

@media (max-width: 1024px) {
  .ventari-workwith-cards {
    width: min(calc(100% - 48px), 860px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 14px;
  }

  .ventari-workwith-card,
  .ventari-workwith-card:nth-child(n) {
    grid-column: auto;
  }

  .ventari-workwith-card {
    min-height: 188px;
  }

  .ventari-workwith-card:not([open]) {
    height: 188px;
    min-height: 188px;
  }

  .ventari-workwith-card:not([open]) .ventari-workwith-card__summary {
    height: 100%;
    min-height: 100%;
  }

  .ventari-workwith-card[open] {
    height: auto;
    min-height: 334px;
  }

  .ventari-workwith-card__summary {
    min-height: 188px;
    padding: 24px 14px 38px;
  }

  .ventari-workwith-card[open] .ventari-workwith-card__summary {
    height: auto;
    min-height: auto;
    padding-bottom: 40px;
  }

  .ventari-workwith-card i {
    font-size: 2.22rem;
  }

  .ventari-workwith-card__title {
    font-size: 0.98rem;
    font-weight: 600;
  }

  .ventari-workwith-card__teaser {
    max-width: 23ch;
    font-size: 0.76rem;
  }

  .ventari-workwith-card__expand {
    margin-top: 12px;
  }

  .ventari-workwith-guide {
    width: min(calc(100% - 48px), 860px);
  }
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 720px) {
  .ventari-workwith-cards {
    width: min(calc(100% - 28px), 560px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 10px;
    margin-top: 26px;
  }

  .ventari-workwith-card,
  .ventari-workwith-card:nth-child(n) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .ventari-workwith-card {
    min-height: 166px;
    border-radius: 2px;
  }

  .ventari-workwith-card:not([open]) {
    height: 166px;
    min-height: 166px;
  }

  .ventari-workwith-card:not([open]) .ventari-workwith-card__summary {
    height: 100%;
    min-height: 100%;
  }

  .ventari-workwith-card[open] {
    height: auto;
    min-height: 320px;
  }

  .ventari-workwith-card__summary {
    min-height: 166px;
    padding: 22px 11px 36px;
    gap: 8px;
  }

  .ventari-workwith-card[open] .ventari-workwith-card__summary {
    height: auto;
    min-height: auto;
    padding-bottom: 38px;
  }

  .ventari-workwith-card i {
    font-size: 1.78rem;
  }

  .ventari-workwith-card__title {
    font-size: 0.86rem;
    line-height: 1.18;
    font-weight: 600;
  }

  .ventari-workwith-card__teaser {
    max-width: 20ch;
    font-size: 0.69rem;
    line-height: 1.42;
  }

  .ventari-workwith-card__toggle {
    width: 32px;
    height: 32px;
    bottom: -16px;
  }

  .ventari-workwith-card[open] .ventari-workwith-card__toggle {
    bottom: -20px;
  }

  .ventari-workwith-card__toggle::before {
    font-size: 1.24rem;
  }

  .ventari-workwith-card__expand {
    margin: 12px 10px 28px;
    padding: 16px 10px 14px;
  }

  .ventari-workwith-card__expand .ventari-workwith-card__eyebrow {
    font-size: 0.58rem;
    font-weight: 650;
    letter-spacing: 0.065em;
  }

  .ventari-workwith-card__expand p:last-child {
    font-size: 0.66rem;
    line-height: 1.48;
  }

  .ventari-workwith-card:nth-child(9) {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }

  .ventari-workwith-guide {
    width: min(calc(100% - 28px), 560px);
    margin-top: 38px;

    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ventari-workwith-guide__item {
    font-size: 0.76rem;
    gap: 10px;
  }

  .ventari-workwith-guide__icon {
    width: 26px;
    height: 26px;
    min-width: 26px;

    font-size: 0.96rem;
    border-width: 1.25px;

    box-shadow:
      0 6px 14px rgba(0, 0, 0, 0.18),
      0 0 0 2px rgba(216, 155, 43, 0.06);
  }
}

/* =========================================
   Small Mobile
========================================= */

@media (max-width: 420px) {
  .ventari-workwith-cards {
    width: min(calc(100% - 24px), 390px);
    gap: 32px 8px;
  }

  .ventari-workwith-card {
    min-height: 156px;
  }

  .ventari-workwith-card:not([open]) {
    height: 156px;
    min-height: 156px;
  }

  .ventari-workwith-card:not([open]) .ventari-workwith-card__summary {
    height: 100%;
    min-height: 100%;
  }

  .ventari-workwith-card[open] {
    height: auto;
    min-height: 318px;
  }

  .ventari-workwith-card__summary {
    min-height: 156px;
    padding: 20px 9px 34px;
  }

  .ventari-workwith-card[open] .ventari-workwith-card__summary {
    height: auto;
    min-height: auto;
    padding-bottom: 36px;
  }

  .ventari-workwith-card i {
    font-size: 1.58rem;
  }

  .ventari-workwith-card__title {
    font-size: 0.78rem;
    font-weight: 600;
  }

  .ventari-workwith-card__teaser {
    font-size: 0.63rem;
    line-height: 1.4;
  }

  .ventari-workwith-card__expand {
    margin: 12px 8px 28px;
    padding: 15px 9px 14px;
  }

  .ventari-workwith-card__expand p:last-child {
    font-size: 0.62rem;
  }

  .ventari-workwith-guide {
    width: min(calc(100% - 24px), 390px);
  }

  .ventari-workwith-guide__icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 0.9rem;
  }
}

/* =========================================
   Homepage Who We Work With Intro Text
   Force override WordPress block colour classes
========================================= */

html body h6.wp-block-heading.homepage-whoweworkwith-eyebrow-h6.has-text-color,
html body .wp-block-heading.homepage-whoweworkwith-eyebrow-h6.has-accent-1-color,
html body .homepage-whoweworkwith-eyebrow-h6 {
  color: #D89B2B !important;
  -webkit-text-fill-color: #D89B2B !important;
}

html body h2.wp-block-heading.homepage-whoweworkwith-h2.has-text-color,
html body .wp-block-heading.homepage-whoweworkwith-h2.has-base-color,
html body .homepage-whoweworkwith-h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body p.homepage-whoweworkwith-p.has-text-color,
html body .homepage-whoweworkwith-p.has-base-color,
html body .homepage-whoweworkwith-p {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* If WordPress applies link-colour styling inside these blocks */
html body .homepage-whoweworkwith-eyebrow-h6 a {
  color: #D89B2B !important;
  -webkit-text-fill-color: #D89B2B !important;
}

html body .homepage-whoweworkwith-h2 a,
html body .homepage-whoweworkwith-p a {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}