.blog-page {
  --blog-accent: #d9ef74;
  --blog-mint: #77d4c3;
  --blog-violet: #b4a0ed;
  --blog-surface: #1c1d1f;
  --blog-border: rgba(255, 255, 255, 0.1);
  --blog-muted: rgba(242, 242, 238, 0.64);
}

.blog-category-content {
  padding: 0 0 100px;
}

.blog-category-hero-description {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted-color, #8b91a7);
  line-height: 2;
}

.blog-category-content__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.blog-category-content__header h2 {
  margin: 10px 0 12px;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.25;
}

.blog-category-content__header p {
  color: var(--muted-color, #8b91a7);
  line-height: 2;
}

.blog-category-content__body {
  max-width: 900px;
  padding: 28px;
  border: 1px solid rgba(64, 81, 137, .18);
  border-radius: 24px;
  background: rgba(64, 81, 137, .05);
  color: var(--text-color, #202334);
  line-height: 2.2;
  white-space: pre-line;
}

.blog-category-content--encyclopedia .blog-category-content__body {
  border-radius: 8px;
  border-inline-start: 4px solid #405189;
}

.blog-category-intro {
  max-width: 900px;
  margin: -8px 0 28px;
  padding: 18px 22px;
  border-inline-start: 3px solid #405189;
  border-radius: 8px;
  background: rgba(64, 81, 137, .05);
  line-height: 2.1;
  white-space: pre-line;
}

.blog-library--encyclopedia .blog-post-grid {
  grid-template-columns: 1fr;
}

.blog-library--encyclopedia .blog-post-card--wide {
  grid-column: auto;
}

.blog-library--timeline .blog-post-grid {
  grid-template-columns: 1fr;
}

.blog-page main,
.blog-page footer {
  overflow-x: clip;
}

.blog-page main {
  background: #161616;
  font-family: Vazirmatn, sans-serif;
}

.blog-featured,
.blog-library,
.blog-closing {
  position: relative;
  padding: 120px 0;
}

.blog-section-kicker,
.blog-widget__eyebrow {
  color: var(--blog-accent);
  font-size: 12px;
  font-weight: 500;
}

.blog-featured__heading h1 span,
.blog-library__heading h2 span {
  background: linear-gradient(90deg, var(--blog-accent), var(--blog-mint));
  background-clip: text;
  color: transparent;
}

.blog-button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--blog-border);
  border-radius: 999px;
  font-size: 13px;
  transition: 0.3s ease;
}

.blog-button:hover {
  color: inherit;
  transform: translateY(-3px);
}

.blog-button--primary {
  border-color: var(--blog-accent);
  background: var(--blog-accent);
  color: #171717;
}

.blog-button--secondary {
  background: rgba(255, 255, 255, 0.04);
}

.blog-button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.blog-featured {
  padding-top: 142px;
  padding-bottom: 76px;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--blog-muted);
  font-size: 11px;
}

.blog-post-meta span:first-child {
  color: var(--blog-mint);
}

.blog-post-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentcolor;
}

.blog-featured__heading {
  display: flex;
  margin-bottom: 28px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.blog-featured__heading h1 {
  margin: 10px 0 0;
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.blog-text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  align-items: center;
  gap: 10px;
  color: var(--blog-accent);
  font-size: 13px;
}

.blog-featured__heading .blog-text-link {
  margin-top: 0;
}

.blog-featured__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 176px;
  gap: 14px;
}

.blog-featured-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #232323;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.blog-featured-tile > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}

.blog-featured-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.blog-featured-tile:hover img {
  transform: scale(1.06);
}

.blog-featured-tile__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.02) 18%, rgba(10, 10, 10, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.35), transparent 68%);
  transition: background 0.3s ease;
}

.blog-featured-tile:hover .blog-featured-tile__overlay {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.05) 14%, rgba(10, 10, 10, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.45), transparent 75%);
}

.blog-featured-tile__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 18px;
}

.blog-featured-tile .blog-post-meta {
  color: rgba(255, 255, 255, 0.68);
}

