/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 11 2026 | 21:37:51 */
/* =========================================================
   VENTARI GLOBAL — NEWS ARTICLE SYSTEM
   Reusable corporate news / announcement layout

   Wrapper:
   .ventari-news-article

   Separate from:
   .ventari-blog-*
   .ventari-insights-*
   ========================================================= */


/* =========================================================
   VARIABLES + RESET
   ========================================================= */

   .ventari-news-article {
    --ventari-news-navy: #243A5E;
    --ventari-news-navy-deep: #182A43;
    --ventari-news-navy-dark: #16263F;
  
    --ventari-news-amber: #D89B2B;
    --ventari-news-amber-light: #F3C76A;
  
    --ventari-news-platinum: #E5E4E2;
    --ventari-news-blue-light: #EEF4FA;
  
    --ventari-news-text: #334155;
    --ventari-news-muted: #667281;
    --ventari-news-white: #FFFFFF;
  
    position: relative;
  
    width: 100vw;
    max-width: none;
  
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  
    padding:
      clamp(42px, 5vw, 72px)
      20px
      clamp(64px, 7vw, 96px);
  
    overflow: hidden;
  
    background:
      linear-gradient(
        180deg,
        #ffffff 0%,
        #ffffff 68%,
        #f8fafc 100%
      );
  
    color: var(--ventari-news-text);
  
    font-family: "Montserrat", Arial, sans-serif;
  
    box-sizing: border-box;
  }
  
  
  .ventari-news-article,
  .ventari-news-article *,
  .ventari-news-article *::before,
  .ventari-news-article *::after {
    box-sizing: border-box;
  }
  
  
  /* =========================================================
     MAIN SHELL
     ========================================================= */
  
  .ventari-news-shell {
    position: relative;
  
    width: min(1120px, 100%);
    max-width: 1120px;
  
    margin: 0 auto;
  }
  
  
  /* =========================================================
     NEWS HEADER
     ========================================================= */
  
  .ventari-news-header {
    position: relative;
  
    width: 100%;
  
    margin: 0 0 clamp(34px, 4.5vw, 50px);
  
    padding:
      clamp(30px, 4vw, 46px)
      clamp(24px, 4vw, 48px)
      clamp(34px, 4.5vw, 52px);
  
    background: #ffffff;
  
    border-top: 3px solid var(--ventari-news-amber);
    border-bottom: 1px solid rgba(36, 58, 94, 0.14);
  
    box-shadow:
      0 18px 46px rgba(24, 42, 67, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }
  

.ventari-news-header::before {
  content: "";

  position: absolute;

  top: -3px;
  right: 0;

  width: clamp(140px, 22vw, 280px);
  height: 3px;

  background:
    linear-gradient(
      90deg,
      rgba(243, 199, 106, 0) 0%,
      rgba(243, 199, 106, 0.30) 38%,
      rgba(243, 199, 106, 0.88) 100%
    );

  pointer-events: none;
}
  
  
  /* =========================================================
     TOPLINE
     ========================================================= */
  
  .ventari-news-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  
    gap: 18px;
  
    width: 100%;
  
    margin: 0 0 clamp(24px, 3vw, 32px);
  }
  
  
  /* =========================================================
     NEWS CATEGORY
     ========================================================= */
  
  .ventari-news-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    gap: 7px;
  
    width: fit-content;
  
    padding: 7px 11px;
  
    color: var(--ventari-news-white) !important;
  
    background: var(--ventari-news-navy-deep);
  
    border: 1px solid var(--ventari-news-navy-deep);
    border-radius: 2px;
  
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.66rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  
    text-decoration: none !important;
  
    box-shadow:
      0 7px 16px rgba(24, 42, 67, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.13);
  
    transform: translateY(0);
  
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      background 0.24s ease,
      border-color 0.24s ease,
      color 0.24s ease,
      box-shadow 0.28s ease;
  }
  
  
  .ventari-news-category::before {
    content: "";
  
    display: block;
  
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
  
    border-radius: 50%;
  
    background: var(--ventari-news-amber);
  }
  
  
  .ventari-news-category:hover,
  .ventari-news-category:focus-visible {
    color: var(--ventari-news-white) !important;
  
    background: var(--ventari-news-amber);
  
    border-color: var(--ventari-news-amber);
  
    transform: translateY(-2px);
  
    box-shadow:
      0 10px 22px rgba(24, 42, 67, 0.11),
      0 5px 14px rgba(216, 155, 43, 0.14);
  }
  
  
  .ventari-news-category:hover::before,
  .ventari-news-category:focus-visible::before {
    background: var(--ventari-news-white);
  }
  
  
  .ventari-news-category:active {
    color: var(--ventari-news-navy-deep) !important;
  
    background: var(--ventari-news-white);
  
    border-color: rgba(36, 58, 94, 0.18);
  
    transform: translateY(0);
  
    box-shadow:
      0 8px 18px rgba(24, 42, 67, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }
  
  
  .ventari-news-category:active::before {
    background: var(--ventari-news-amber);
  }
  
  
  /* =========================================================
     DATE
     ========================================================= */
  
  .ventari-news-date {
    color: var(--ventari-news-muted);
  
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.72rem;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.045em;
    text-transform: uppercase;
  }
  
  
  /* =========================================================
     TITLE
     Reduced on all viewports
     ========================================================= */
  
  .ventari-news-title,
  .ventari-news-article h1.ventari-news-title {
    width: min(940px, 100%);
  
    margin: 0 0 clamp(20px, 2.4vw, 26px) !important;
  
    color: var(--ventari-news-navy-deep) !important;
  
    font-family: "Playfair Display", Georgia, serif !important;
  
    font-size:
      clamp(
        1.95rem,
        3.15vw,
        2.95rem
      ) !important;
  
    line-height: 1.1 !important;
  
    font-weight: 600 !important;
  
    letter-spacing: -0.035em !important;
  
    text-wrap: balance;
  }
  
  
  /* =========================================================
     STANDFIRST
     ========================================================= */
  
  .ventari-news-standfirst {
    width: min(850px, 100%);
  
    margin: 0 !important;
  
    color: rgba(36, 58, 94, 0.76) !important;
  
    font-family: "Montserrat", Arial, sans-serif !important;
  
    font-size:
      clamp(
        0.98rem,
        1.35vw,
        1.12rem
      ) !important;
  
    line-height: 1.68 !important;
  
    font-weight: 430 !important;
  }
  
  
  /* =========================================================
     FEATURE IMAGE
     Soft lift + frosted blue hover border + frosted amber active border
     ========================================================= */
  
  .ventari-news-feature {
    position: relative;
    isolation: isolate;
  
    width: 100%;
  
    margin: 0 0 clamp(44px, 5.5vw, 66px) !important;
  
    padding: 7px;
  
    overflow: hidden;
  
    background:
      linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.96),
        rgba(238, 244, 250, 0.76)
      );
  
    border: 1px solid rgba(177, 207, 232, 0.82);
    border-radius: 0;
  
    box-shadow:
      0 20px 48px rgba(24, 42, 67, 0.09),
      0 6px 18px rgba(24, 42, 67, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  
    cursor: default;
  
    transform: translateY(0) scale(1);
  
    transition:
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.28s ease,
      box-shadow 0.34s ease,
      background 0.28s ease;
  }
  
  
  .ventari-news-feature:hover {
    transform: translateY(-5px) scale(1.001);
  
    border-color: rgba(177, 207, 232, 0.96);
  
    box-shadow:
      0 26px 58px rgba(24, 42, 67, 0.13),
      0 10px 22px rgba(24, 42, 67, 0.07),
      0 0 0 1px rgba(177, 207, 232, 0.34),
      0 0 24px rgba(177, 207, 232, 0.20),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }
  
  
  .ventari-news-feature:active {
    transform: translateY(0) scale(1);
  
    border-color: rgba(216, 155, 43, 0.88);
  
    box-shadow:
      0 18px 42px rgba(24, 42, 67, 0.10),
      0 7px 18px rgba(24, 42, 67, 0.05),
      0 0 0 1px rgba(216, 155, 43, 0.30),
      0 0 24px rgba(216, 155, 43, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }
  
  
  .ventari-news-feature-image {
    position: relative;
    z-index: 1;
  
    display: block;
  
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  
    margin: 0 !important;
  
    aspect-ratio: 16 / 9;
  
    object-fit: cover;
    object-position: center center;
  
    border: 0;
    border-radius: 0;
  
    filter:
      saturate(0.96)
      contrast(1.015);
  
    transform: scale(1);
  
    transition:
      filter 0.34s ease,
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  
  .ventari-news-feature:hover .ventari-news-feature-image {
    filter:
      saturate(1)
      contrast(1.025);
  }
  
  
  /* =========================================================
     ARTICLE BODY
     ========================================================= */
  
  .ventari-news-body {
    width: min(850px, 100%);
    max-width: 850px;
  
    margin: 0 auto;
  }
  
  
  /* General paragraphs */
  
  .ventari-news-body p {
    margin: 0 0 22px !important;
  
    color: var(--ventari-news-text) !important;
  
    font-family: "Montserrat", Arial, sans-serif !important;
  
    font-size:
      clamp(
        0.95rem,
        1vw,
        1rem
      ) !important;
  
    line-height: 1.8 !important;
  
    font-weight: 430 !important;
  }
  
  
  .ventari-news-body p:last-child {
    margin-bottom: 0 !important;
  }
  
  
  /* =========================================================
     LEAD PARAGRAPH
     ========================================================= */
  
  .ventari-news-lead {
    position: relative;
  
    margin-bottom:
      clamp(
        32px,
        4vw,
        42px
      ) !important;
  
    padding:
      4px
      0
      4px
      clamp(20px, 2.5vw, 28px);
  
    color: var(--ventari-news-navy-deep) !important;
  
    font-size:
      clamp(
        1.02rem,
        1.24vw,
        1.12rem
      ) !important;
  
    line-height: 1.76 !important;
  
    font-weight: 480 !important;
  
    border-left: 3px solid var(--ventari-news-amber);
  }
  
  
  .ventari-news-lead::before {
    content: "";
  
    position: absolute;
  
    top: 0;
    bottom: 0;
    left: -3px;
  
    width: 3px;
  
    background:
      linear-gradient(
        180deg,
        var(--ventari-news-amber-light),
        var(--ventari-news-amber)
      );
  }
  
  
  /* Press-release dateline */
  
  .ventari-news-dateline {
    color: var(--ventari-news-navy-deep);
  
    font-weight: 700;
  
    letter-spacing: 0.025em;
  }
  
  
  /* =========================================================
     BODY LINKS
     Soft lift / unlift
     ========================================================= */
  
  .ventari-news-body a:not(.ventari-news-button) {
    position: relative;
  
    display: inline-block;
  
    color: var(--ventari-news-navy) !important;
  
    font-weight: 650 !important;
  
    text-decoration-line: underline !important;
    text-decoration-color: rgba(216, 155, 43, 0.58) !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 4px !important;
  
    transform: translateY(0);
  
    transition:
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      color 0.22s ease,
      text-decoration-color 0.22s ease,
      text-shadow 0.24s ease;
  }
  
  
  .ventari-news-body a:not(.ventari-news-button):hover,
  .ventari-news-body a:not(.ventari-news-button):focus-visible {
    color: var(--ventari-news-amber) !important;
  
    text-decoration-color: var(--ventari-news-amber) !important;
  
    transform: translateY(-2px);
  
    text-shadow:
      0 5px 14px rgba(216, 155, 43, 0.10);
  }
  
  
  .ventari-news-body a:not(.ventari-news-button):active {
    color: var(--ventari-news-navy-dark) !important;
  
    transform: translateY(0);
  
    text-shadow: none;
  }
  
  
  /* =========================================================
     STANDARD ARTICLE SECTIONS
     More breathing room
     ========================================================= */
  
  .ventari-news-section {
    margin: 0;
  
    padding:
      clamp(
        40px,
        5vw,
        58px
      )
      0;
  
    border-top:
      1px solid
      rgba(36, 58, 94, 0.12);
  }
  
  
  .ventari-news-section:last-of-type {
    border-bottom: 0;
  }
  
  
  /* =========================================================
     H2 HEADINGS
     Lighter weight
     ========================================================= */
  
  .ventari-news-section h2,
  .ventari-news-capabilities h2,
  .ventari-news-cta h2 {
    margin: 0 0 18px !important;
  
    color: var(--ventari-news-navy-deep) !important;
  
    font-family: "Montserrat", Arial, sans-serif !important;
  
    font-size:
      clamp(
        1.28rem,
        1.8vw,
        1.58rem
      ) !important;
  
    line-height: 1.24 !important;
  
    font-weight: 600 !important;
  
    letter-spacing: -0.025em !important;
  }
  
  
  /* =========================================================
     CAPABILITY SECTION
     ========================================================= */
  
  .ventari-news-capabilities {
    position: relative;
  
    width:
      calc(
        100% + clamp(0px, 8vw, 120px)
      );
  
    margin:
      clamp(24px, 3vw, 34px)
      calc(clamp(0px, 8vw, 120px) / -2)
      clamp(28px, 4vw, 40px);
  
    padding:
      clamp(
        30px,
        4vw,
        44px
      );
  
    background:
      linear-gradient(
        135deg,
        rgba(238, 244, 250, 0.72),
        rgba(255, 255, 255, 0.96)
      );
  
    border-top:
      1px solid
      rgba(177, 207, 232, 0.72);
  
    border-bottom:
      1px solid
      rgba(177, 207, 232, 0.72);
  }
  
  
  .ventari-news-capabilities-heading {
    width: min(720px, 100%);
  
    margin:
      0
      0
      clamp(28px, 3.5vw, 40px);
  }
  
  
  /* =========================================================
     CAPABILITY LABEL
     ========================================================= */
  
  .ventari-news-section-label,
  .ventari-news-capabilities .ventari-news-section-label {
    margin: 0 0 11px !important;
  
    color: var(--ventari-news-amber) !important;
  
    font-size: 0.67rem !important;
    line-height: 1 !important;
  
    font-weight: 750 !important;
  
    letter-spacing: 0.16em !important;
  
    text-transform: uppercase;
  }
  
  
  /* =========================================================
     CAPABILITY GRID
     ========================================================= */
  
  .ventari-news-capability-grid {
    display: grid;
  
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  
    column-gap:
      clamp(
        30px,
        4.5vw,
        52px
      );
  
    row-gap:
      clamp(
        12px,
        2vw,
        20px
      );
  }
  
  
  /* Individual capability */
  
  .ventari-news-capability {
    display: grid;
  
    grid-template-columns:
      auto
      minmax(0, 1fr);
  
    gap: 16px;
  
    align-items: start;
  
    padding:
      clamp(
        26px,
        3vw,
        34px
      )
      0;
  
    border-top:
      1px solid
      rgba(36, 58, 94, 0.12);
  }
  
  
  /* =========================================================
     CAPABILITY NUMBER
     ========================================================= */
  
  .ventari-news-capability-number {
    display: block;
  
    min-width: 28px;
  
    padding-top: 3px;
  
    color: var(--ventari-news-amber);
  
    font-family: "Montserrat", Arial, sans-serif;
  
    font-size: 0.68rem;
    line-height: 1.2;
  
    font-weight: 700;
  
    letter-spacing: 0.08em;
  }
  
  
  /* =========================================================
     CAPABILITY SUBHEADINGS
     Thinner than previous version
     ========================================================= */
  
  .ventari-news-capability h3 {
    margin: 0 0 10px !important;
  
    color: var(--ventari-news-navy-deep) !important;
  
    font-family: "Montserrat", Arial, sans-serif !important;
  
    font-size:
      clamp(
        0.94rem,
        1.06vw,
        1.03rem
      ) !important;
  
    line-height: 1.38 !important;
  
    font-weight: 600 !important;
  
    letter-spacing: -0.012em !important;
  }
  
  
  .ventari-news-capability p {
    margin: 0 !important;
  
    color:
      rgba(
        51,
        65,
        85,
        0.82
      ) !important;
  
    font-size:
      clamp(
        0.86rem,
        0.93vw,
        0.93rem
      ) !important;
  
    line-height: 1.7 !important;
  
    font-weight: 420 !important;
  }
  
  
  /* =========================================================
     CTA
     ========================================================= */
  
  .ventari-news-cta {
    position: relative;
  
    display: grid;
  
    grid-template-columns:
      minmax(0, 1fr)
      auto;
  
    gap:
      clamp(
        28px,
        4vw,
        48px
      );
  
    align-items: center;
  
    width:
      calc(
        100% + clamp(0px, 8vw, 120px)
      );
  
    margin:
      clamp(38px, 5vw, 56px)
      calc(clamp(0px, 8vw, 120px) / -2)
      0;
  
    padding:
      clamp(
        30px,
        4vw,
        44px
      );
  
    overflow: hidden;
  
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(216, 155, 43, 0.16),
        transparent 38%
      ),
      linear-gradient(
        135deg,
        var(--ventari-news-navy-deep),
        var(--ventari-news-navy)
      );
  
    border:
      1px solid
      rgba(216, 155, 43, 0.46);
  
    box-shadow:
      0 20px 44px rgba(24, 42, 67, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.13);
  }
  
  
  /* Remove old amber line */
  
  .ventari-news-cta::before,
  .ventari-news-cta::after {
    content: none !important;
  
    display: none !important;
  }
  
  
  /* =========================================================
     CTA COPY
     ========================================================= */
  
  .ventari-news-cta-copy {
    min-width: 0;
  }
  
  
  .ventari-news-cta-label,
  .ventari-news-cta .ventari-news-cta-label {
    margin: 0 0 11px !important;
  
    color: var(--ventari-news-amber-light) !important;
  
    font-size: 0.66rem !important;
    line-height: 1 !important;
  
    font-weight: 700 !important;
  
    letter-spacing: 0.15em !important;
  
    text-transform: uppercase;
  }
  
  
  .ventari-news-cta h2 {
    margin-bottom: 12px !important;
  
    color: var(--ventari-news-white) !important;
  
    font-weight: 600 !important;
  }
  
  
  .ventari-news-cta p {
    width: min(620px, 100%);
  
    margin: 0 !important;
  
    color:
      rgba(
        255,
        255,
        255,
        0.78
      ) !important;
  
    font-size:
      clamp(
        0.88rem,
        0.98vw,
        0.96rem
      ) !important;
  
    line-height: 1.7 !important;
  
    font-weight: 420 !important;
  }
  
  
  /* =========================================================
     CTA BUTTON
     Font Awesome Lightbulb
     ========================================================= */
  
  .ventari-news-button,
  .ventari-news-body .ventari-news-button {
    display: inline-flex;
  
    align-items: center;
    justify-content: center;
  
    gap: 9px;
  
    min-width: max-content;
  
    padding: 13px 17px;
  
    color: var(--ventari-news-navy-deep) !important;
  
    background: var(--ventari-news-white);
  
    border:
      1px solid
      rgba(255, 255, 255, 0.88);
  
    border-radius: 2px;
  
    font-family: "Montserrat", Arial, sans-serif !important;
  
    font-size: 0.66rem !important;
    line-height: 1 !important;
  
    font-weight: 700 !important;
  
    letter-spacing: 0.11em !important;
  
    text-transform: uppercase;
  
    text-decoration: none !important;
  
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  
    transform: translateY(0) scale(1);
  
    transition:
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      background 0.24s ease,
      color 0.24s ease,
      border-color 0.24s ease,
      box-shadow 0.3s ease,
      text-shadow 0.24s ease;
  }
  
  
  /* Lightbulb — initial */
  
  .ventari-news-button i {
    display: inline-flex;
  
    align-items: center;
    justify-content: center;
  
    color: var(--ventari-news-amber);
  
    font-size: 0.82rem;
    line-height: 1;
  
    transform: translateY(0);
  
    transition:
      color 0.24s ease,
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.28s ease;
  }
  
  
  /* Hover remains amber background / white copy */
  
  .ventari-news-button:hover,
  .ventari-news-button:focus-visible {
    color: var(--ventari-news-white) !important;
  
    background: var(--ventari-news-amber);
  
    border-color: var(--ventari-news-amber);
  
    transform: translateY(-3px);
  
    box-shadow:
      0 14px 28px rgba(0, 0, 0, 0.12),
      0 6px 16px rgba(216, 155, 43, 0.18);
  }
  
  
  .ventari-news-button:hover i,
  .ventari-news-button:focus-visible i {
    color: var(--ventari-news-white);
  
    transform: translateY(-1px);
  
    filter:
      drop-shadow(
        0 0 5px
        rgba(255, 255, 255, 0.26)
      );
  }
  
  
  /* Active:
     white button
     amber text
     amber icon
     soft amber glow
  */
  
  .ventari-news-button:active {
    color: var(--ventari-news-amber) !important;
  
    background: var(--ventari-news-white);
  
    border-color:
      rgba(
        216,
        155,
        43,
        0.88
      );
  
    transform:
      translateY(0)
      scale(0.99);
  
    text-shadow:
      0 0 8px
      rgba(216, 155, 43, 0.14);
  
    box-shadow:
      0 0 0 1px rgba(216, 155, 43, 0.16),
      0 0 12px rgba(216, 155, 43, 0.24),
      0 0 24px rgba(216, 155, 43, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }
  
  
  .ventari-news-button:active i {
    color: var(--ventari-news-amber);
  
    transform: translateY(0);
  
    filter:
      drop-shadow(
        0 0 4px
        rgba(216, 155, 43, 0.5)
      )
      drop-shadow(
        0 0 9px
        rgba(216, 155, 43, 0.2)
      );
  }
  
  
  /* =========================================================
     ABOUT VENTARI GLOBAL
     Premium white glass boilerplate card
     ========================================================= */
  
  .ventari-news-about {
  position: relative;
  isolation: isolate;

  width:
    calc(
      100% + clamp(0px, 8vw, 120px)
    );

  margin-top:
    calc(
      clamp(40px, 5vw, 58px) +
      clamp(38px, 5vw, 56px)
    ) !important;

  margin-right:
    calc(clamp(0px, 8vw, 120px) / -2) !important;

  margin-bottom: 0 !important;

  margin-left:
    calc(clamp(0px, 8vw, 120px) / -2) !important;

  margin-block-start:
    calc(
      clamp(40px, 5vw, 58px) +
      clamp(38px, 5vw, 56px)
    ) !important;
  
    padding:
      clamp(
        28px,
        4vw,
        40px
      );
  
    overflow: hidden;
  
    background: var(--ventari-news-white);
    
    border:
      1px solid
      rgba(255, 255, 255, 0.96);
  
    outline:
      1px solid
      rgba(177, 207, 232, 0.42);
  
    outline-offset: -2px;
  
    border-radius: 0;
  
    box-shadow:
      0 22px 54px rgba(24, 42, 67, 0.09),
      0 8px 20px rgba(24, 42, 67, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  
    -webkit-backdrop-filter:
      blur(20px)
      saturate(115%);
  
    backdrop-filter:
      blur(20px)
      saturate(115%);
  }
  
  
  /* Soft premium glass light */
  
  .ventari-news-about::before {
    content: "";
  
    position: absolute;
  
    top: -35%;
    right: -12%;
  
    width: 48%;
    height: 100%;
  
    z-index: 0;
  
    pointer-events: none;
  
    background:
      radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.82),
        rgba(255, 255, 255, 0)
        68%
      );
  
    opacity: 0.72;
  }
  
  
  .ventari-news-about > * {
    position: relative;
  
    z-index: 1;
  }
  
  
  /* =========================================================
     ABOUT LABEL
     ========================================================= */
  
  .ventari-news-about-label,
  .ventari-news-about .ventari-news-about-label {
    margin: 0 0 18px !important;
  
    color: var(--ventari-news-navy-deep) !important;
  
    font-family: "Montserrat", Arial, sans-serif !important;
  
    font-size: 0.7rem !important;
    line-height: 1 !important;
  
    font-weight: 700 !important;
  
    letter-spacing: 0.12em !important;
  
    text-transform: uppercase;
  }
  
  
  /* Boilerplate paragraphs */
  
  .ventari-news-about p:not(.ventari-news-about-label) {
    margin: 0 0 18px !important;
  
    color:
      rgba(
        51,
        65,
        85,
        0.82
      ) !important;
  
    font-size:
      clamp(
        0.84rem,
        0.92vw,
        0.92rem
      ) !important;
  
    line-height: 1.74 !important;
  
    font-weight: 420 !important;
  }
  
  
  .ventari-news-about p:last-child {
    margin-bottom: 0 !important;
  }
  
  
  /* =========================================================
     WORDPRESS SAFETY
     ========================================================= */
  
  .ventari-news-article figure,
  .ventari-news-article header,
  .ventari-news-article section,
  .ventari-news-article aside,
  .ventari-news-article footer,
  .ventari-news-article div {
    box-sizing: border-box;
  }
  
  
  .ventari-news-article figure {
    float: none !important;
  }
  
  
  .ventari-news-article img {
    max-width: 100%;
  }
  
  
  /* =========================================================
     TABLET
     ========================================================= */
  
  @media screen and (max-width: 1024px) {
  
    .ventari-news-article {
      padding:
        clamp(34px, 5vw, 52px)
        18px
        clamp(54px, 7vw, 76px);
    }
  
  
    .ventari-news-shell {
      width: min(940px, 100%);
    }
  
  
    .ventari-news-header {
      padding:
        clamp(27px, 4vw, 38px)
        clamp(22px, 4vw, 34px)
        clamp(30px, 4vw, 42px);
    }
  
  
    .ventari-news-title,
    .ventari-news-article h1.ventari-news-title {
      width: min(830px, 100%);
  
      font-size:
        clamp(
          1.8rem,
          4vw,
          2.45rem
        ) !important;
  
      line-height: 1.11 !important;
    }
  
  
    .ventari-news-body {
      width: min(790px, 100%);
    }
  
  
    .ventari-news-capabilities,
    .ventari-news-cta,
    .ventari-news-about {
      width: 100%;

      margin-left: 0 !important;
      margin-right: 0 !important;
    }
  
  
    .ventari-news-section {
      padding:
        clamp(
          38px,
          5vw,
          52px
        )
        0;
    }
  
  
    .ventari-news-capability-grid {
      column-gap: 32px;
  
      row-gap: 16px;
    }
  
  
    .ventari-news-about {
      margin-top:
        calc(
          clamp(38px, 5vw, 52px) +
          clamp(38px, 5vw, 56px)
        );
    }
  
  }
  
  
  /* =========================================================
     MOBILE / SMALL TABLET
     ========================================================= */
  
  @media screen and (max-width: 760px) {
  
    .ventari-news-article {
      width: 100vw;
  
      padding:
        30px
        14px
        58px;
    }
  
  
    .ventari-news-header {
      margin-bottom: 30px;
  
      padding:
        25px
        18px
        30px;
  
      border-top-width: 2px;
    }
  
  
    .ventari-news-header::before {
      top: -2px;
      height: 2px;
    }
  
  
    .ventari-news-topline {
      margin-bottom: 22px;
  
      gap: 12px;
    }
  
  
    .ventari-news-category {
      padding: 6px 9px;
  
      font-size: 0.59rem;
  
      letter-spacing: 0.1em;
    }
  
  
    .ventari-news-date {
      font-size: 0.64rem;
    }
  
  
    .ventari-news-title,
    .ventari-news-article h1.ventari-news-title {
      margin-bottom: 18px !important;
  
      font-size:
        clamp(
          1.5rem,
          6.2vw,
          1.95rem
        ) !important;
  
      line-height: 1.12 !important;
  
      letter-spacing: -0.03em !important;
    }
  
  
    .ventari-news-standfirst {
      font-size: 0.93rem !important;
  
      line-height: 1.62 !important;
    }
  
  
    .ventari-news-feature {
      margin-bottom: 40px !important;
  
      padding: 5px;
    }
  
  
    .ventari-news-feature:hover {
      transform:
        translateY(-3px)
        scale(1);
    }
  
  
    .ventari-news-feature-image {
      aspect-ratio: 16 / 9;
    }
  
  
    .ventari-news-body {
      width: 100%;
    }
  
  
    .ventari-news-body p {
      margin-bottom: 20px !important;
  
      font-size: 0.92rem !important;
  
      line-height: 1.74 !important;
    }
  
  
    .ventari-news-lead {
      margin-bottom: 34px !important;
  
      padding-left: 17px;
  
      font-size: 0.97rem !important;
  
      line-height: 1.72 !important;
    }
  
  
    .ventari-news-section {
      padding:
        36px
        0;
    }
  
  
    .ventari-news-section h2,
    .ventari-news-capabilities h2,
    .ventari-news-cta h2 {
      margin-bottom: 16px !important;
  
      font-size:
        clamp(
          1.14rem,
          5vw,
          1.34rem
        ) !important;
  
      line-height: 1.24 !important;
  
      font-weight: 600 !important;
    }
  
  
    .ventari-news-capabilities {
      margin-top: 24px;
  
      margin-bottom: 32px;
  
      padding:
        28px
        18px;
    }
  
  
    .ventari-news-capabilities-heading {
      margin-bottom: 26px;
    }
  
  
    .ventari-news-capability-grid {
      grid-template-columns: 1fr;
  
      gap: 10px;
    }
  
  
    .ventari-news-capability {
      padding:
        24px
        0;
  
      gap: 14px;
    }
  
  
    .ventari-news-capability h3 {
      margin-bottom: 9px !important;
  
      font-size: 0.94rem !important;
  
      line-height: 1.36 !important;
  
      font-weight: 600 !important;
    }
  
  
    .ventari-news-capability p {
      font-size: 0.86rem !important;
  
      line-height: 1.66 !important;
    }
  
  
    .ventari-news-cta {
      grid-template-columns: 1fr;
  
      gap: 26px;
  
      margin-top: 42px;
  
      padding:
        28px
        20px;
    }
  
  
    .ventari-news-cta p {
      line-height: 1.66 !important;
    }
  
  
    .ventari-news-button,
    .ventari-news-body .ventari-news-button {
      width: fit-content;
  
      padding:
        12px
        15px;
  
      font-size: 0.62rem !important;
    }
  
  
    .ventari-news-about {
      margin-top: 78px;
  
      padding:
        28px
        22px;
    }
  
  
    .ventari-news-about-label,
    .ventari-news-about .ventari-news-about-label {
      margin-bottom: 16px !important;
    }
  
  
    .ventari-news-about p:not(.ventari-news-about-label) {
      margin-bottom: 17px !important;
  
      font-size: 0.84rem !important;
  
      line-height: 1.7 !important;
    }
  
  }
  
  
  /* =========================================================
     SMALL MOBILE
     ========================================================= */
  
  @media screen and (max-width: 480px) {
  
    .ventari-news-article {
      padding:
        24px
        12px
        50px;
    }
  
  
    .ventari-news-header {
      padding:
        22px
        16px
        26px;
    }
  
  
    .ventari-news-topline {
      align-items: flex-start;
  
      margin-bottom: 20px;
    }
  
  
    .ventari-news-title,
    .ventari-news-article h1.ventari-news-title {
      font-size:
        clamp(
          1.4rem,
          7vw,
          1.72rem
        ) !important;
  
      line-height: 1.13 !important;
  
      letter-spacing: -0.026em !important;
    }
  
  
    .ventari-news-standfirst {
      font-size: 0.88rem !important;
  
      line-height: 1.6 !important;
    }
  
  
    .ventari-news-feature {
      margin-bottom: 36px !important;
    }
  
  
    .ventari-news-body p {
      margin-bottom: 19px !important;
  
      font-size: 0.89rem !important;
  
      line-height: 1.7 !important;
    }
  
  
    .ventari-news-lead {
      margin-bottom: 32px !important;
  
      font-size: 0.93rem !important;
  
      line-height: 1.7 !important;
    }
  
  
    .ventari-news-section {
      padding:
        33px
        0;
    }
  
  
    .ventari-news-section h2,
    .ventari-news-capabilities h2,
    .ventari-news-cta h2 {
      font-size:
        clamp(
          1.08rem,
          5.8vw,
          1.26rem
        ) !important;
  
      line-height: 1.25 !important;
    }
  
  
    .ventari-news-capabilities {
      padding:
        25px
        16px;
    }
  
  
    .ventari-news-section-label,
    .ventari-news-capabilities .ventari-news-section-label {
      font-size: 0.62rem !important;
    }
  
  
    .ventari-news-capability {
      grid-template-columns:
        25px
        minmax(0, 1fr);
  
      gap: 11px;
  
      padding:
        22px
        0;
    }
  
  
    .ventari-news-capability-number {
      font-size: 0.62rem;
    }
  
  
    .ventari-news-capability h3 {
      font-size: 0.9rem !important;
  
      line-height: 1.38 !important;
    }
  
  
    .ventari-news-capability p {
      font-size: 0.82rem !important;
  
      line-height: 1.64 !important;
    }
  
  
    .ventari-news-cta {
      margin-top: 38px;
  
      padding:
        25px
        18px;
    }
  
  
    .ventari-news-cta-label,
    .ventari-news-cta .ventari-news-cta-label {
      font-size: 0.61rem !important;
    }
  
  
    .ventari-news-button,
    .ventari-news-body .ventari-news-button {
      width: 100%;
    }
  
  
    .ventari-news-about {
      margin-top: 71px;
  
      padding:
        25px
        18px;
    }
  
  
    .ventari-news-about-label,
    .ventari-news-about .ventari-news-about-label {
      font-size: 0.65rem !important;
    }
  
  
    .ventari-news-about p:not(.ventari-news-about-label) {
      font-size: 0.81rem !important;
  
      line-height: 1.68 !important;
    }
  
  }
  
  
  /* =========================================================
     REDUCED MOTION
     ========================================================= */
  
  @media (prefers-reduced-motion: reduce) {
  
    .ventari-news-category,
    .ventari-news-feature,
    .ventari-news-feature-image,
    .ventari-news-body a:not(.ventari-news-button),
    .ventari-news-button,
    .ventari-news-button i {
      transition: none !important;
    }
  
  
    .ventari-news-category:hover,
    .ventari-news-feature:hover,
    .ventari-news-body a:not(.ventari-news-button):hover,
    .ventari-news-button:hover {
      transform: none !important;
    }
  
  }