:root{
  --gw-blue:#153a69;
  --gw-blue-deep:#102f56;
  --gw-green-deep:#00263f;
  --gw-orange:#3d5afe;
  --gw-text:#333333;
  --gw-muted:#6a6a6a;
  --gw-light:#f7f7f5;
  --gw-white:#ffffff;
  --gw-border:#dddddd;
  --gw-max:1280px;
  --gw-content:1350px;
  --gw-reading:760px;
  --space:28px;
  --gw-serif:Georgia, 'Times New Roman', serif;
  --gw-sans:'Inter', Arial, Helvetica, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:var(--gw-sans);
  font-size:18px;
  line-height:1.78;
  color:var(--gw-text);
  background:var(--gw-white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

a{
  font-weight:300;
  color:#333333;
  text-decoration:underline;
  text-decoration-color:#2f5bea;
  text-underline-offset:5px;
  text-decoration-thickness:3px;
  transition:color .2s ease, opacity .2s ease;
}

a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-thickness:1px;
}

h1,h2,h3,h4{
  margin-top:0;
  text-rendering:optimizeLegibility;
  color:#111111;
}

h1{
  font-family:var(--gw-serif);
  margin:0 0 24px;
  font-size:clamp(38px, 4.6vw, 58px);
  line-height:1.05;
  letter-spacing:-0.04em;
  font-weight:700;
}

h2{
  font-family:var(--gw-serif);
  margin:0 0 22px;
  font-size:clamp(32px, 3.6vw, 50px);
  line-height:1.08;
  letter-spacing:-0.03em;
  font-weight:700;
}

h3{
  font-family:var(--gw-sans);
  margin:32px 0 12px;
  font-size:24px;
  line-height:1.3;
  letter-spacing:-0.02em;
  font-weight:650;
  color:#222222;
}

p,
li{
  font-size:22px;
  line-height:1.78;
  color:#707070;
  font-weight:300;
}

p{ margin:0 0 20px; }

ul{
  margin:0 0 24px;
  padding-left:24px;
  max-width:100%;
}

li{ margin:0 0 10px; }


.gw-wrap{
  width:min(var(--gw-max), calc(100% - 72px));
  margin-left:auto;
  margin-right:auto;
}

.gw-content{
  max-width:var(--gw-content);
  margin-left:auto;
  margin-right:auto;
}

.gw-reading{ max-width:var(--gw-reading); }

.gw-section{ padding:80px 0; }
.gw-section--light{ background:var(--gw-white); }

.gw-section--blue{
  background:var(--gw-blue);
  color:#fff;
}

.gw-section--blue h1,
.gw-section--blue h2,
.gw-section--blue h3{ color:#ffffff; }

.gw-section--blue p,
.gw-section--blue a,
.gw-section--blue li{ color:#f3f6fa; }

.gw-rule{
  width:160px;
  max-width:160px;
  height:2px;
  background:#3d5afe;
  margin:0 0 34px;
}

.gw-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px 42px;
  margin-top:12px;
  max-width:980px;
}

.gw-list a{
  display:block;
  font-size:18px;
  line-height:1.5;
  font-weight:600;
}

.gw-trust{
  background:var(--gw-light);
  border-top:1px solid var(--gw-border);
  border-bottom:1px solid var(--gw-border);
}

.gw-trust .gw-wrap{
  padding:24px 0;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px 30px;
}

.gw-proof{
  font-size:16px;
  color:var(--gw-text);
  line-height:1.65;
}

.gw-proof strong{
  display:block;
  color:var(--gw-blue);
  font-size:18px;
  margin-bottom:6px;
  letter-spacing:-0.01em;
}

.gw-approach h3{ max-width:24ch; }

.gw-cta{
  background:var(--gw-orange);
  color:var(--gw-blue-deep);
}

.gw-cta .gw-wrap{
  padding:34px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

.gw-cta h3{
  margin:0;
  font-family:var(--gw-serif);
  font-size:clamp(26px, 2.4vw, 38px);
  line-height:1.15;
  letter-spacing:-0.025em;
  color:var(--gw-blue-deep);
  max-width:900px;
}


.gw-topbar{
  background:var(--gw-green-deep);
  color:#fff;
  font-size:14px;
}

.gw-topbar .gw-wrap{
  display:flex;
  justify-content:flex-end;
  gap:28px;
  padding:14px 0;
}

.gw-topbar a{ color:#fff; }

.gw-header{
  position:relative !important;
  top:0;
  z-index:1000;
  overflow:visible !important;
  border-bottom:1px solid var(--gw-border);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  box-shadow:0 1px 0 rgba(0,0,0,.03);
  transition:padding .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.gw-header.scrolled{
  box-shadow:0 10px 30px rgba(9,32,63,.08);
}

.gw-header .gw-wrap{
  width:100%;
  max-width:none;
  margin:0;
  padding:0 36px 0 18px;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:34px;
  overflow:visible !important;
}

.gw-logo{
  flex:0 0 auto;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  color:var(--gw-blue);
  font-family:var(--gw-serif);
  font-size:34px;
  font-weight:700;
  letter-spacing:-0.03em;
  line-height:1;
  white-space:nowrap;
}

.gw-logo a,
.gw-logo img{ display:block; }

.gw-logo img{
  max-height:62px;
  width:auto;
}

.gw-nav{
  position:static !important;
  flex:0 0 auto;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:24px;
  overflow:visible !important;
}

.gw-menu{
  position:static !important;
  display:flex;
  align-items:center;
  gap:42px;
  list-style:none;
  margin:0;
  padding:0;
  overflow:visible !important;
}

.gw-menu > li,
.gw-has-mega{
  position:static !important;
  margin:0;
  padding:0;
  overflow:visible !important;
}

.gw-menu > li > a,
.gw-mega-link,
.gw-nav a{
  display:inline-block;
  padding:0;
  color:#171717;
  font-family:var(--gw-sans);
  font-size:17px;
  line-height:1;
  font-weight:600;
  letter-spacing:.015em;
  text-decoration:none;
  position:relative;
  top:1px;
}

.gw-menu > li > a:hover,
.gw-mega-link:hover,
.gw-nav a:hover{
  color:#111;
  text-decoration:none;
}

.gw-menu > li > a::after,
.gw-mega-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:2px;
  background:#3254ff;
  transition:width .2s ease;
}

.gw-menu > li:hover > a::after,
.gw-has-mega:hover > .gw-mega-link::after,
.gw-has-mega.gw-open > .gw-mega-link::after{
  width:100%;
}

.dropdown-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  z-index:999;
  background:#ffffff;
  border:1px solid #e5e7eb;
  list-style:none;
  padding:10px 0;
  min-width:260px;
  border-radius:14px;
  box-shadow:0 18px 36px rgba(0,0,0,0.08);
}

.dropdown-menu li a{
  display:block;
  padding:10px 16px;
  font-weight:500;
  white-space:nowrap;
}

.dropdown-menu li a:hover{ background:#f5f7fa; }
.dropdown:hover > .dropdown-menu{ display:block; }

.gw-nav-toggle{
  display:none;
  background:none;
  border:0;
  cursor:pointer;
  padding:10px;
  margin-left:auto;
}

.gw-nav-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:#0b1f33;
  margin:5px 0;
  border-radius:2px;
}


.gw-hero{
  position:relative;
  background-size:cover;
  background-position:center;
  padding-top:56px;
  padding-bottom:56px;
  min-height:540px;
  display:flex;
  align-items:center;
}

.gw-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
}

.gw-hero .gw-wrap{
  position:relative;
  z-index:2;
}

.gw-kicker{
  margin:0 0 16px;
  color:#dce8f6;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:13px;
  font-weight:700;
}

.gw-hero h1,
.gw-section--blue h1,
.gw-section--blue h2,
.gw-section--blue h3{
  color:#ffffff;
}

.gw-hero h1{
  display:inline-block;
  padding-bottom:16px;
  margin-bottom:24px;
  border-bottom:2px solid #d8e2f0;
  text-shadow:0 2px 12px rgba(0,0,0,.55);
}

.gw-hero p{
  color:#f3f6fa;
  font-size:20px;
  line-height:1.75;
}


.gw-content h1{ 
max-width:20ch; 
margin-top: 20px;
}
.gw-content h2{ 
max-width:20ch;
margin-top: 50px;
 }

.gw-content p,
.gw-content ul,
.gw-content ol,
.gw-content blockquote{ max-width:none; }

.gw-content a{
  font-weight:300;
  color:#333333;
  text-decoration:underline;
  text-decoration-color:#2f5bea;
  text-underline-offset:5px;
  text-decoration-thickness:3px;
}

.gw-content a:hover{ color:#111; }

.gw-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #000;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none; !important
  text-align: center;
  transition: all 0.2s ease;
}

.gw-btn:hover {
  background: #000;
  color: #fff;
}

.gw-btn,
.gw-btn a {
  text-decoration: none !important;
  color: inherit !important;
  font-size: 28px !important;
}

.gw-btn a {
  border-bottom: none !important;
}

.gw-cta .gw-btn{
  background:var(--gw-blue-deep);
  color:#fff;
  margin-top:0;
  white-space:nowrap;
  box-shadow:none;
  border-color:var(--gw-blue-deep);
}

.gw-card,
.gw-service-card,
.gw-insight-card,
.gw-city-card,
.gw-topic-card,
.gw-guide-card{
  border-radius:0 !important;
  box-shadow:none !important;
}

.gw-section > .gw-wrap > .gw-content,
main .gw-content,
article .gw-content,
section .gw-content{
  margin-left:auto;
  margin-right:auto;
}


.gw-auto-articles{
  background:#f6f8fb;
  padding:72px 0;
  margin-top:80px;
}

.gw-auto-articles .container{
  padding-top:60px;
  padding-bottom:60px;
}

.gw-auto-articles .gw-articles-heading{
  font-family:var(--gw-serif);
  font-size:clamp(34px, 4vw, 46px);
  font-weight:700;
  line-height:1.08;
  letter-spacing:-0.03em;
  margin:0 0 34px;
  color:var(--gw-blue);
}

.gw-featured-article{
  background:#ffffff;
  padding:38px 40px;
  border:1px solid #e4e9f2;
  border-radius:0;
  margin-bottom:24px;
  box-shadow:none;
}

.gw-featured-label{
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:12px;
}

.gw-featured-title{
  font-family:var(--gw-serif);
  font-size:32px;
  line-height:1.16;
  letter-spacing:-0.028em;
  font-weight:700;
  margin:0 0 14px;
}

.gw-featured-title a,
.gw-article-title a{
  color:var(--gw-blue);
  text-decoration:none;
}

.gw-featured-title a:hover,
.gw-article-title a:hover,
.gw-article-readmore:hover{ text-decoration:underline; }

.gw-featured-excerpt{
  font-size:17px;
  line-height:1.8;
  color:#334155;
  margin:0 0 16px;
  max-width:70ch;
}

.gw-auto-articles .gw-articles-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.gw-auto-articles.cards .gw-article-item{
  background:#ffffff;
  padding:22px;
  border-radius:0;
  border:1px solid #e4e9f2;
  box-shadow:none;
  transition:all .22s ease;
}

.gw-auto-articles.cards .gw-article-item:hover{
  transform:translateY(-3px);
  box-shadow:none;
}

.gw-article-title{
  font-family:var(--gw-serif);
  font-size:24px;
  line-height:1.22;
  letter-spacing:-0.022em;
  font-weight:700;
  margin:0 0 12px;
}

.gw-article-meta{
  font-size:13px;
  color:#6b7280;
  margin:0 0 14px;
}

.gw-article-excerpt{
  font-size:16px;
  line-height:1.75;
  color:#334155;
  margin:0 0 16px;
}

.gw-article-readmore{
  color:var(--gw-blue);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  letter-spacing:.01em;
}

.gw-auto-articles.plain{
  background:transparent;
  padding:50px 0;
}

.gw-auto-articles.plain .gw-featured-article{
  background:transparent;
  border:0;
  padding:0 0 24px;
  margin-bottom:24px;
  border-bottom:1px solid #e4e9f2;
}

.gw-auto-articles.plain .gw-articles-grid{ display:block; }

.gw-auto-articles.plain .gw-article-item{
  background:transparent;
  padding:0 0 18px;
  margin:0 0 18px;
  border-bottom:1px solid #e4e9f2;
  box-shadow:none;
}

.gw-auto-articles.plain .gw-article-item:last-child{
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:0;
}


.gw-breadcrumbs{
  font-size:10px;
  margin-top:0;
  padding-left: 25px;
  margin-top: 10px;
  font-family: 'Helvetica', arial, serif;
  font-size: .875rem;
  font-weight: 500 !important;
}

.gw-breadcrumbs ol{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
}

.gw-breadcrumbs li{
  margin-right:8px;
  font-size:14px;
  color:var(--gw-muted);
}

.gw-breadcrumbs li::after{
  content:"›";
  margin-left:8px;
  color:#999;
}

.gw-breadcrumbs li:last-child::after{ content:""; }

.gw-breadcrumbs a{
  text-decoration:none;
  color: black;
  font-weight: 700 !important;
}

.gw-breadcrumbs a:hover{ text-decoration:underline; }
.gw-breadcrumbs span{ color:#333; }

.gw-footer{
  background:#fff;
  border-top:1px solid var(--gw-border);
}

.gw-footer .gw-wrap{ padding:28px 0 44px; }

.gw-footer p{
  margin:0;
  font-size:15px;
  color:var(--gw-muted);
}


@media (max-width: 1000px){
  .gw-auto-articles .gw-articles-grid{ grid-template-columns:1fr; }
  .gw-auto-articles .gw-articles-heading{ font-size:34px; }
  .gw-featured-title{ font-size:26px; }
  .gw-featured-article,
  .gw-auto-articles.cards .gw-article-item{ padding:24px; }
}

@media (max-width: 991px){
  .gw-auto-articles .gw-articles-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .gw-auto-articles .gw-articles-heading{ font-size:32px; }
}

@media (max-width: 980px){
  .gw-header .gw-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .gw-trust .gw-wrap,
  .gw-list,
  .gw-cta .gw-wrap{
    grid-template-columns:1fr;
    display:grid;
  }

  p,
  li,
  .gw-list a{ font-size:18px; }

  .gw-btn{ font-size:16px; }
}

@media (max-width: 900px){
  .gw-wrap{ width:min(var(--gw-max), calc(100% - 40px)); }
  .gw-content{ max-width:100%; }
  .gw-section{ padding:56px 0; }

  h1{ font-size:clamp(34px, 8vw, 48px); }
  h2{ font-size:clamp(28px, 6.5vw, 38px); }

  .gw-nav-toggle{ display:block; }

  .gw-header .gw-wrap{
    padding:0 18px;
    min-height:74px;
    gap:18px;
  }

  .gw-logo img{ max-height:54px; }

  .gw-nav{
    width:100%;
    gap:16px 20px;
  }

  .gw-menu{
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    width:100%;
    background:#ffffff;
    border-top:1px solid #e5e7eb;
    margin-top:12px;
    padding-top:8px;
  }

  .gw-nav.is-open .gw-menu{ display:flex; }
  .gw-menu > li{ width:100%; }

  .gw-menu > li > a,
  .gw-mega-link{
    padding:16px 0;
    font-size:17px;
    line-height:1.2;
    top:0;
  }

  .dropdown-menu{ display:none !important; }
  .dropdown > a::after{ display:none; }

  .gw-menu > li > a::after,
  .gw-mega-link::after{ display:none; }
}

@media (max-width: 640px){
  .gw-wrap{ width:min(var(--gw-max), calc(100% - 32px)); }

  .gw-topbar .gw-wrap{
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:14px 20px;
  }

  .gw-logo{ font-size:28px; }

  .gw-nav a{ font-size:16px; }

  .gw-hero{
    min-height:auto;
    padding-top:42px;
    padding-bottom:42px;
  }

  .gw-hero h1{ max-width:none; }
  .gw-hero p{ font-size:18px; }

  h1{ font-size:clamp(34px, 9vw, 46px); }
  h2{
    font-size:clamp(28px, 7vw, 36px);
    max-width:none;
  }

  p,
  li{ font-size:17px; }
}


.split-band{
    display:flex;
    align-items:stretch;
    width:100%;
    overflow:hidden;
    padding:100px 0;
}

.split-band.reverse{
    flex-direction:row-reverse;
}

.split-band .split-media{
    flex: 0 0 42%;
    max-width: 42%;
    box-sizing: border-box;
}

.split-band .split-copy{
    flex: 0 0 58%;
    max-width: 58%;
    box-sizing: border-box;
}

.split-band .split-media{
    overflow:hidden;
}

.split-band .split-media img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position: 65% center; /* or tweak */
    box-shadow:0 30px 60px rgba(0,0,0,0.12);
    border-radius:6px;
}

.split-band .split-copy{
    padding:80px;
    box-sizing:border-box;
}

/* only optional heading spacing */
.split-band .split-copy h1,
.split-band .split-copy h2,
.split-band .split-copy h3,
.split-band .split-copy h4,
.split-band .split-copy h5,
.split-band .split-copy h6{
    margin:0 0 20px;
}

@media (max-width:900px){
    .split-band,
    .split-band.reverse{
        flex-direction:column;
        padding:60px 0;
    }

    .split-band .split-media,
    .split-band .split-copy{
        width:100%;
        flex:0 0 100%;
    }

    .split-band .split-copy{
        padding:40px 24px;
    }

    .split-band .split-media img{
        min-height:320px;
        border-radius:0;
    }
}

.gw-expertise-cards{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:28px;
    margin-top:32px;
    align-items:start;
}

.gw-expertise-card{
    position:relative;
    min-height:440px;
    height:100%;
    border-radius:18px;
    overflow:visible;
    display:flex;
    flex-direction:column;
}

.gw-expertise-card__link{
    position:relative;
    display:block;
    min-height:440px;
    height:440px;
    color:#fff;
    text-decoration:none;
    overflow:hidden;
    border-radius:18px;
}

.gw-expertise-card__media{
    position:absolute;
    inset:0;
    z-index:1;
}

.gw-expertise-card__media img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .55s ease;
}

.gw-expertise-card__overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.76) 10%,
            rgba(0,0,0,.28) 48%,
            rgba(0,0,0,.08) 100%
        );
    transition:background .35s ease, opacity .35s ease;
}

