.blog-page {
  --blog-navy-gradient: linear-gradient(180deg, #171d38 0%, #30385d 28%, #424b73 44%, #374067 60%, #202742 76%, #171d38 88%, #171d38 100%);
  background:
    var(--blog-navy-gradient),
    var(--leo-page-bg);
}

.blog-page main {
  color: var(--leo-navy);
}

.blog-article-shell {
  padding: 0;
}

.blog-hero-section {
  padding: clamp(24px, 3vw, 42px) var(--page-x);
  background: #1a2140;
  color: var(--leo-white);
}

.blog-article-container,
.blog-body-container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  color: var(--leo-yellow);
}

.blog-article-hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.blog-article-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  margin: 0;
  padding: 3px 9px;
  border: 1px solid rgba(253, 200, 94, 0.28);
  border-radius: 999px;
  background: rgba(253, 200, 94, 0.1);
  color: var(--leo-yellow);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.blog-article-hero h1 {
  max-width: 820px;
  margin: 0 auto 16px;
  color: var(--leo-white);
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 1.06;
}

.blog-article-description {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.45;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.blog-article-meta a {
  color: var(--leo-yellow);
  font-weight: 700;
  text-decoration: none;
}

.blog-body-section {
  padding: clamp(32px, 4vw, 54px) var(--page-x) clamp(74px, 8vw, 112px);
  background: var(--leo-ivory);
}

.blog-article-layout {
  display: grid;
  grid-template-columns: 268px minmax(0, 720px) 268px;
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
  justify-content: center;
}

.blog-toc,
.blog-side-cta {
  position: sticky;
  top: 94px;
}

.blog-toc {
  padding: 18px;
}

.blog-toc h2,
.blog-side-cta h2 {
  margin-bottom: 14px;
  color: var(--leo-navy);
  font-size: 14px;
  line-height: 1.25;
}

.blog-toc nav {
  display: grid;
  gap: 6px;
}

.blog-toc a {
  display: block;
  padding: 7px 9px;
  border-radius: 7px;
  color: rgba(19, 25, 51, 0.68);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition:
    background var(--leo-motion-micro) ease,
    color var(--leo-motion-micro) ease;
}

.blog-toc a:hover {
  color: var(--leo-navy);
}

.blog-toc a.is-active {
  background: rgba(253, 200, 94, 0.42);
  color: var(--leo-navy);
}

.blog-article-content {
  box-sizing: border-box;
  min-width: 0;
  max-width: 720px;
  padding: 8px clamp(34px, 4vw, 52px) clamp(34px, 4vw, 52px);
  border: 1px solid rgba(19, 25, 51, 0.08);
  border-radius: 8px;
  background: var(--leo-white);
  font-family: Charter, "Iowan Old Style", Georgia, "Times New Roman", serif;
  color: rgba(19, 25, 51, 0.82);
}

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

.blog-article-content h2,
.blog-article-content h3 {
  scroll-margin-top: 110px;
  color: var(--leo-navy);
  letter-spacing: 0;
  text-align: left;
}

.blog-article-content h2 {
  max-width: none;
  margin: 58px 0 18px;
  font-size: clamp(29px, 2.8vw, 38px);
  line-height: 1.14;
}

.blog-article-content h3 {
  margin: 36px 0 12px;
  font-size: clamp(23px, 2vw, 27px);
  line-height: 1.22;
}

.blog-article-content p,
.blog-article-content li {
  color: rgba(19, 25, 51, 0.82);
  font-size: 19px;
  line-height: 1.76;
}

.blog-article-content p {
  max-width: none;
  margin: 0 0 24px;
}

.blog-article-content ul,
.blog-article-content ol {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding-left: 1.35em;
}

.blog-article-content li::marker {
  color: var(--leo-yellow);
  font-weight: 700;
}

.blog-article-content a {
  color: var(--leo-navy);
  font-weight: 600;
  text-decoration-color: rgba(253, 200, 94, 0.9);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color var(--leo-motion-micro) ease, text-decoration-color var(--leo-motion-micro) ease;
}

.blog-article-content a:hover {
  color: #34406b;
  text-decoration-color: var(--leo-navy);
}

.blog-article-content strong {
  color: var(--leo-navy);
  font-weight: 700;
}

.blog-article-content blockquote {
  margin: 34px 0;
  padding: 4px 0 4px 22px;
  border-left: 4px solid var(--leo-yellow);
}

.blog-article-content blockquote p {
  margin-bottom: 0;
  color: rgba(19, 25, 51, 0.72);
  font-size: 21px;
  line-height: 1.58;
}

.blog-article-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 34px 0;
  border-radius: 8px;
}

