/* GOODWIND News & Insights and homepage editorial modules */

:root {
  --gw-blog-ink: #17243a;
  --gw-blog-muted: #5e6c80;
  --gw-blog-accent: #e60012;
  --gw-blog-accent-dark: #b80916;
  --gw-blog-line: #dfe5ed;
  --gw-blog-soft: #f3f6fa;
  --gw-blog-card: #ffffff;
  --gw-blog-radius: 18px;
  --gw-blog-shadow: 0 14px 38px rgba(24, 38, 61, 0.1);
}

.gw-blog-hub,
.gw-article,
.gw-home-editorial {
  color: var(--gw-blog-ink);
  font-family: inherit;
}

.gw-blog-shell {
  width: min(calc(100% - 80px), 1500px);
  margin-inline: auto;
}

.gw-blog-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #101b2f;
}

.gw-blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 20, 39, 0.94) 0%, rgba(9, 20, 39, 0.82) 48%, rgba(9, 20, 39, 0.38) 100%),
    linear-gradient(180deg, rgba(9, 20, 39, 0.08), rgba(9, 20, 39, 0.42));
}

.gw-blog-hero__media,
.gw-blog-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gw-blog-hero__media {
  z-index: -2;
}

.gw-blog-hero__media img {
  object-fit: cover;
  object-position: center;
}

.gw-blog-hero__content {
  padding-block: 88px;
}

.gw-blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.gw-blog-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.gw-blog-breadcrumb a:hover,
.gw-blog-breadcrumb a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.gw-blog-eyebrow,
.gw-blog-kicker,
.gw-home-editorial__kicker {
  margin: 0 0 12px;
  color: var(--gw-blog-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gw-blog-hero .gw-blog-eyebrow {
  color: #ff6570;
}

.gw-blog-hero h1 {
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.gw-blog-hero__lede {
  max-width: 850px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.65;
}

.gw-blog-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.gw-blog-hero__proof span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  backdrop-filter: blur(8px);
}

.gw-blog-main {
  padding-block: 96px 110px;
}

.gw-blog-section-heading,
.gw-home-editorial__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 38px;
}

.gw-blog-section-heading h2,
.gw-blog-authority h2,
.gw-blog-cta h2,
.gw-related h2,
.gw-home-editorial__heading h2 {
  margin: 0;
  color: var(--gw-blog-ink);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.13;
}

.gw-blog-section-heading > p,
.gw-home-editorial__heading > p,
.gw-blog-authority__copy p,
.gw-blog-cta p {
  margin: 0;
  color: var(--gw-blog-muted);
  font-size: 17px;
  line-height: 1.75;
}

.gw-blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 38px;
}

.gw-blog-filters a {
  padding: 10px 16px;
  border: 1px solid var(--gw-blog-line);
  border-radius: 999px;
  background: #fff;
  color: #38475e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.gw-blog-filters a:hover,
.gw-blog-filters a:focus-visible,
.gw-blog-filters a.is-active {
  border-color: var(--gw-blog-accent);
  background: var(--gw-blog-accent);
  color: #fff;
}

.gw-blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  min-height: 510px;
  margin-bottom: 34px;
  border: 1px solid var(--gw-blog-line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--gw-blog-card);
  box-shadow: var(--gw-blog-shadow);
}

.gw-blog-featured__image {
  display: block;
  min-height: 100%;
  overflow: hidden;
}

.gw-blog-featured__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gw-blog-featured:hover .gw-blog-featured__image img {
  transform: scale(1.025);
}

.gw-blog-featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 68px);
}

.gw-blog-featured__content h3 {
  margin: 20px 0 18px;
  font-size: clamp(28px, 2.3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.gw-blog-featured__content h3 a,
.gw-blog-card h3 a,
.gw-home-resource-card h3 a {
  color: var(--gw-blog-ink);
  text-decoration: none;
}

.gw-blog-featured__content h3 a:hover,
.gw-blog-featured__content h3 a:focus-visible,
.gw-blog-card h3 a:hover,
.gw-blog-card h3 a:focus-visible,
.gw-home-resource-card h3 a:hover,
.gw-home-resource-card h3 a:focus-visible {
  color: var(--gw-blog-accent-dark);
}

.gw-blog-featured__content > p {
  margin: 0 0 28px;
  color: var(--gw-blog-muted);
  font-size: 17px;
  line-height: 1.75;
}

.gw-blog-card__meta,
.gw-home-resource-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 14px;
  color: #778398;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gw-blog-card__meta span,
.gw-home-resource-card__meta span {
  color: var(--gw-blog-accent-dark);
}

.gw-blog-read-more,
.gw-home-resource-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--gw-blog-accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

.gw-blog-read-more:hover,
.gw-blog-read-more:focus-visible,
.gw-home-resource-card__link:hover,
.gw-home-resource-card__link:focus-visible {
  color: var(--gw-blog-accent-dark);
  text-decoration: underline;
}

.gw-blog-grid,
.gw-home-editorial__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.gw-blog-card,
.gw-home-resource-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--gw-blog-line);
  border-radius: var(--gw-blog-radius);
  overflow: hidden;
  background: var(--gw-blog-card);
  box-shadow: 0 8px 28px rgba(24, 38, 61, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gw-blog-card:hover,
.gw-home-resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gw-blog-shadow);
}

