.blog_banner {
  padding: 3rem 0 2rem;
}

.blog_banner .head h1 {
  margin: 1.5rem auto;
  color: #000;
  font-size: 45px;
  line-height: 1.3;
}

.blog_banner .head p {
  font-size: 18px;
  margin: 0 auto;
  text-align: justify;
  color: #444;
}

.blog_nav {
  background-color: #f2f9f5;
  padding-bottom: 3rem;
}

.blog_cat_nav ul {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog_cat_nav a {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  border: 1px solid #b5bbb8;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s;
  background: #fff;
}

.blog_cat_nav a:hover,
.blog_cat_nav a.active {
  background-color: var(--theme_color);
  border-color: var(--theme_color);
  color: #fff;
}

.blog_featured {
  background-color: #f2f9f5;
  padding-bottom: 3rem;
}

.blog_featured_card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(46, 82, 74, 0.08);
}

.blog_featured_image {
  display: block;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}

.blog_featured_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog_featured_card:hover .blog_featured_image img {
  transform: scale(1.03);
}

.blog_featured_body {
  padding: 2.5rem 2.5rem 2.5rem 0;
}

.blog_featured_body h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 1rem 0;
  font-weight: 600;
}

.blog_featured_body h2 a {
  color: #161616;
  font-size: 32px;
  line-height: 1.2;
  transition: color 0.3s;
}

.blog_featured_body h2 a:hover {
  color: var(--subtheme_color);
}

.blog_featured_body p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 1.5rem;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog_featured_link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--subtheme_color);
  padding-right: 1.5rem;
  background: url(../img/arrow-right-w-black.svg) no-repeat right center / 14px;
}

.blog_main {
  background-color: #f2f9f5;
  padding: 0 0 5rem;
}

.blog_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog_card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(46, 82, 74, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog_card:hover {
  box-shadow: 0 12px 32px rgba(46, 82, 74, 0.12);
}

.blog_card_image {
  display: block;
  aspect-ratio: 470 / 300;
  overflow: hidden;
  background: #e8f0ec;
}

.blog_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog_card:hover .blog_card_image img {
  transform: scale(1.03);
}

.blog_card_body {
  padding: 1.5rem;
}

.blog_card_meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  font-size: 14px;
}

.blog_card_cat {
  color: var(--subtheme_color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}

.blog_card_meta time {
  color: #888;
}

.blog_card_title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog_card_title a {
  color: #161616;
  font-size: 20px;
  line-height: 1.2;
  transition: color 0.3s;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog_card_title a:hover {
  color: var(--subtheme_color);
}

.blog_card_desc {
  font-size: 15px;
  line-height: 1.65;
  color: #666;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog_load_more_wrap {
  margin-top: 3rem;
}

.blog_empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #666;
}

.blog footer,
.archive.category footer,
.archive.tag footer,
.single-post footer {
  background-color: #f2f9f5 !important;
}

.blog_reading_progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(46, 82, 74, 0.12);
  z-index: 20;
}

.blog_reading_progress_bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--subtheme_color);
  transition: width 0.1s linear;
}

.blog_single_hero {
  padding: 2rem 0 2.5rem;
}

.blog_single_hero .breadcrumbs {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.blog_single_hero .breadcrumbs a {
  font-size: 15px;
  transition: color 0.3s;
}

.blog_single_hero .breadcrumbs a:hover {
  color: var(--subtheme_color);
}

.blog_single_hero .breadcrumb_last {
  color: #666;
}

.blog_single_intro h1 {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 700;
  color: #161616;
  margin-bottom: 1rem;
}

.blog_single_excerpt {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.blog_single_meta {
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 15px;
  color: #666;
}

.blog_single_author {
  gap: 0.75rem;
}

.blog_single_author img {
  border-radius: 50%;
}

.blog_single_date,
.blog_single_reading {
  padding-left: 1.5rem;
  position: relative;
}

.blog_single_date::before,
.blog_single_reading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.blog_single_date::before {
  background-image: url(../img/rili.svg);
}

.blog_single_reading::before {
  background-image: url(../img/timer.svg);
}

.blog_share {
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #d8e5de;
}

.blog_share_label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.blog_share ul {
  gap: 0.5rem;
}

.blog_share a,
.blog_share .blog_copy_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d0d8d4;
  background: #fff;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.blog_share .blog_copy_item {
  position: relative;
}

.blog_share .blog_copy_link {
  position: relative;
}

.blog_share .blog_copy_tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  background: var(--theme_color);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.blog_share .blog_copy_tip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--theme_color);
}