.blog-featured-tile .blog-post-meta span:first-child {
  color: var(--blog-accent);
}

.blog-featured-tile h2 {
  display: -webkit-box;
  margin: 10px 0 0;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-featured-tile__footer {
  display: flex;
  margin-top: 12px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
}

.blog-featured-tile__footer i {
  color: var(--blog-accent);
  font-size: 11px;
}

.blog-featured-tile--1 {
  grid-column: span 2;
  grid-row: span 2;
}

.blog-featured-tile--1 h2 {
  font-size: clamp(20px, 2.25vw, 28px);
  line-height: 1.52;
  -webkit-line-clamp: 3;
}

.blog-featured-tile--1 .blog-featured-tile__content {
  padding: 26px;
}

.blog-featured-tile--2,
.blog-featured-tile--6 {
  grid-row: span 2;
}

.blog-featured-tile--5 {
  grid-column: span 2;
  grid-row: span 2;
}

.blog-featured-tile--5 h2 {
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.52;
  -webkit-line-clamp: 3;
}

.blog-library {
  padding-top: 150px;
  background: linear-gradient(180deg, #161616, #1a1a1a 54%, #161616);
}

.blog-library__heading {
  display: flex;
  margin-bottom: 44px;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.blog-library__heading h2 {
  margin: 14px 0 0;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.blog-library__heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--blog-muted);
  font-size: 15px;
  line-height: 2;
}

.blog-library__tools {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.blog-library__tools p {
  margin: 0;
  color: var(--blog-muted);
  font-size: 12px;
}

.blog-library__tools p strong {
  color: var(--blog-accent);
  font-weight: 500;
}

.blog-search {
  display: flex;
  width: min(100%, 570px);
  min-height: 54px;
  padding: 0 16px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--blog-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  transition: 0.25s ease;
}

.blog-search:focus-within {
  border-color: rgba(217, 239, 116, 0.5);
  box-shadow: 0 0 0 4px rgba(217, 239, 116, 0.06);
}

.blog-search i {
  color: var(--blog-muted);
  font-size: 13px;
}

.blog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 13px;
}

.blog-search input::placeholder {
  color: rgba(242, 242, 238, 0.38);
}

.blog-search kbd {
  min-width: 22px;
  padding: 2px 5px;
  border: 1px solid var(--blog-border);
  border-radius: 5px;
  color: var(--blog-muted);
  direction: ltr;
  font-family: inherit;
  font-size: 10px;
  text-align: center;
}

.blog-category-scroll {
  display: flex;
  margin: 0 -4px 48px;
  padding: 4px;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.blog-category {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 9px 12px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--blog-border);
  border-radius: 999px;
  background: transparent;
  color: var(--blog-muted);
  font-size: 12px;
  transition: 0.25s ease;
}

.blog-category:hover,
.blog-category.is-active {
  border-color: rgba(217, 239, 116, 0.38);
  background: rgba(217, 239, 116, 0.1);
  color: var(--blog-accent);
}

.blog-category small {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: inherit;
  font-size: 9px;
}

.blog-library__layout {
  row-gap: 48px;
}

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

.blog-post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--blog-border);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-post-card:hover {
  border-color: rgba(119, 212, 195, 0.4);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.blog-post-card:hover img {
  transform: scale(1.055);
}

.blog-post-card.is-hidden {
  display: none;
}

.blog-post-card__image {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
}

.blog-post-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.52), transparent 54%);
  content: "";
}

.blog-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-post-card__image span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.54);
  backdrop-filter: blur(8px);
  font-size: 10px;
}

.blog-post-card__content {
  padding: 24px;
}

.blog-post-card h3 {
  margin: 16px 0 12px;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.72;
}

.blog-post-card h3 a:hover {
  color: var(--blog-accent);
}

.blog-post-card__content > p {
  margin: 0;
  color: var(--blog-muted);
  font-size: 13px;
  line-height: 1.95;
}