.gw-expertise-card__content{
    position:absolute;
    inset:0;
    z-index:3;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:34px 30px 30px;
    box-sizing:border-box;
}

.gw-expertise-card h3{
    margin:0;
    max-width:85%;
    color:#fff;
    font-size:clamp(2rem, 2.2vw, 3rem);
    line-height:.95;
    font-weight:700;
    letter-spacing:-0.03em;
}

.gw-expertise-card__reveal{
    max-height:0;
    opacity:0;
    overflow:hidden;
    transform:translateY(18px);
    margin-top:0;
    transition:
        max-height .45s ease,
        opacity .28s ease,
        transform .35s ease,
        margin-top .35s ease;
}

.gw-expertise-card__reveal p{
    margin:0 0 24px;
    max-width:92%;
    color:#fff;
    font-size:1.05rem;
    line-height:1.28;
}

.gw-expertise-card__cta{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:14px 18px;
    background:#fff;
    color:#111;
    border-radius:10px;
    font-weight:700;
    font-size:1rem;
}

.gw-expertise-card:hover .gw-expertise-card__media img{
    transform:scale(1.05);
}

.gw-expertise-card:hover .gw-expertise-card__overlay{
    background:rgba(12,12,12,.96);
}

.gw-expertise-card:hover .gw-expertise-card__reveal{
    max-height:260px;
    opacity:1;
    transform:translateY(0);
    margin-top:28px;
}