.blog_share .blog_copy_link.copied .blog_copy_tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.blog_share .blog_copy_link.copied {
  background: var(--theme_color);
  border-color: var(--theme_color);
}

.blog_share a:hover,
.blog_share .blog_copy_link:hover {
  background: var(--subtheme_color);
  border-color: var(--subtheme_color);
}

.blog_share i {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.blog_share .icon-facebook {
  background-image: url(../img/facebook-icon.svg);
  background-size: 8px;
}

.blog_share .icon-twitter {
  background-image: url(../img/twitter-icon.svg);
  background-size: 16px;
}

.blog_share .icon-pinterest {
  background-image: url(../img/pinterest.svg);
  background-size: 18px;
}

.blog_share .icon-linkedin {
  background-image: url(../img/linkin.svg);
  background-size: 18px;
  filter: contrast(0) brightness(0);
}

.blog_share .icon-link {
  background-image: url(../img/icon-link.svg);
  background-size: 16px;
}

.blog_share a:hover .icon-facebook,
.blog_share a:hover .icon-twitter,
.blog_share a:hover .icon-pinterest,
.blog_share a:hover .icon-linkedin,
.blog_share .blog_copy_link:hover .icon-link,
.blog_share .blog_copy_link.copied .icon-link {
  filter: contrast(0) brightness(2) !important;
}

.blog_single_featured {
  background: #f2f9f5;
  padding-bottom: 2rem;
}

.blog_single_featured img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog_single_content {
  background: #f2f9f5;
  padding-bottom: 2rem;
}

.blog_single_content .content {
  align-items: flex-start;
  gap: 2rem;
}

.blog_single_main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog_single_body {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
}

.blog_single_body h2,
.blog_single_body h3 {
  scroll-margin-top: 100px;
}

.blog_single_body h2 {
  font-size: 26px;
  line-height: 1.35;
  font-weight: 700;
  color: #161616;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8f0ec;
}

.blog_single_body h3 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
  margin: 1.5rem 0 0.75rem;
}

.blog_single_body p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.blog_single_body ul,
.blog_single_body ol {
  margin: 0 0 1.25rem;
  padding-left: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  list-style: none;
}

.blog_single_body ul li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
}

.blog_single_body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme_color);
  transform: translateY(-50%);
}

.blog_single_body ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.blog_single_body ul ul li::before {
  width: 6px;
  height: 6px;
  background: var(--subtheme_color);
}

.blog_single_body ol {
  counter-reset: blog-ol;
}

.blog_single_body ol li {
  counter-increment: blog-ol;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.65rem;
}

.blog_single_body ol li::before {
  content: counter(blog-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  color: var(--theme_color);
  background: none;
  border-radius: 0;
  min-width: auto;
  height: auto;
  padding: 0;
  text-align: left;
}

.blog_single_body ol ol {
  counter-reset: blog-ol-sub;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.blog_single_body ol ol li {
  counter-increment: blog-ol-sub;
}

.blog_single_body ol ol li::before {
  content: counter(blog-ol-sub) ".";
  color: var(--subtheme_color);
  background: none;
}

.blog_single_body li {
  margin-bottom: 0.5rem;
}

.blog_single_body a {
  color: var(--subtheme_color);
  text-decoration: underline;
  transition: color 0.3s;
}

.blog_single_body a:hover {
  color: var(--theme_color);
}

.blog_single_body strong {
  font-weight: 600;
  color: #222;
}

.blog_single_body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 6px;
}

.blog_single_body figcaption,
.blog_single_body .wp-element-caption {
  display: block;
  font-size: 14px;
  color: #888;
  text-align: center;
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.blog_single_body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 15px;
  border: none;
}

.blog_single_body table thead {
  border: none;
}

.blog_single_body table th,
.blog_single_body table td {
  border: none !important;
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
}

.blog_single_body thead th {
  background: #f2f9f5;
  font-weight: 600;
  color: #222;
}

.blog_single_body tbody tr:nth-child(even) td {
  background: rgba(242, 249, 245, 0.5);
}

.blog_single_body blockquote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--subtheme_color);
  background: #f8fcf9;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  font-style: italic;
}

