body.landing-home.blog-page {
  min-height: 100vh;
  color: #f3f5ef;
  background: #030504;
  background-image: none;
  background-attachment: scroll;
}

.blog-shell,
.blog-post-shell {
  box-sizing: border-box;
  width: min(100%, var(--ck-landing-max, 1600px));
  margin: 0 auto;
  padding: clamp(82px, 8vw, 120px) clamp(24px, 7vw, 112px) 112px;
  background:
    radial-gradient(circle at 88% 4%, rgba(209, 177, 80, .1), transparent 30%),
    radial-gradient(circle at 8% 42%, rgba(29, 128, 79, .12), transparent 34%),
    linear-gradient(180deg, #0b120e 0%, #070a08 100%);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .42);
}

.blog-shell > .blog-hero,
.blog-shell > .blog-grid,
.blog-shell > .blog-empty {
  width: min(1040px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.blog-post-shell > article {
  width: min(920px, 100%);
  margin: 0 auto;
}

.blog-hero {
  display: block;
  max-width: none;
  margin-bottom: 48px;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.blog-page .blog-hero .hero-kicker {
  color: rgba(217, 220, 210, .7);
}

.blog-page .blog-hero .hero-kicker i {
  background: #21895d;
  box-shadow: 0 0 0 5px rgba(33, 137, 93, .13), 0 0 18px rgba(33, 137, 93, .35);
}

.blog-hero h1,
.blog-post-header h1 {
  margin: 16px 0 20px;
  color: #f6f4e9;
  font-family: Oswald, sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .92;
  text-transform: uppercase;
}

.blog-hero h1 {
  width: 100%;
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 6.8vw, 6.4rem);
}

.blog-hero > p,
.blog-post-header > p {
  max-width: 760px;
  margin: 0;
  color: rgba(235, 239, 230, .68);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.blog-hero > p {
  margin-bottom: 0;
}

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

.blog-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.blog-grid-single .blog-card {
  background:
    radial-gradient(circle at 92% 18%, rgba(209, 177, 80, .09), transparent 34%),
    rgba(255, 255, 255, .045);
}

.blog-grid-single .blog-card-link:has(.blog-card-image) {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.blog-grid-single .blog-card-image {
  min-height: 320px;
  aspect-ratio: auto;
}

.blog-grid-single .blog-card-body {
  align-self: center;
  padding: clamp(36px, 5vw, 56px);
}

.blog-grid-single .blog-card-title {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.5vw, 3.7rem);
}

.blog-grid-single .blog-card-summary {
  max-width: 720px;
}

.home-blog-section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 88px);
  color: #f3f5ef;
  background:
    radial-gradient(circle at 88% 12%, rgba(209, 177, 80, .1), transparent 30%),
    radial-gradient(circle at 10% 70%, rgba(29, 128, 79, .12), transparent 34%),
    linear-gradient(180deg, #0b120e 0%, #070a08 100%);
}

.home-blog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.home-blog-heading h2 {
  margin: 8px 0 0;
  color: #f6f4e9;
  font-family: Oswald, sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: .95;
  text-transform: uppercase;
}

.home-blog-heading + .blog-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.home-blog-section .blog-grid:has(.blog-card:nth-child(3)) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-blog-section .blog-card-title {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.blog-card,
.blog-empty {
  overflow: hidden;
  color: #f3f5ef;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
}

.blog-card {
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(91, 213, 154, .52);
  background-color: rgba(91, 213, 154, .07);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38), 0 0 0 1px rgba(91, 213, 154, .12);
}

.blog-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.blog-card,
.blog-card-link,
.blog-card-link * {
  cursor: pointer;
}

.blog-card-link:focus-visible {
  outline: 3px solid #5bd59a;
  outline-offset: -5px;
  border-radius: 20px;
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a2018;
}

.blog-card-image img,
.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-image img {
  transition: transform .35s ease, filter .35s ease;
}

.blog-card:hover .blog-card-image img,
.blog-card:focus-within .blog-card-image img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.blog-card-body {
  display: block;
  padding: 30px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(214, 191, 121, .78);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.blog-card-title {
  display: block;
  margin: 14px 0 12px;
  font-family: Oswald, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.02;
}

.blog-card-summary {
  display: block;
  margin: 0 0 24px;
  color: rgba(235, 239, 230, .64);
  line-height: 1.65;
}

.blog-read-more,
.blog-back {
  color: #5bd59a;
  font-weight: 850;
  text-decoration: none;
}

.blog-read-more {
  display: inline-block;
}

.blog-read-more [aria-hidden="true"] {
  display: inline-block;
  transition: transform .24s ease;
}

.blog-card:hover .blog-read-more [aria-hidden="true"],
.blog-card:focus-within .blog-read-more [aria-hidden="true"] {
  transform: translateX(6px);
}

.blog-empty {
  padding: 48px;
}

.blog-empty h2 {
  margin-top: 0;
  font-family: Oswald, sans-serif;
  font-size: 2.3rem;
}

.blog-post-shell {
  min-height: calc(100vh - 96px);
}

.blog-post-header {
  margin-bottom: 54px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.blog-post-header .blog-meta {
  margin-top: 32px;
}

.blog-post-header h1 {
  max-width: 860px;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.blog-featured-image {
  aspect-ratio: 16 / 9;
  margin: 0 0 52px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
}

.blog-post-content {
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgba(235, 239, 230, .76);
  font-size: 1.08rem;
  line-height: 1.85;
}

.blog-post-content > :first-child {
  margin-top: 0;
}

.blog-post-content h2,
.blog-post-content h3 {
  margin: 2.2em 0 .65em;
  color: #f6f4e9;
  font-family: Oswald, sans-serif;
  line-height: 1.05;
}

.blog-post-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.blog-post-content h3 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.blog-post-content p,
.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 1.35em;
}

.blog-post-content a {
  color: #5bd59a;
  font-weight: 750;
}

.blog-post-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2.2em auto;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.blog-post-content blockquote {
  margin: 2em 0;
  padding: 4px 0 4px 24px;
  color: rgba(243, 245, 239, .82);
  border-left: 4px solid #2ebf80;
  font-size: 1.2rem;
  font-weight: 650;
}

@media (max-width: 760px) {
  .blog-grid,
  .home-blog-section .blog-grid:has(.blog-card:nth-child(3)) {
    grid-template-columns: 1fr;
  }

  .blog-shell,
  .blog-post-shell {
    width: 100%;
    padding: 64px 20px 84px;
  }

  .blog-card-body {
    padding: 24px;
  }

  .blog-featured-image {
    border-radius: 18px;
  }

  .home-blog-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .blog-hero {
    padding-bottom: 44px;
  }

  .blog-grid-single .blog-card-link:has(.blog-card-image) {
    display: block;
  }

  .blog-grid-single .blog-card-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blog-card-image img,
  .blog-read-more [aria-hidden="true"] {
    transition: none;
  }
}
