.blog-page {
  background-color: #050505;
  color: #fff;
}

.blog-page .page-wrap {
  background:
    radial-gradient(circle at top left, rgba(239, 64, 70, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    #050505;
}

.blog-page .section {
  position: relative;
}

.blog-page .container-wide {
  width: min(1320px, calc(100vw - 48px));
  margin-left: auto;
  margin-right: auto;
}

.blog-page .blog-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Oswald, sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-page .blog-label::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4046, #f7a35c);
  box-shadow: 0 0 24px rgba(239, 64, 70, 0.45);
}

.blog-page .blog-chip-row,
.blog-page .blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-page .blog-chip,
.blog-page .blog-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.2;
}

.blog-page .blog-chip strong,
.blog-page .blog-meta-pill strong {
  color: #fff;
}

.blog-page .blog-hub-hero {
  padding: 40px 0;
}

.blog-page .blog-hub-shell {
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.blog-page .blog-hub-copy,
.blog-page .blog-feature-card,
.blog-page .blog-post-card,
.blog-page .blog-overview-card,
.blog-page .blog-article-shell,
.blog-page .blog-related-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.blog-page .blog-hub-copy {
  padding: 48px;
  border-radius: 34px;
}

.blog-page .blog-hub-title,
.blog-page .blog-page-title {
  margin: 0;
  font-family: Oswald, sans-serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.blog-page .blog-hub-title {
  font-size: clamp(30px, 4.4vw, 58px);
}

.blog-page .blog-page-title {
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.06;
}

.blog-page .blog-hub-title .title-section-blue,
.blog-page .blog-page-title .title-section-blue {
  display: inline-block;
}

.blog-page .blog-page-title .title-section-blue {
  font-size: 1em;
  line-height: inherit;
}

.blog-page .blog-hub-summary,
.blog-page .blog-page-summary {
  max-width: 62ch;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.6;
}

.blog-page .blog-feature-card,
.blog-page .blog-post-card,
.blog-page .blog-related-card {
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.blog-page .blog-feature-card:hover,
.blog-page .blog-post-card:hover,
.blog-page .blog-related-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 64, 70, 0.45);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.34);
}

.blog-page .blog-feature-card {
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
}

.blog-page .blog-card-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.blog-page .blog-card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.04) 20%, rgba(5, 5, 5, 0.74) 100%);
}

.blog-page .blog-card-image,
.blog-page .blog-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-page .blog-card-body {
  padding: 28px;
}