.blog_single_body blockquote p {
  margin-bottom: 0.75rem;
  text-align: left;
}

.blog_single_body blockquote p:last-child {
  margin-bottom: 0;
}

.blog_single_body blockquote cite {
  display: block;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  color: #666;
  margin-top: 0.85rem;
  text-align: right;
}

.blog_single_body blockquote cite::before {
  content: "— ";
}

.blog_single_body .wp-block-columns {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.blog_single_body .wp-block-column {
  flex: 1;
  min-width: 240px;
}

.blog_single_toc {
  width: 280px;
  min-width: 280px;
  position: sticky;
  top: 145px;
}

.blog_single_toc.is-empty {
  display: none;
}

.blog_single_toc[hidden] {
  display: none !important;
}

.blog_single_toc_inner {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
}

.blog_single_toc_inner > strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #d8e5de;
}

.blog_single_toc ul li {
  margin-bottom: 5px;
}

.blog_single_toc ul li.level-3 {
  padding-left: 10px;
}

.blog_single_toc a {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  transition: color 0.3s;
  display: block;
  padding: 0.35rem 0;
}

.blog_single_toc a:hover,
.blog_single_toc a.active {
  color: var(--subtheme_color);
}

.blog_tags {
  background: #f2f9f5;
  padding-bottom: 3rem;
}

.blog_tags_inner {
  gap: 1rem;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
}

.blog_tags_inner > span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.blog_tag_list a {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin: 0.25rem;
  border: 1px solid #b5bbb8;
  border-radius: 100px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s;
}

.blog_tag_list a:hover {
  background: var(--theme_color);
  border-color: var(--theme_color);
  color: #fff;
}

.blog_author_card {
  margin-top: 0;
}

.blog_author_card_inner {
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
}

.blog_author_card_inner img {
  border-radius: 50%;
  flex-shrink: 0;
}

.blog_author_card_inner strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog_author_card_inner p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.blog_related {
  background: #f2f9f5;
  padding: 3rem 0 4rem;
}

.blog_related_head {
  margin-bottom: 2rem;
}

.blog_related_head h2 {
  font-size: 32px;
  font-weight: 700;
}