/* =========================
   ARTICLE LINKS
========================= */

.gw-expertise-card__articles{
    display:block;
    position:relative;
    z-index:5;
    margin-top:14px;
    padding:0 8px 0 8px;
}

.gw-expertise-card__featured-article{
    display:-webkit-box;
    position:relative;
    margin-top:0;
    padding:0 0 12px 0;
    font-size:14px;
    line-height:1.38;
    font-weight:600;
    color:#243445;
    text-decoration:none;
    letter-spacing:-0.01em;
    overflow:hidden;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    transition:color .2s ease, transform .2s ease, opacity .2s ease;
}

.gw-expertise-card__featured-article:hover{
    color:#0f3d68;
    opacity:.9;
    transform:translateX(2px);
}

.gw-expertise-card__featured-article:after{
    content:"";
    display:block;
    width:38px;
    height:2px;
    margin-top:9px;
    background:#d6e0ea;
}

.gw-expertise-card__article-link{
    display:-webkit-box;
    position:relative;
    padding-left:14px;
    margin-top:8px;
    font-size:12px;
    line-height:1.45;
    color:#6f8092;
    text-decoration:none;
    overflow:hidden;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    transition:color .2s ease, transform .2s ease, opacity .2s ease;
}

.gw-expertise-card__article-link:before{
    content:"";
    position:absolute;
    left:0;
    top:.58em;
    width:5px;
    height:5px;
    border-radius:50%;
    background:#9fb1c3;
}

