.elementor-1107 .elementor-element.elementor-element-6ec192f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1107 .elementor-element.elementor-element-9b09cf3{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}/* Start custom CSS *//* ── NEWS landing page — Advanced CSS (paste into Elementor Page → Advanced → Custom CSS) ── */

/* Hero banner */
.news-hero {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
  min-height: 320px;
  position: relative;
}
.news-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
}
.news-hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: 320px;
  align-items: center;
}
.news-hero__text { padding: 48px 48px 60px 0; }
.news-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.news-hero__intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
.news-hero__intro a { color: var(--orange); text-decoration: underline; }
.news-hero__intro a:hover { color: var(--yellow); }
.news-hero__image {
  position: relative;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  min-height: 320px;
}
.news-hero__image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}

/* News grid section */
.news-grid-section { padding: 72px 0 80px; background: var(--offwhite); }

@media (max-width: 860px) {
  .news-hero__inner { grid-template-columns: 1fr; }
  .news-hero__image { clip-path: none; min-height: 220px; position: relative; }
  .news-hero__text  { padding: 40px 0 32px; }
  .news-hero { min-height: auto; }
}/* End custom CSS */