.blog_list_related {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .blog_banner {
    padding: 2rem 0 1.5rem;
  }

  .blog_banner .head p {
    font-size: 16px;
    padding: 0 1rem;
  }

  .blog_nav {
    padding-bottom: 1rem;
  }

  .blog_nav .content,
  .blog_main .content,
  .blog_featured .content,
  .blog_related .content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .blog_featured_card {
    grid-template-columns: 1fr;
  }

  .blog_featured_image {
    min-height: 260px;
  }

  .blog_featured_body {
    padding: 1.75rem;
  }

  .blog_featured_body h2 {
    font-size: 22px;
  }

  .blog_featured_body h2 a {
    font-size: 22px;
  }

  .blog_list,
  .blog_list_related {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .blog_single_layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .blog_single_toc {
    width: 100%;
    min-width: 0;
    position: static;
    order: -1;
  }

  .blog_single_toc_inner {
    padding: 2rem;
    max-height: none;
  }

  .blog_single_hero .content,
  .blog_single_featured .content,
  .blog_tags .content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .blog_single_main {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .blog_banner {
    padding: 1.5rem 0 1rem;
  }

  .blog_banner .head h1 {
    font-size: 26px;
    line-height: 1.35;
    margin: 1rem auto;
    padding: 0 1rem;
  }

  .blog_banner .head p {
    font-size: 15px;
    line-height: 1.65;
  }

  .blog_cat_nav ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 1rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .blog_cat_nav ul::-webkit-scrollbar {
    display: none;
  }

  .blog_cat_nav li {
    flex-shrink: 0;
  }

  .blog_cat_nav a {
    font-size: 14px;
    padding: 0.45rem 1rem;
    white-space: nowrap;
  }

  .blog_featured {
    padding-bottom: 1.5rem;
  }

  .blog_featured_image {
    min-height: 220px;
  }

  .blog_featured_body {
    padding: 1.25rem;
  }

  .blog_featured_body h2 {
    font-size: 22px;
  }

  .blog_featured_body p {
    font-size: 15px;
  }

  .blog_main {
    padding-bottom: 2.5rem;
  }

  .blog_list,
  .blog_list_related {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .blog_card_body {
    padding: 1.15rem;
  }

  .blog_card_title {
    font-size: 16px;
  }

  .blog_card_title a {
    font-size: 16px;
  }

  .blog_load_more_wrap {
    margin-top: 2rem;
  }

  .blog_load_more_wrap .buttom_m {
    width: 100%;
    max-width: 280px;
  }

  .blog_reading_progress {
    height: 3px;
  }

  section.blog_single_hero {
    padding: 0 0 1.5rem;
  }

  .blog_single_hero .breadcrumbs {
    font-size: 13px;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .blog_single_hero .breadcrumbs a {
    font-size: 13px;
  }

  .blog_single_hero .breadcrumb_last {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
  }

  .blog_single_intro h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .blog_single_excerpt {
    font-size: 16px;
    line-height: 1.6;
  }

  .blog_single_meta {
    gap: 1rem;
    font-size: 14px;
  }

  .blog_share {
    gap: 1rem;
  }

  .blog_share ul {
    flex-wrap: wrap;
  }

  .blog_share a,
  .blog_share .blog_copy_link {
    width: 40px;
    height: 40px;
  }

  .blog_single_featured {
    padding-bottom: 1.5rem;
  }

  .blog_single_content .content {
    gap: 1.5rem;
  }

  .blog_single_featured img {
    border-radius: 6px;
  }

  .blog_single_content {
    padding-bottom: 2rem;
  }

  .blog_single_body {
    padding: 1.25rem;
    border-radius: 6px;
  }

  .blog_single_body h2,
  .blog_single_body h3 {
    scroll-margin-top: 80px;
  }

  .blog_single_body h2 {
    font-size: 20px;
    margin: 1.5rem 0 0.75rem;
  }

  .blog_single_body h3 {
    font-size: 18px;
    margin: 1.25rem 0 0.5rem;
  }

  .blog_single_body p,
  .blog_single_body ul,
  .blog_single_body ol {
    font-size: 15px;
    line-height: 1.75;
  }

  .blog_single_body blockquote {
    font-size: 16px;
    padding: 1rem 1.15rem;
    margin: 1.25rem 0;
  }

  .blog_single_body blockquote cite {
    font-size: 14px;
  }

  .blog_single_body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
  }

  .blog_single_body th,
  .blog_single_body td {
    padding: 0.65rem 0.75rem;
    white-space: nowrap;
  }

  .blog_single_body .wp-block-columns {
    flex-direction: column;
    gap: 1rem;
  }

  .blog_single_toc_inner {
    padding: 1.15rem;
  }

  .blog_single_toc_inner > strong {
    font-size: 15px;
  }

  .blog_single_toc ul {
    max-height: 200px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .blog_single_toc a {
    font-size: 13px;
  }

  .blog_tags_inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.15rem;
  }

  .blog_tag_list a {
    font-size: 13px;
    padding: 0.35rem 0.85rem;
  }

  .blog_author_card_inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .blog_author_card_inner strong {
    font-size: 18px;
  }

  .blog_author_card_inner p {
    font-size: 15px;
  }

  .blog_related {
    padding-bottom: 2.5rem;
  }

  .blog_related_head {
    gap: 1rem;
  }

  .blog_related_head h2 {
    font-size: 24px;
  }

  .blog_related_head .buttom_m {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .blog_banner .head h1 {
    font-size: 22px;
  }

  .blog_single_intro h1 {
    font-size: 22px;
  }

  .blog_single_body {
    padding: 1rem;
  }

  .blog_single_body ol li {
    padding-left: 1.75rem;
  }

  .blog_list, .blog_list_related {
    grid-template-columns: 1fr;
  }
}