.gw-expertise-card__article-link:hover{
    color:#0f3d68;
    opacity:.9;
    transform:translateX(2px);
}

.gw-expertise-card__view-all{
    display:inline-flex;
    align-items:center;
    margin-top:12px;
    font-size:12px;
    font-weight:600;
    color:#0f3d68;
    text-decoration:none;
    letter-spacing:.01em;
    transition:opacity .2s ease, transform .2s ease;
}

.gw-expertise-card__view-all:hover{
    opacity:.75;
    transform:translateX(2px);
}

.gw-expertise-card__view-all:after{
    content:" →";
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px){
    .gw-expertise-cards{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px){
    .gw-expertise-cards{
        grid-template-columns:1fr;
    }

    .gw-expertise-card{
        min-height:auto;
    }

    .gw-expertise-card__link{
        min-height:440px;
        height:440px;
    }

    .gw-expertise-card__overlay{
        background:rgba(12,12,12,.52);
    }

    .gw-expertise-card__reveal{
        max-height:260px;
        opacity:1;
        transform:none;
        margin-top:22px;
    }

    .gw-expertise-card__articles{
        padding:0 4px;
    }
}

.gw-service-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:22px;
    margin-top:30px;
}

.gw-service-card{
    height:100%;
}

.gw-service-card a{
    display:block;
    height:100%;
    text-decoration:none;
    color:inherit;
}