.gw-blog-card__image,
.gw-home-resource-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8edf3;
}

.gw-blog-card__image img,
.gw-home-resource-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gw-blog-card:hover .gw-blog-card__image img,
.gw-home-resource-card:hover .gw-home-resource-card__image img {
  transform: scale(1.035);
}

.gw-blog-card__body,
.gw-home-resource-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 28px;
}

.gw-blog-card h3,
.gw-home-resource-card h3 {
  margin: 16px 0 13px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.gw-blog-card__body > p,
.gw-home-resource-card__body > p {
  margin: 0 0 24px;
  color: var(--gw-blog-muted);
  font-size: 15px;
  line-height: 1.7;
}

.gw-blog-card .gw-blog-read-more,
.gw-home-resource-card__link {
  margin-top: auto;
}

.gw-blog-pagination {
  margin-top: 52px;
}

.gw-blog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gw-blog-pagination a,
.gw-blog-pagination span {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  padding: 8px 13px;
  border: 1px solid var(--gw-blog-line);
  border-radius: 8px;
  background: #fff;
  color: var(--gw-blog-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.gw-blog-pagination .current,
.gw-blog-pagination a:hover,
.gw-blog-pagination a:focus-visible {
  border-color: var(--gw-blog-accent);
  background: var(--gw-blog-accent);
  color: #fff;
}

.gw-blog-empty {
  padding: 60px;
  border: 1px solid var(--gw-blog-line);
  border-radius: var(--gw-blog-radius);
  background: var(--gw-blog-soft);
  text-align: center;
}

.gw-blog-empty h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.gw-blog-empty p {
  margin: 0 auto 24px;
  color: var(--gw-blog-muted);
}

.gw-blog-authority {
  padding-block: 86px;
  background: var(--gw-blog-soft);
}

.gw-blog-authority__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
}

.gw-blog-authority__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.gw-blog-cta {
  padding-block: 76px;
  background: #18263e;
}

.gw-blog-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
}

.gw-blog-cta h2 {
  color: #fff;
}

.gw-blog-cta p {
  max-width: 850px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.gw-blog-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.gw-blog-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--gw-blog-accent);
  border-radius: 8px;
  background: var(--gw-blog-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gw-blog-button:hover,
.gw-blog-button:focus-visible {
  border-color: var(--gw-blog-accent-dark);
  background: var(--gw-blog-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.gw-blog-button--secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

/* Article detail */

.gw-article-hero {
  padding-block: 62px 78px;
  background:
    radial-gradient(circle at 86% 18%, rgba(230, 0, 18, 0.13), transparent 29%),
    #17243a;
}

.gw-article-hero .gw-blog-breadcrumb {
  margin-bottom: 55px;
}

.gw-article-hero__inner {
  max-width: 1120px;
}

.gw-article-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.gw-article-hero__lede {
  max-width: 970px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.65;
}

.gw-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.gw-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 54px;
  padding-block: 78px 100px;
}

.gw-article-main {
  min-width: 0;
}

.gw-article-cover {
  margin: 0 0 52px;
}

.gw-article-cover img {
  display: block;
  width: 100%;
  max-height: 690px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--gw-blog-shadow);
}

.gw-article-cover figcaption,
.gw-article-gallery figcaption {
  margin-top: 10px;
  color: #778398;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.gw-article-body {
  color: #3c4a60;
  font-size: 18px;
  line-height: 1.85;
}

.gw-article-body section + section {
  margin-top: 44px;
}

.gw-article-body h2,
.gw-article-gallery h2,
.gw-article-source-note h2 {
  margin: 0 0 18px;
  color: var(--gw-blog-ink);
  font-size: clamp(27px, 2.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gw-article-body p {
  margin: 0 0 22px;
}

.gw-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.gw-article-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 48px;
  border: 1px solid var(--gw-blog-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--gw-blog-line);
}

.gw-article-facts > div {
  padding: 20px 22px;
  background: var(--gw-blog-soft);
}

.gw-article-facts dt {
  margin-bottom: 5px;
  color: var(--gw-blog-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gw-article-facts dd {
  margin: 0;
  color: var(--gw-blog-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.gw-article-gallery {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--gw-blog-line);
}

.gw-article-gallery__heading {
  margin-bottom: 26px;
}

.gw-article-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.gw-article-gallery figure {
  margin: 0;
}

.gw-article-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
  background: #e8edf3;
}

.gw-article-source-note {
  margin-top: 58px;
  padding: 30px 32px;
  border-left: 4px solid var(--gw-blog-accent);
  border-radius: 0 12px 12px 0;
  background: var(--gw-blog-soft);
}

.gw-article-source-note h2 {
  font-size: 23px;
}

.gw-article-source-note p {
  margin: 0;
  color: var(--gw-blog-muted);
  font-size: 15px;
  line-height: 1.75;
}

.gw-article-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--gw-blog-line);
}

.gw-article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.gw-article-share span {
  margin-right: 4px;
  color: var(--gw-blog-ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.gw-article-share a {
  padding: 7px 10px;
  border: 1px solid var(--gw-blog-line);
  border-radius: 6px;
  color: #4d5b70;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.gw-article-share a:hover,
.gw-article-share a:focus-visible {
  border-color: var(--gw-blog-accent);
  color: var(--gw-blog-accent);
}

.gw-article-aside {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 20px;
}

.gw-article-aside__card,
.gw-article-aside__links {
  padding: 28px;
  border: 1px solid var(--gw-blog-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(24, 38, 61, 0.06);
}

.gw-article-aside h2 {
  margin: 0 0 14px;
  color: var(--gw-blog-ink);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
}

.gw-article-aside__card > p:not(.gw-blog-kicker) {
  margin: 0 0 22px;
  color: var(--gw-blog-muted);
  font-size: 14px;
  line-height: 1.7;
}

.gw-article-aside .gw-blog-button {
  width: 100%;
}

.gw-article-aside__links {
  display: grid;
}

.gw-article-aside__links a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid var(--gw-blog-line);
  color: #435168;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.gw-article-aside__links a:hover,
.gw-article-aside__links a:focus-visible {
  color: var(--gw-blog-accent);
}

.gw-related {
  padding-block: 86px 96px;
  background: var(--gw-blog-soft);
}

.gw-related .gw-blog-section-heading {
  grid-template-columns: minmax(0, 1fr) auto;
}

/* Homepage: three intentionally different content systems. */

.bc .gw-home-editorial {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 72px 0 84px !important;
  background: #f4f6f9;
}

.bc .gw-home-editorial__block.wrap {
  width: min(calc(100% - 96px), 1540px) !important;
  max-width: 1540px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.bc .gw-home-editorial__block + .gw-home-editorial__block {
  margin-top: 72px !important;
  padding-top: 68px !important;
  border-top: 1px solid #d9e0e9;
}

.gw-home-editorial__heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 30px;
}

.gw-home-editorial__heading h2 {
  max-width: 930px;
  font-size: clamp(30px, 2.35vw, 42px);
  line-height: 1.12;
}

.gw-home-editorial__kicker {
  margin-bottom: 8px;
}

.gw-home-editorial__heading > a,
.gw-home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--gw-blog-accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

.gw-home-editorial__heading > a {
  padding-bottom: 5px;
}

.gw-home-editorial__heading > a:hover,
.gw-home-editorial__heading > a:focus-visible,
.gw-home-text-link:hover,
.gw-home-text-link:focus-visible {
  color: var(--gw-blog-accent-dark);
  text-decoration: underline;
}

/* Company: one broad visual story with two compact capability routes. */

.gw-home-company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(440px, 0.88fr);
  gap: 24px;
  min-height: 600px;
}

.gw-home-company-feature {
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(390px, 1fr) auto;
  overflow: hidden;
  border-radius: 18px;
  background: #12213a;
  box-shadow: 0 14px 34px rgba(24, 38, 61, 0.11);
}

.gw-home-company-feature__image,
.gw-home-company-feature__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.gw-home-company-feature__image {
  min-height: 0;
  overflow: hidden;
}

.gw-home-company-feature__image img {
  object-fit: cover;
  object-position: center 48%;
  transition: transform 0.45s ease;
}

.gw-home-company-feature:hover .gw-home-company-feature__image img {
  transform: scale(1.018);
}

.gw-home-company-feature__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 28px;
  align-items: end;
  padding: 28px 32px 30px;
  color: #fff;
}

.gw-home-company-feature__copy > p {
  grid-column: 1 / -1;
  margin: 0;
  color: #ff6671;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.gw-home-company-feature__copy h3 {
  margin: 0;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.15;
}

.gw-home-company-feature__copy h3 a,
.gw-home-company-feature__copy .gw-home-text-link {
  color: #fff;
}

.gw-home-company-feature__copy > span {
  grid-column: 1;
  max-width: 680px;
  color: #cbd4e1;
  font-size: 15px;
  line-height: 1.65;
}

.gw-home-company-feature__copy .gw-home-text-link {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
}

.gw-home-company-rail {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

.gw-home-company-rail__item {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(170px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border-top: 3px solid var(--gw-blog-accent);
  background: #fff;
  box-shadow: 0 8px 25px rgba(24, 38, 61, 0.07);
}

.gw-home-company-rail__image,
.gw-home-company-rail__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.gw-home-company-rail__image {
  width: calc(100% - 18px);
  height: auto;
  min-height: 0;
  margin-left: 18px;
  align-self: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gw-home-company-rail__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gw-home-company-rail__item--1 .gw-home-company-rail__image img {
  object-position: 48% center;
}

.gw-home-company-rail__item--2 .gw-home-company-rail__image img {
  object-position: 58% center;
}

.gw-home-company-rail__item:hover .gw-home-company-rail__image img {
  transform: scale(1.025);
}

.gw-home-company-rail__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 25px 26px;
}

.gw-home-company-rail__copy > p {
  margin: 0 0 8px;
  color: var(--gw-blog-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gw-home-company-rail__copy h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.2;
}

.gw-home-company-rail__copy h3 a,
.gw-home-news-feature h3 a,
.gw-home-news-rail h3 a {
  color: var(--gw-blog-ink);
  text-decoration: none;
}

.gw-home-company-rail__copy h3 a:hover,
.gw-home-company-rail__copy h3 a:focus-visible,
.gw-home-news-feature h3 a:hover,
.gw-home-news-feature h3 a:focus-visible,
.gw-home-news-rail h3 a:hover,
.gw-home-news-rail h3 a:focus-visible {
  color: var(--gw-blog-accent-dark);
}

.gw-home-company-rail__copy > span {
  margin-bottom: 18px;
  color: var(--gw-blog-muted);
  font-size: 14px;
  line-height: 1.6;
}

.gw-home-company-rail__copy .gw-home-text-link {
  margin-top: auto;
}

/* News: a lead story plus a compact editorial rail. */

.gw-home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(440px, 0.82fr);
  gap: 42px;
  align-items: start;
}

.gw-home-news-feature {
  min-width: 0;
}

.gw-home-news-feature__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e5eaf1;
}

.gw-home-news-feature__image img,
.gw-home-news-rail__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.gw-home-news-feature:hover .gw-home-news-feature__image img,
.gw-home-news-rail__item:hover .gw-home-news-rail__image img {
  transform: scale(1.025);
}

.gw-home-news-feature__copy {
  padding: 24px 0 4px;
}

.gw-home-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #778398;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.065em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gw-home-news-meta span {
  color: var(--gw-blog-accent-dark);
}

.gw-home-news-feature h3 {
  max-width: 780px;
  margin: 12px 0 12px;
  font-size: clamp(26px, 2.05vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.gw-home-news-feature__copy > p {
  max-width: 780px;
  margin: 0 0 19px;
  color: var(--gw-blog-muted);
  font-size: 16px;
  line-height: 1.68;
}

.gw-home-news-rail {
  display: grid;
  border-left: 1px solid #d8dee7;
}

.gw-home-news-rail__item {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  padding-left: 28px;
}

.gw-home-news-rail__item + .gw-home-news-rail__item {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #d8dee7;
}

.gw-home-news-rail__image {
  display: block;
  min-height: 0;
  align-self: start;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e5eaf1;
}

.gw-home-news-rail__copy {
  min-width: 0;
}

.gw-home-news-rail h3 {
  margin: 9px 0 8px;
  font-size: clamp(19px, 1.35vw, 24px);
  line-height: 1.24;
}

.gw-home-news-rail__copy > p {
  display: -webkit-box;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--gw-blog-muted);
  font-size: 13.5px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gw-home-news-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 34px;
  border-left: 4px solid var(--gw-blog-accent);
  background: #fff;
}

.gw-home-news-empty h3,
.gw-home-news-empty p {
  margin: 0;
}

.gw-home-news-empty h3 {
  color: var(--gw-blog-ink);
  font-size: 23px;
}

.gw-home-news-empty p {
  margin-top: 7px;
  color: var(--gw-blog-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Video: a media wall with copy over the footage, not white article cards. */

.gw-home-video-wall {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gw-home-video-item {
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #111b2c;
}

.gw-home-video-item--featured {
  grid-row: 1 / 3;
}

.gw-home-video-item > a,
.gw-home-video-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.gw-home-video-item > a {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.gw-home-video-item img {
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gw-home-video-item:hover img {
  transform: scale(1.028);
}

.gw-home-video-item__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 31, 0.02) 28%, rgba(7, 16, 31, 0.88) 100%);
}

.gw-home-video-item__play {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--gw-blog-accent);
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(7, 16, 31, 0.2);
  transition: background 0.2s ease, color 0.2s ease;
}

.gw-home-video-item:hover .gw-home-video-item__play {
  background: var(--gw-blog-accent);
  color: #fff;
}

.gw-home-video-item__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 28px;
}

.gw-home-video-item__category {
  margin-bottom: 8px;
  color: #ff6c76;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gw-home-video-item__copy strong {
  max-width: 720px;
  font-size: clamp(21px, 1.8vw, 30px);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.gw-home-video-item--featured .gw-home-video-item__copy strong {
  font-size: clamp(28px, 2.5vw, 42px);
}

.gw-home-video-item__action {
  margin-top: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1200px) {
  .gw-blog-shell {
    width: min(calc(100% - 56px), 1120px);
  }

  .gw-blog-featured {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  }

  .gw-blog-grid,
  .gw-home-editorial__grid {
    gap: 22px;
  }

  .gw-blog-card__body,
  .gw-home-resource-card__body {
    padding: 24px;
  }

  .gw-article-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 38px;
  }

  .bc .gw-home-editorial__block.wrap {
    width: min(calc(100% - 56px), 1120px) !important;
  }

  .gw-home-company-layout,
  .gw-home-news-layout {
    gap: 28px;
  }

  .gw-home-company-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(410px, 0.9fr);
  }

  .gw-home-company-rail__item {
    grid-template-columns: minmax(145px, 0.72fr) minmax(0, 1.28fr);
  }

  .gw-home-company-rail__copy {
    padding: 22px;
  }

  .gw-home-news-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  }

  .gw-home-news-rail__item {
    grid-template-columns: 135px minmax(0, 1fr);
    gap: 18px;
    padding-left: 22px;
  }

}

@media (max-width: 920px) {
  .gw-blog-hero {
    min-height: 500px;
  }

  .gw-blog-section-heading,
  .gw-home-editorial__heading,
  .gw-blog-authority__grid,
  .gw-blog-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gw-blog-featured {
    grid-template-columns: 1fr;
  }

  .gw-blog-featured__image {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }

  .gw-blog-grid,
  .gw-home-editorial__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gw-blog-authority__copy {
    grid-template-columns: 1fr 1fr;
  }

  .gw-blog-cta__actions {
    justify-content: flex-start;
  }

  .gw-article-layout {
    grid-template-columns: 1fr;
  }

  .gw-article-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .gw-home-resource-card__body {
    min-height: 0;
  }

  .gw-home-company-layout,
  .gw-home-news-layout {
    grid-template-columns: 1fr;
  }

  .gw-home-company-layout {
    min-height: 0;
  }

  .gw-home-company-feature {
    grid-template-rows: auto auto;
  }

  .gw-home-company-feature__image {
    aspect-ratio: 16 / 9;
  }

  .gw-home-company-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .gw-home-company-rail__item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .gw-home-company-rail__image {
    width: 100%;
    margin-left: 0;
  }

  .gw-home-company-rail__copy {
    justify-content: flex-start;
  }

  .gw-home-news-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    border-left: 0;
  }

  .gw-home-news-rail__item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
    border-top: 3px solid var(--gw-blog-accent);
  }

  .gw-home-news-rail__item + .gw-home-news-rail__item {
    margin: 0;
    padding-top: 0;
    border-top: 3px solid var(--gw-blog-accent);
  }

  .gw-home-news-rail__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .gw-home-news-rail__copy {
    padding-right: 8px;
  }

  .gw-home-video-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    height: auto;
  }

  .gw-home-video-item,
  .gw-home-video-item--featured {
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .gw-home-video-item--featured {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
}

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

  .gw-blog-hero {
    min-height: 520px;
  }

  .gw-blog-hero::before {
    background: rgba(9, 20, 39, 0.82);
  }

  .gw-blog-hero__content {
    padding-block: 58px;
  }

  .gw-blog-breadcrumb,
  .gw-article-hero .gw-blog-breadcrumb {
    margin-bottom: 34px;
  }

  .gw-blog-hero h1,
  .gw-article-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    overflow-wrap: anywhere;
  }

  .gw-blog-hero__lede,
  .gw-article-hero__lede {
    font-size: 17px;
  }

  .gw-blog-main,
  .gw-article-layout,
  .gw-related {
    padding-block: 58px 68px;
  }

  .gw-blog-grid,
  .gw-home-editorial__grid,
  .gw-blog-authority__copy,
  .gw-article-gallery__grid,
  .gw-article-aside {
    grid-template-columns: 1fr;
  }

  .gw-blog-featured__image {
    min-height: 230px;
  }

  .gw-blog-featured__content,
  .gw-blog-card__body,
  .gw-home-resource-card__body {
    padding: 24px 20px;
  }

  .gw-blog-featured__content h3 {
    font-size: 27px;
  }

  .gw-blog-card h3,
  .gw-home-resource-card h3 {
    font-size: 21px;
  }

  .gw-blog-authority,
  .gw-blog-cta {
    padding-block: 58px;
  }

  .gw-blog-empty {
    padding: 38px 20px;
  }

  .gw-blog-cta__actions,
  .gw-blog-button {
    width: 100%;
  }

  .gw-article-hero {
    padding-block: 46px 58px;
  }

  .gw-article-cover {
    margin-bottom: 38px;
  }

  .gw-article-cover img {
    min-height: 230px;
  }

  .gw-article-body {
    font-size: 16.5px;
    line-height: 1.8;
  }

  .gw-article-facts {
    grid-template-columns: 1fr;
  }

  .gw-article-source-note,
  .gw-article-aside__card,
  .gw-article-aside__links {
    padding: 24px 20px;
  }

  .gw-article-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .bc .gw-home-editorial {
    padding: 58px 0 68px !important;
  }

  .bc .gw-home-editorial__block.wrap {
    width: min(calc(100% - 32px), 600px) !important;
  }

  .bc .gw-home-editorial__block + .gw-home-editorial__block {
    margin-top: 64px !important;
    padding-top: 58px !important;
  }

  .gw-home-editorial__heading > a {
    justify-self: start;
  }

  .gw-home-editorial__heading h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .gw-home-company-feature {
    grid-template-rows: auto auto;
  }

  .gw-home-company-feature__copy {
    grid-template-columns: 1fr;
    padding: 24px 22px 26px;
  }

  .gw-home-company-feature__copy > p,
  .gw-home-company-feature__copy > span,
  .gw-home-company-feature__copy .gw-home-text-link {
    grid-column: 1;
  }

  .gw-home-company-feature__copy .gw-home-text-link {
    grid-row: auto;
    margin-top: 10px;
  }

  .gw-home-company-rail,
  .gw-home-news-rail,
  .gw-home-video-wall {
    grid-template-columns: 1fr;
  }

  .gw-home-company-rail__item {
    grid-template-rows: auto auto;
  }

  .gw-home-news-feature__copy {
    padding-top: 20px;
  }

  .gw-home-news-feature h3 {
    font-size: 25px;
  }

  .gw-home-news-empty {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 22px;
  }

  .gw-home-video-item,
  .gw-home-video-item--featured {
    grid-column: auto;
    aspect-ratio: 16 / 9;
  }

  .gw-home-video-item__copy {
    padding: 22px;
  }

  .gw-home-video-item--featured .gw-home-video-item__copy strong {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gw-blog-card,
  .gw-home-resource-card,
  .gw-blog-card__image img,
  .gw-home-resource-card__image img,
  .gw-blog-featured__image img,
  .gw-home-company-feature__image img,
  .gw-home-company-rail__image img,
  .gw-home-news-feature__image img,
  .gw-home-news-rail__image img,
  .gw-home-video-item img,
  .gw-blog-button {
    transition: none !important;
  }
}