.blog-article-content code {
  padding: 0.12em 0.28em;
  border-radius: 4px;
  background: rgba(19, 25, 51, 0.08);
  color: var(--leo-navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.88em;
}

.blog-article-content pre {
  overflow-x: auto;
  margin: 32px 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--leo-navy);
  color: var(--leo-white);
  font-size: 14px;
  line-height: 1.55;
}

.blog-article-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.blog-article-content table {
  width: 100%;
  margin: 34px 0;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--leo-navy);
  font-size: 15px;
  line-height: 1.45;
}

.blog-article-content th,
.blog-article-content td {
  padding: 14px 13px;
  border: 1px solid rgba(19, 25, 51, 0.12);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: normal;
}

.blog-article-content th {
  background: var(--leo-navy);
  color: var(--leo-white);
}

.blog-article-content td {
  background: rgba(255, 255, 255, 0.7);
  color: rgba(19, 25, 51, 0.78);
}

.blog-faq {
  max-width: 720px;
  margin-top: 48px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(19, 25, 51, 0.08);
  border-radius: 8px;
  background: var(--leo-white);
}

.blog-faq h2 {
  margin: 0 0 18px;
  color: var(--leo-navy);
  font-size: 24px;
}

.blog-faq details {
  padding: 18px 0;
  border-top: 1px solid rgba(19, 25, 51, 0.12);
}

.blog-faq summary {
  color: var(--leo-navy);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.blog-faq details p {
  margin: 12px 0 0;
  color: rgba(19, 25, 51, 0.72);
  font-size: 16px;
  line-height: 1.62;
}

.blog-author-box {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  max-width: 720px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(19, 25, 51, 0.08);
  border-radius: 8px;
  background: var(--leo-white);
}

.blog-author-box img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.blog-author-box h2 {
  margin: 0 0 8px;
  color: var(--leo-navy);
  font-size: 22px;
}

.blog-author-box p {
  margin: 0;
  color: rgba(19, 25, 51, 0.7);
  font-size: 15px;
}

.blog-author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.blog-author-links a {
  color: var(--leo-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration-color: rgba(253, 200, 94, 0.9);
  text-underline-offset: 4px;
}

.blog-related-posts {
  margin-top: clamp(42px, 5vw, 68px);
  padding: 0;
}

.blog-related-posts h2 {
  margin: 0 auto 18px;
  color: var(--leo-navy);
  font-size: 24px;
  text-align: center;
}

.blog-side-cta {
  box-sizing: border-box;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  padding: 28px 20px;
  border: 1px solid rgba(253, 200, 94, 0.24);
  border-radius: 8px;
  background:
    var(--blog-navy-gradient),
    var(--leo-navy);
  box-shadow: 0 18px 46px rgba(19, 25, 51, 0.2);
  overflow: hidden;
  text-align: center;
}

.blog-side-cta-avatar {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(253, 200, 94, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(253, 200, 94, 0.12);
}

.blog-side-cta h2 {
  max-width: 210px;
  margin: 0;
  color: var(--leo-white);
  font-size: 24px;
  line-height: 1.12;
}

.blog-side-cta-steps {
  display: grid;
  justify-items: stretch;
  gap: 8px;
  width: 100%;
}

.blog-side-cta-step {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(251, 247, 237, 0.1);
  border-radius: 8px;
  background: rgba(251, 247, 237, 0.06);
  text-align: left;
}

.blog-side-cta-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(253, 200, 94, 0.16);
  color: var(--leo-yellow);
}

.blog-side-cta-step svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-side-cta-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.3;
}

.blog-side-cta-arrow {
  color: rgba(253, 200, 94, 0.58);
  font-size: 15px;
  line-height: 1;
}

.blog-side-cta .button {
  width: 100%;
}

.blog-side-cta-note {
  margin: 0;
  color: rgba(251, 247, 237, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.blog-index-page {
  background:
    var(--blog-navy-gradient),
    var(--leo-page-bg);
}

.blog-category-page .blog-index-hero {
  padding-bottom: clamp(30px, 4vw, 46px);
}

.blog-category-page .blog-breadcrumb {
  justify-content: center;
  margin-bottom: 26px;
}

.blog-category-page .blog-index-section {
  padding-top: clamp(22px, 3vw, 38px);
}

.blog-category-hero {
  padding: clamp(46px, 5vw, 74px) var(--page-x) clamp(30px, 4vw, 46px);
  color: var(--leo-white);
}

.blog-category-hero-media {
  width: min(360px, 100%);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  border: 1px solid rgba(251, 247, 237, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(253, 200, 94, 0.18), transparent 58%),
    rgba(19, 25, 51, 0.5);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.blog-category-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.blog-category-hero-media picture,
.blog-category-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-category-page .blog-index-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.46;
}

.blog-index-hero {
  padding: clamp(46px, 5vw, 74px) var(--page-x) clamp(18px, 3vw, 34px);
  color: var(--leo-white);
}

.blog-index-hero .section-content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.blog-index-avatar {
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
  border: 2px solid rgba(253, 200, 94, 0.55);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.blog-index-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--leo-white);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.04;
}

.blog-index-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--leo-white);
  font-size: clamp(23px, 2.8vw, 34px);
  line-height: 1.34;
}