.blog-post-card__labels {
  display: flex;
  margin-top: 18px;
  flex-wrap: wrap;
  gap: 7px;
}

.blog-post-card__labels span {
  padding: 5px 8px;
  border: 1px solid var(--blog-border);
  border-radius: 999px;
  color: rgba(242, 242, 238, 0.58);
  font-size: 9px;
}

.blog-post-card__labels span:first-child {
  border-color: rgba(119, 212, 195, 0.22);
  background: rgba(119, 212, 195, 0.07);
  color: var(--blog-mint);
}

.blog-post-card__footer {
  display: flex;
  margin-top: 18px;
  padding-top: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post-card__footer > div {
  display: grid;
  gap: 2px;
}

.blog-post-card__footer strong {
  color: rgba(242, 242, 238, 0.66);
  font-size: 10px;
  font-weight: 500;
}

.blog-post-card__footer small {
  color: rgba(242, 242, 238, 0.4);
  font-size: 9px;
}

.blog-post-card__footer > a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--blog-border);
  border-radius: 50%;
  color: var(--blog-accent);
  font-size: 11px;
  transition: 0.25s ease;
}

.blog-post-card__footer > a:hover {
  border-color: rgba(217, 239, 116, 0.5);
  background: rgba(217, 239, 116, 0.08);
  transform: translateX(-2px);
}

.blog-post-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.83fr 1fr;
}

.blog-post-card--wide .blog-post-card__image {
  height: auto;
  min-height: 290px;
}

.blog-empty-state {
  padding: 80px 28px;
  border: 1px dashed var(--blog-border);
  border-radius: 22px;
  text-align: center;
}

.blog-empty-state i {
  color: var(--blog-accent);
  font-size: 34px;
}

.blog-empty-state h3 {
  margin: 20px 0 8px;
  font-size: 22px;
}

.blog-empty-state p {
  color: var(--blog-muted);
}

.blog-empty-state button {
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--blog-mint);
  font-size: 13px;
}

.blog-sidebar__sticky {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 16px;
}

.blog-widget {
  padding: 25px;
  border: 1px solid var(--blog-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.blog-widget h3 {
  margin: 9px 0 18px;
  font-size: 18px;
  font-weight: 500;
}

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

.blog-widget--toc a {
  padding-right: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--blog-muted);
  font-size: 12px;
  transition: 0.2s ease;
}

.blog-widget--toc a:hover,
.blog-widget--toc a.is-current {
  border-color: var(--blog-accent);
  color: var(--blog-accent);
}

.blog-widget--newsletter {
  border-color: rgba(119, 212, 195, 0.28);
  background:
    radial-gradient(circle at 100% 0, rgba(119, 212, 195, 0.16), transparent 50%),
    rgba(255, 255, 255, 0.025);
}

.blog-widget--newsletter > span {
  color: var(--blog-mint);
  font-size: 11px;
}

.blog-widget--newsletter h3 {
  max-width: 240px;
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.55;
}

.blog-widget--newsletter p {
  color: var(--blog-muted);
  font-size: 12px;
  line-height: 1.9;
}

.blog-reader-stack {
  display: flex;
  margin-top: 17px;
  align-items: center;
  gap: 10px;
}

.blog-reader-stack > div {
  display: flex;
  direction: ltr;
}

.blog-reader-stack img {
  width: 24px;
  height: 24px;
  margin-left: -7px;
  border: 2px solid #242526;
  border-radius: 50%;
  object-fit: cover;
}

.blog-reader-stack span {
  color: rgba(242, 242, 238, 0.62);
  font-size: 10px;
}

.blog-widget--newsletter .blog-button {
  width: 100%;
  margin-top: 12px;
}

.blog-popular-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.blog-popular-list li {
  display: flex;
}

.blog-popular-list li > span {
  color: var(--blog-accent);
  direction: ltr;
  font-family: monospace;
  font-size: 11px;
}

.blog-popular-list img {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  object-fit: cover;
}

.blog-popular-list strong,
.blog-popular-list small {
  display: block;
}

.blog-popular-list strong {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
}

.blog-popular-list a:hover strong {
  color: var(--blog-accent);
}

.blog-popular-list small {
  margin-top: 4px;
  color: var(--blog-muted);
  font-size: 10px;
}

.blog-topic-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 7px;
  list-style: none;
}