.gw-service-card__inner{
    height:100%;
    padding:24px 24px 22px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:12px;
    box-shadow:0 8px 22px rgba(16,24,40,0.04);
    transition:border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
    box-sizing:border-box;
}

.gw-service-card:hover .gw-service-card__inner{
    border-color:#cbd8e6;
    box-shadow:0 14px 30px rgba(16,24,40,0.07);
    transform:translateY(-2px);
    background:#fff;
}

.gw-service-card h3{
    margin:0 0 10px;
    font-size:21px;
    line-height:1.28;
    font-weight:600;
    letter-spacing:-0.01em;
    color:#12263a;
    transition:color .22s ease;
}

.gw-service-card:hover h3{
    color:#0f3d68;
}

.gw-service-card p{
    margin:0 0 16px;
    font-size:15px;
    line-height:1.7;
    color:#5c6b7a;
}

.gw-service-card__cta{
    display:inline-flex;
    align-items:center;
    font-size:13px;
    font-weight:600;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:#0f3d68;
}

.gw-service-card__cta:after{
    content:"→";
    margin-left:8px;
    transition:transform .22s ease;
}

.gw-service-card:hover .gw-service-card__cta:after{
    transform:translateX(4px);
}

@media (max-width: 767px){
    .gw-service-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .gw-service-card__inner{
        padding:22px 20px;
    }

    .gw-service-card h3{
        font-size:19px;
    }
}