.blog-index-section {
  padding: clamp(18px, 3vw, 34px) var(--page-x) clamp(76px, 8vw, 112px);
}

.blog-index-section .section-content {
  max-width: 1180px;
}

.blog-index-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.blog-index-heading h2 {
  margin: 0;
  color: var(--leo-white);
  font-size: clamp(24px, 2.5vw, 34px);
}

.blog-index-heading p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.blog-category-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(251, 247, 237, 0.12);
  border-radius: 8px;
  background: var(--leo-navy);
  color: var(--leo-white);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  transition:
    transform var(--leo-motion-micro) var(--leo-ease-snap),
    border-color var(--leo-motion-micro) ease,
    background var(--leo-motion-micro) ease;
}

.blog-category-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: -8px -8px 22px;
  border: 1px solid rgba(251, 247, 237, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(253, 200, 94, 0.18), transparent 58%),
    rgba(19, 25, 51, 0.5);
}

.blog-category-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 320ms var(--leo-ease-snap), opacity 320ms ease;
}

.blog-category-card:hover .blog-category-media img {
  opacity: 0.95;
  transform: scale(1.025);
}

.blog-category-card:hover {
  border-color: rgba(253, 200, 94, 0.5);
  background: #171e3d;
  transform: translateY(-2px);
}

.blog-category-card h3 {
  margin-bottom: 12px;
  color: var(--leo-white);
  font-size: 24px;
}

.blog-category-card p {
  max-width: none;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.blog-category-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: fit-content;
  min-height: var(--button-height);
  margin-top: auto;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--leo-yellow);
  color: var(--leo-navy);
  box-shadow: var(--leo-shadow-cta);
  font-size: var(--text-md);
  font-weight: 700;
  line-height: 1;
}

.blog-recent-list {
  display: grid;
  gap: 14px;
}

.blog-reveal-ready [data-blog-hidden="true"] {
  display: none;
}

.blog-recent-card {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(251, 247, 237, 0.13);
  border-radius: 8px;
  background: var(--leo-navy);
  color: var(--leo-white);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  transition:
    transform var(--leo-motion-micro) var(--leo-ease-snap),
    box-shadow var(--leo-motion-card) ease,
    border-color var(--leo-motion-micro) ease,
    background var(--leo-motion-micro) ease;
}

.blog-recent-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: rgba(251, 247, 237, 0.055);
}

.blog-recent-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.blog-recent-media:has(img)::before,
.blog-recent-media:has(img)::after {
  display: none;
}

.blog-recent-media::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 30px;
  border: 2px solid rgba(251, 247, 237, 0.28);
  border-radius: 6px;
  transform: translate(-50%, -50%);
}

.blog-recent-media::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% + 2px);
  width: 14px;
  height: 10px;
  border-right: 2px solid rgba(251, 247, 237, 0.28);
  border-bottom: 2px solid rgba(251, 247, 237, 0.28);
  transform: translate(-50%, -50%) rotate(45deg);
}

.blog-recent-card:hover {
  border-color: rgba(253, 200, 94, 0.5);
  background: #171e3d;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.blog-recent-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(253, 200, 94, 0.13);
  color: var(--leo-yellow);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-2px);
}