.blog-topic-list button {
  display: flex;
  width: 100%;
  padding: 7px 0;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--blog-muted);
  font-size: 12px;
  text-align: right;
}

.blog-topic-list button > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.blog-topic-list i {
  width: 14px;
  color: var(--blog-mint);
  font-size: 11px;
  text-align: center;
}

.blog-topic-list button:hover {
  color: var(--blog-accent);
}

.blog-topic-list small {
  color: inherit;
  font-size: 10px;
}

.blog-series-list {
  display: grid;
  gap: 10px;
}

.blog-series-list a {
  display: flex;
  min-height: 52px;
  padding: 8px 11px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--blog-border);
  border-radius: 10px;
  color: var(--blog-muted);
  font-size: 11px;
}

.blog-series-list a:hover {
  border-color: rgba(180, 160, 237, 0.5);
  color: var(--blog-violet);
}

.blog-series-list i {
  width: 15px;
  color: var(--blog-violet);
  text-align: center;
}

.blog-series-list span,
.blog-series-list strong,
.blog-series-list small {
  display: block;
}

.blog-series-list strong {
  color: inherit;
  font-size: 10px;
  font-weight: 500;
}

.blog-series-list small {
  margin-top: 2px;
  color: rgba(242, 242, 238, 0.44);
  font-size: 9px;
}

.blog-widget--reading-pick {
  padding: 14px;
}

.blog-widget--reading-pick > .blog-widget__eyebrow {
  display: block;
  padding: 11px 11px 0;
}

.blog-reading-pick {
  display: grid;
  grid-template-columns: 82px 1fr;
  margin-top: 10px;
  align-items: center;
  gap: 12px;
}

.blog-reading-pick > img {
  width: 82px;
  height: 102px;
  border-radius: 13px;
  object-fit: cover;
}

.blog-reading-pick small {
  color: var(--blog-mint);
  font-size: 9px;
}

.blog-reading-pick h3 {
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.55;
}

.blog-reading-pick p {
  margin: 0;
  color: var(--blog-muted);
  font-size: 10px;
  line-height: 1.7;
}

.blog-reading-pick a {
  display: inline-flex;
  margin-top: 8px;
  align-items: center;
  gap: 6px;
  color: var(--blog-accent);
  font-size: 10px;
}

.blog-widget--author {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
}

.blog-widget--author > img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
}

.blog-widget--author span {
  color: var(--blog-muted);
  font-size: 10px;
}

.blog-widget--author h3 {
  margin: 3px 0 6px;
  font-size: 15px;
}

.blog-widget--author p {
  margin: 0;
  color: var(--blog-muted);
  font-size: 11px;
  line-height: 1.8;
}

.blog-widget--author a {
  display: inline-block;
  margin-top: 8px;
  color: var(--blog-mint);
  font-size: 11px;
}

.blog-author-topics {
  display: flex;
  grid-column: span 2;
  margin-top: 2px;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-author-topics span {
  padding: 4px 7px;
  border: 1px solid var(--blog-border);
  border-radius: 999px;
  color: var(--blog-muted);
  font-size: 9px;
}

.blog-closing {
  padding-top: 70px;
}

.blog-closing__panel {
  padding: 90px 38px;
  border: 1px solid rgba(217, 239, 116, 0.23);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 100%, rgba(180, 160, 237, 0.18), transparent 29%),
    radial-gradient(circle at 90% 0, rgba(119, 212, 195, 0.15), transparent 30%),
    #1d1e1f;
  text-align: center;
}

.blog-closing__panel > span {
  color: var(--blog-mint);
  font-size: 12px;
}

.blog-closing__panel h2 {
  margin: 18px 0;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.48;
}