.blog-page .blog-card-eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-family: Oswald, sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-page .blog-card-title {
  margin: 0 0 12px;
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: clamp(24px, 2.4vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.blog-page .blog-feature-card .blog-card-title {
  font-size: clamp(26px, 2.7vw, 46px);
}

.blog-page .blog-card-summary {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.65;
}

.blog-page .blog-link-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-page .blog-link-line::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.blog-page .blog-feed-section,
.blog-page .blog-related-section {
  padding: 0 0 88px;
}

.blog-page .blog-feed-header,
.blog-page .blog-related-header {
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.blog-page .blog-feed-header p,
.blog-page .blog-related-header p {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.blog-page .blog-section-title {
  margin: 0;
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.blog-page .blog-grid {
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-page .blog-post-card {
  display: grid;
  grid-template-rows: 240px auto;
}

.blog-page .blog-post-card .blog-card-title {
  font-size: clamp(22px, 2vw, 34px);
}

.blog-page .blog-spotlight {
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto 88px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(239, 64, 70, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(239, 64, 70, 0.22);
}

.blog-page .blog-spotlight p {
  max-width: 72ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.blog-page .blog-detail-hero {
  padding: 40px 0;
}

.blog-page .blog-hero-shell {
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 26px;
  align-items: stretch;
}

.blog-page .blog-hero-copy,
.blog-page .blog-hero-media {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.blog-page .blog-hero-copy {
  padding: 42px;
}

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

.blog-page .blog-overview-grid {
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.blog-page .blog-overview-card {
  border-radius: 28px;
  padding: 32px;
}

.blog-page .blog-overview-card.light {
  background: #f7f7f7;
  color: #111;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.06);
  backdrop-filter: none;
}

.blog-page .blog-overview-card.light .title-section,
.blog-page .blog-overview-card.light .heading-6,
.blog-page .blog-overview-card.light p {
  color: #111;
}

.blog-page .blog-overview-card.light .title-section {
  max-width: 15ch;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.blog-page .blog-overview-card.light .title-section-blue {
  color: var(--blue);
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.blog-page .blog-overview-card.light p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

.blog-page .blog-side-meta {
  display: grid;
  gap: 14px;
}

.blog-page .blog-side-meta-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-page .blog-side-meta-label {
  margin-bottom: 8px;
  color: #6c6c6c;
  font-family: Oswald, sans-serif;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.blog-page .blog-side-meta-value {
  color: #111;
  font-size: 16px;
  line-height: 1.55;
}

.blog-page .blog-article-section {
  padding: 40px 0 88px;
}

.blog-page .blog-article-shell {
  width: min(1140px, calc(100vw - 48px));
  margin: 0 auto;
  border-radius: 34px;
  padding: 42px;
}

.blog-page .blog-richtext {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.78;
}

.blog-page .blog-richtext > :first-child {
  margin-top: 0;
}

.blog-page .blog-richtext h2,
.blog-page .blog-richtext h3 {
  margin-top: 42px;
  margin-bottom: 12px;
  color: #fff;
  font-family: Oswald, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: left;
  text-transform: uppercase;
}

.blog-page .blog-richtext h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.blog-page .blog-richtext h3 {
  font-size: clamp(20px, 2.4vw, 28px);
}

.blog-page .blog-richtext p {
  margin: 0 0 16px;
}

.blog-page .blog-richtext ul,
.blog-page .blog-richtext ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.blog-page .blog-richtext li {
  margin-bottom: 8px;
}

.blog-page .blog-richtext strong {
  color: #fff;
}

.blog-page .blog-callout {
  margin: 30px 0;
  padding: 24px;
  border-left: 3px solid #ef4046;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(239, 64, 70, 0.16), rgba(255, 255, 255, 0.04));
}

.blog-page .blog-callout p:last-child {
  margin-bottom: 0;
}

.blog-page .blog-table-wrap {
  margin: 24px 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-page .blog-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
}

.blog-page .blog-table th,
.blog-page .blog-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.blog-page .blog-table th {
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.blog-page .blog-related-grid {
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-page .blog-related-card {
  display: grid;
  grid-template-rows: 220px auto;
}

.blog-page .blog-related-card .blog-card-title {
  font-size: clamp(20px, 2vw, 34px);
}

.blog-page .blog-cta-box {
  width: min(1140px, calc(100vw - 48px));
  margin: 0 auto 88px;
  padding: 30px 32px;
  border-radius: 26px;
  border: 1px solid rgba(239, 64, 70, 0.24);
  background: linear-gradient(135deg, rgba(239, 64, 70, 0.12), rgba(255, 255, 255, 0.03));
}

.blog-page .blog-cta-box p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

@media screen and (max-width: 991px) {
  .blog-page .blog-hub-shell,
  .blog-page .blog-hero-shell,
  .blog-page .blog-overview-grid,
  .blog-page .blog-grid,
  .blog-page .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-page .blog-hub-copy,
  .blog-page .blog-hero-copy,
  .blog-page .blog-overview-card,
  .blog-page .blog-article-shell {
    padding: 28px;
  }

  .blog-page .blog-feed-header,
  .blog-page .blog-related-header {
    display: block;
  }

  .blog-page .blog-feed-header p,
  .blog-page .blog-related-header p {
    margin-top: 10px;
  }

  .blog-page .blog-hero-media {
    min-height: 360px;
  }
}

@media screen and (max-width: 767px) {
  .blog-page .blog-hub-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .blog-page .blog-detail-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .blog-page .container-wide,
  .blog-page .blog-hub-shell,
  .blog-page .blog-feed-header,
  .blog-page .blog-grid,
  .blog-page .blog-spotlight,
  .blog-page .blog-hero-shell,
  .blog-page .blog-overview-grid,
  .blog-page .blog-article-shell,
  .blog-page .blog-related-header,
  .blog-page .blog-related-grid,
  .blog-page .blog-cta-box {
    width: calc(100vw - 28px);
  }

  .blog-page .blog-hub-copy,
  .blog-page .blog-card-body,
  .blog-page .blog-overview-card,
  .blog-page .blog-article-shell,
  .blog-page .blog-cta-box {
    padding: 22px;
  }

  .blog-page .blog-card-summary,
  .blog-page .blog-richtext,
  .blog-page .blog-cta-box p {
    font-size: 16px;
  }

  .blog-page .blog-hero-media {
    min-height: 280px;
  }

  .blog-page .blog-table-wrap {
    overflow-x: auto;
  }

  .blog-page .blog-table {
    min-width: 620px;
  }
}