.gw-expertise-card__view-all{
    display:inline-block;
    margin-top:10px;
    font-size:12px;
    font-weight:600;
    color:#0f3d68;
    text-decoration:none;
    letter-spacing:.01em;
    transition:opacity .2s ease, transform .2s ease;
}

.gw-expertise-card__view-all:hover{
    opacity:.75;
    transform:translateX(2px);
}

.gw-expertise-card__view-all:after{
    content:" →";
}

/* =========================
   GRID
========================= */

.gw-article-grid{
    --gw-article-columns: 3;

    display:grid;
    grid-template-columns:repeat(var(--gw-article-columns), minmax(0, 1fr));
    gap:26px;
    margin-top:32px;
    align-items:start;
}

/* =========================
   CARD
========================= */

.gw-article-card{
    height:100%;
}

.gw-article-card__link{
    display:block;
    height:100%;
    background:#fff;
    border:1px solid #e3eaf1;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(16,24,40,0.05);

    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        transform .22s ease;
}

.gw-article-card__link:hover{
    border-color:#d4dde7;
    box-shadow:0 12px 28px rgba(16,24,40,0.06);
    transform:translateY(-1px);
}

/* =========================
   MEDIA
========================= */

.gw-article-card__media{
    aspect-ratio:16 / 9;
    overflow:hidden;
    background:#eef3f8;
}