.blog-closing__panel p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--blog-muted);
}

.blog-closing__panel > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

body.light.blog-page {
  --blog-accent: #d9ef74;
  --blog-mint: #2f776c;
  --blog-violet: #7060aa;
  --blog-surface: #ebeae4;
  --blog-border: rgba(17, 16, 18, 0.12);
  --blog-muted: rgba(17, 16, 18, 0.64);
}

body.light.blog-page main,
body.light .blog-library {
  background: #f1f0ea;
}

body.light .blog-featured__heading h1,
body.light .blog-library__heading h2,
body.light .blog-post-card h3,
body.light .blog-widget h3,
body.light .blog-closing__panel h2 {
  color: #191918;
}

body.light .blog-post-card,
body.light .blog-widget,
body.light .blog-closing__panel {
  background-color: rgba(255, 255, 255, 0.56);
}

body.light .blog-post-card__labels span,
body.light .blog-post-card__footer strong {
  color: rgba(17, 16, 18, 0.65);
}

body.light .blog-post-card__footer small {
  color: rgba(17, 16, 18, 0.46);
}

body.light .blog-reader-stack img {
  border-color: #ecebe5;
}

body.light .blog-reader-stack span,
body.light .blog-series-list small {
  color: rgba(17, 16, 18, 0.5);
}

body.light .blog-post-card__footer {
  border-color: rgba(17, 16, 18, 0.08);
}

body.light .blog-search,
body.light .blog-button--secondary {
  background: rgba(17, 16, 18, 0.035);
}

body.light .blog-search input {
  color: #191918;
}

body.light .blog-search input::placeholder {
  color: rgba(17, 16, 18, 0.42);
}

body.light .blog-button--secondary:hover {
  border-color: rgba(17, 16, 18, 0.25);
  background: rgba(17, 16, 18, 0.07);
}

body.light .blog-post-card__image span {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .blog-featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .blog-featured-tile--1,
  .blog-featured-tile--5 {
    grid-column: span 2;
  }

  .blog-sidebar__sticky {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-widget--newsletter,
  .blog-widget--author {
    grid-column: span 2;
  }
}

@media screen and (max-width: 767px) {
  .blog-featured,
  .blog-library,
  .blog-closing {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .blog-featured {
    padding-top: 124px;
    padding-bottom: 58px;
  }

  .blog-featured__heading {
    display: grid;
    margin-bottom: 20px;
  }

  .blog-featured__heading h1 {
    font-size: 28px;
  }

  .blog-featured__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 218px;
    gap: 10px;
  }

  .blog-featured-tile--1,
  .blog-featured-tile--5 {
    grid-column: auto;
  }

  .blog-featured-tile--1,
  .blog-featured-tile--5,
  .blog-featured-tile--2,
  .blog-featured-tile--6 {
    grid-row: span 1;
  }

  .blog-featured-tile--1 {
    min-height: 310px;
  }

  .blog-featured-tile--1 h2,
  .blog-featured-tile--5 h2 {
    font-size: 21px;
  }

  .blog-featured-tile--1 .blog-featured-tile__content {
    padding: 22px;
  }

  .blog-library__heading,
  .blog-library__tools {
    display: grid;
    gap: 18px;
  }

  .blog-library__heading h2 {
    font-size: 28px;
  }

  .blog-library__tools p {
    order: -1;
  }

  .blog-category-scroll {
    margin-bottom: 30px;
  }

  .blog-post-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-post-card--wide {
    grid-column: auto;
    display: flex;
  }

  .blog-post-card__image,
  .blog-post-card--wide .blog-post-card__image {
    min-height: 0;
    height: 220px;
  }

  .blog-post-card__content {
    padding: 21px;
  }

  .blog-post-card h3 {
    font-size: 18px;
  }

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

  .blog-widget--newsletter,
  .blog-widget--author {
    grid-column: auto;
  }

  .blog-closing__panel {
    padding: 60px 23px;
    border-radius: 24px;
  }
}