.blog-recent-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.blog-recent-card h3 {
  margin: 0 0 10px;
  color: var(--leo-white);
  font-size: clamp(22px, 2.5vw, 30px);
}

.blog-recent-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.blog-reveal-controls {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 26px;
}

.blog-reveal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(253, 200, 94, 0.36);
  border-radius: 8px;
  background: rgba(19, 25, 51, 0.86);
  color: var(--leo-white);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--leo-motion-micro) var(--leo-ease-snap),
    border-color var(--leo-motion-micro) ease,
    background var(--leo-motion-micro) ease;
}

.blog-reveal-button:hover {
  border-color: rgba(253, 200, 94, 0.72);
  background: var(--leo-navy);
  transform: translateY(-1px);
}

.blog-reveal-button[hidden],
.blog-reveal-sentinel[hidden] {
  display: none;
}

.blog-reveal-sentinel {
  width: 100%;
  height: 1px;
}

@media (max-width: 1180px) {
  .blog-article-layout {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
  }

  .blog-toc,
  .blog-side-cta {
    display: none;
  }
}

@media (max-width: 920px) {
  .blog-article-layout {
    grid-template-columns: minmax(0, 760px);
  }

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

  .blog-recent-card {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .blog-index-heading {
    display: grid;
  }
}

@media (max-width: 720px) {
  .blog-hero-section,
  .blog-body-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .blog-breadcrumb {
    justify-content: flex-start;
  }

  .blog-page:not(.blog-index-page) .blog-breadcrumb {
    justify-content: center;
    text-align: center;
  }

  .blog-article-hero,
  .blog-article-hero h1,
  .blog-article-description {
    text-align: center;
  }

  .blog-article-hero {
    justify-items: center;
  }

  .blog-article-meta {
    justify-content: center;
  }

  .blog-article-content p,
  .blog-article-content li {
    font-size: 17px;
  }

  .blog-article-content,
  .blog-article-content p,
  .blog-article-content li,
  .blog-faq,
  .blog-faq h2 {
    text-align: left;
  }


  .blog-author-box {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .blog-author-links {
    justify-content: center;
  }

  .blog-index-hero .section-content,
  .blog-index-hero h1 {
    text-align: left;
  }

  .blog-index-hero .section-content {
    justify-items: start;
  }

  .blog-index-page:not(.blog-category-page) .blog-index-hero .section-content,
  .blog-index-page:not(.blog-category-page) .blog-index-hero h1,
  .blog-index-page:not(.blog-category-page) .blog-index-hero p,
  .blog-index-page:not(.blog-category-page) .blog-index-heading {
    text-align: center;
  }

  .blog-index-page:not(.blog-category-page) .blog-index-hero .section-content,
  .blog-index-page:not(.blog-category-page) .blog-index-heading {
    justify-content: center;
    justify-items: center;
  }

  .blog-index-page:not(.blog-category-page) .blog-index-heading > div {
    justify-self: stretch;
    text-align: center;
  }

  .blog-index-page:not(.blog-category-page) .blog-category-card {
    align-items: center;
    text-align: center;
  }

  .blog-index-page:not(.blog-category-page) .blog-category-card span {
    align-self: center;
  }

  .blog-index-page:not(.blog-category-page) .blog-recent-card {
    justify-items: center;
    text-align: center;
  }

  .blog-index-page:not(.blog-category-page) .blog-recent-meta {
    justify-content: center;
  }

  .blog-category-page .blog-breadcrumb,
  .blog-category-page .blog-index-hero .section-content,
  .blog-category-page .blog-index-hero h1,
  .blog-category-page .blog-index-hero p,
  .blog-category-page .blog-index-heading {
    text-align: center;
  }

  .blog-category-page .blog-breadcrumb,
  .blog-category-page .blog-index-hero .section-content,
  .blog-category-page .blog-index-heading {
    justify-content: center;
    justify-items: center;
  }

  .blog-category-page .blog-index-heading > div {
    justify-self: stretch;
    text-align: center;
  }

  .blog-category-page .blog-recent-card {
    justify-items: center;
    text-align: center;
  }

  .blog-category-page .blog-recent-meta {
    justify-content: center;
  }

  .blog-recent-card {
    grid-template-columns: 1fr;
  }

  .blog-recent-media {
    max-width: none;
  }

}