.gw-article-card__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
}

.gw-article-card__link:hover .gw-article-card__media img{
    transform:scale(1.02);
}

/* =========================
   CONTENT
========================= */

.gw-article-card__content{
    padding:20px 20px 18px;
}

/* =========================
   HARD ANCHOR RESET
========================= */

.gw-article-card__link,
.gw-article-card__link:hover,
.gw-article-card__link:focus,
.gw-article-card__link:visited{
    text-decoration:none !important;
    color:inherit !important;
}

/* =========================
   TITLE
========================= */

.gw-article-card__link h3{
    margin:0 0 10px;
    font-size:clamp(1.55rem, 1.3vw, 2rem);
    line-height:1.12;
    font-weight:600;
    letter-spacing:-0.03em;
    color:#16283a !important;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;

    text-decoration:none !important;
    transition:color .2s ease;
}

.gw-article-card__link:hover h3{
    color:#0f3d68 !important;
    text-decoration:none !important;
}

/* =========================
   EXCERPT
========================= */

.gw-article-card__link p{
    margin:0;
    font-size:15px;
    line-height:1.62;
    color:#5f7083 !important;

    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;

    text-decoration:none !important;
}

/* hide old CTA if markup still outputs it */
.gw-article-card__cta{
    display:none !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px){
    .gw-article-grid{
        --gw-article-columns: 2;
    }
}

@media (max-width: 767px){
    .gw-article-grid{
        --gw-article-columns: 1;
        gap:18px;
    }

    .gw-article-card__content{
        padding:18px 18px 16px;
    }

    .gw-article-card__link h3{
        font-size:1.7rem;
        line-height:1.14;
    }

    .gw-article-card__link p{
        font-size:14px;
        line-height:1.58;
    }
}