/*--------------------------------------------------------------
# Blog — Reading Progress Bar
--------------------------------------------------------------*/
.blog-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #47b2e4, #209dd8);
  z-index: 9998;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 8px rgba(71, 178, 228, 0.5);
}

/*--------------------------------------------------------------
# Blog Hero
--------------------------------------------------------------*/
.blog-hero {
  background: linear-gradient(135deg, #37517e 0%, #283a5a 60%, #1e2d45 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(71, 178, 228, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.blog-hero .blog-category {
  display: inline-block;
  background: rgba(71, 178, 228, 0.2);
  color: #47b2e4;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(71, 178, 228, 0.35);
  margin-bottom: 24px;
}

.blog-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 28px;
  max-width: 820px;
}

.blog-hero .blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.blog-hero .blog-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-hero .blog-meta i {
  color: #47b2e4;
  font-size: 16px;
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 60px;
  }

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

  .blog-hero .blog-meta {
    gap: 12px 20px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Layout
--------------------------------------------------------------*/
.blog-layout {
  padding: 60px 0 80px;
  background: #fff;
}

.blog-layout .container {
  max-width: 1140px;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.blog-toc {
  background: #f3f5fa;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 0 20px rgba(55, 81, 126, 0.06);
  border-left: 3px solid #47b2e4;
}

.blog-toc h3 {
  font-size: 16px;
  font-weight: 700;
  color: #37517e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}

.blog-toc nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-toc nav ul li {
  margin-bottom: 4px;
}

.blog-toc nav ul li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: #444444;
  border-radius: 4px;
  transition: all 0.3s;
  line-height: 1.4;
  border-left: 2px solid transparent;
}

.blog-toc nav ul li a:hover {
  color: #47b2e4;
  background: rgba(71, 178, 228, 0.08);
}

.blog-toc nav ul li a.active {
  color: #47b2e4;
  font-weight: 600;
  border-left-color: #47b2e4;
  background: rgba(71, 178, 228, 0.1);
}

.blog-toc nav ul ul {
  padding-left: 16px;
}

.blog-toc nav ul ul li a {
  font-size: 13px;
  color: #666;
}

@media (max-width: 991px) {
  .blog-sidebar {
    position: static;
    margin-bottom: 40px;
  }

  .blog-toc {
    max-height: none;
  }
}

/*--------------------------------------------------------------
# Article Content
--------------------------------------------------------------*/
.blog-article {
  max-width: 100%;
}

.blog-article .article-lead {
  font-size: 22px;
  line-height: 1.8;
  color: #37517e;
  font-weight: 600;
  margin-bottom: 40px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f3f5fa 0%, #e7f5fb 100%);
  border-left: 4px solid #47b2e4;
  border-radius: 0 8px 8px 0;
}

.blog-article p {
  font-size: 19px;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 26px;
}

.blog-article .text-highlight {
  color: #37517e;
  font-weight: 700;
  background: linear-gradient(transparent 55%, rgba(71, 178, 228, 0.3) 55%);
  padding: 0 2px;
}

.blog-article .emphasis-line {
  font-size: 20px;
  font-weight: 600;
  color: #37517e;
  padding: 18px 24px;
  margin: 28px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(55, 81, 126, 0.08);
  border-left: 4px solid #47b2e4;
}

.blog-article h2 {
  font-size: 32px;
  font-weight: 700;
  color: #37517e;
  margin-top: 60px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  position: relative;
  scroll-margin-top: 100px;
}

.blog-article h3 {
  font-size: 24px;
  font-weight: 600;
  color: #37517e;
  margin-top: 44px;
  margin-bottom: 20px;
  scroll-margin-top: 100px;
}

.blog-article h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #47b2e4;
}

.blog-article .section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #47b2e4;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 14px;
  flex-shrink: 0;
}

.blog-article .section-heading {
  display: flex;
  align-items: center;
}

.blog-article ul.article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.blog-article ul.article-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  font-size: 19px;
  line-height: 1.75;
  color: #444444;
}

.blog-article ul.article-list li+li {
  border-top: 1px solid #f0f0f0;
}

.blog-article ul.article-list li i {
  position: absolute;
  left: 0;
  font-size: 20px;
  top: 16px;
  color: #47b2e4;
}

.blog-callout {
  padding: 28px 32px;
  margin: 36px 0;
}

.blog-callout .callout-title {
  font-size: 17px;
}

.blog-callout p {
  font-size: 18px;
  line-height: 1.8;
}

.blog-toc nav ul li a {
  font-size: 15px;
  padding: 10px 14px;
}

.blog-conclusion {
  padding: 48px 40px;
}

.blog-conclusion p {
  font-size: 19px;
}

.blog-conclusion h2 {
  font-size: 30px;
}

@media (max-width: 768px) {
  .blog-article .article-lead {
    font-size: 18px;
    padding: 20px;
  }

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

  .blog-article h2 {
    font-size: 24px;
  }

  .blog-article .emphasis-line {
    font-size: 17px;
    padding: 14px 18px;
  }
}

/*--------------------------------------------------------------
# Article Content (layout)
--------------------------------------------------------------*/
.blog-article-layout {
  max-width: 760px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Featured Image
--------------------------------------------------------------*/
.blog-featured-image {
  margin-bottom: 48px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(55, 81, 126, 0.12);
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-featured-image figcaption {
  background: #f3f5fa;
  padding: 14px 20px;
  font-size: 14px;
  color: #6182ba;
  text-align: center;
  font-style: italic;
}

/*--------------------------------------------------------------
# Callout Cards
--------------------------------------------------------------*/
.blog-callout {
  border-radius: 8px;
  padding: 24px 28px;
  margin: 32px 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.blog-callout .callout-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.blog-callout .callout-title {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-callout p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
}

.blog-callout.tip {
  background: #e7f5fb;
  border-left: 4px solid #47b2e4;
}

.blog-callout.tip .callout-icon,
.blog-callout.tip .callout-title {
  color: #209dd8;
}

.blog-callout.note {
  background: #f3f5fa;
  border-left: 4px solid #37517e;
}

.blog-callout.note .callout-icon,
.blog-callout.note .callout-title {
  color: #37517e;
}

.blog-callout.takeaway {
  background: linear-gradient(135deg, #37517e 0%, #283a5a 100%);
  border-left: none;
  color: #fff;
}

.blog-callout.takeaway .callout-icon,
.blog-callout.takeaway .callout-title {
  color: #47b2e4;
}

.blog-callout.takeaway p {
  color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Blog FAQ
--------------------------------------------------------------*/
.blog-faq {
  margin-top: 56px;
}

.blog-faq .section-title {
  text-align: left;
  padding-bottom: 20px;
}

.blog-faq .section-title h2 {
  font-size: 28px;
  text-align: left;
}

.blog-faq .section-title h2::before,
.blog-faq .section-title h2::after {
  left: 0;
  transform: none;
}

.blog-faq .section-title h2::before {
  width: 80px;
}

.blog-faq .section-title h2::after {
  width: 40px;
  left: 20px;
}

.blog-faq .faq-list {
  padding: 0;
}

/* Blog accordion — Bootstrap 5, styled for article pages */
.blog-accordion {
  margin-top: 24px;
}

.blog-accordion .accordion-item {
  border: none;
  border-radius: 8px !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(55, 81, 126, 0.08);
  background: #fff;
}

.blog-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.blog-accordion .accordion-header {
  margin: 0;
}

.blog-accordion .accordion-button {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: #37517e;
  background: #fff;
  padding: 20px 48px 20px 24px;
  box-shadow: none;
}

.blog-accordion .accordion-button:not(.collapsed) {
  color: #37517e;
  background: #f3f5fa;
  box-shadow: none;
}

.blog-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.blog-accordion .accordion-button:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
  box-shadow: none;
  border-color: transparent;
}

.blog-featured-image figcaption {
  color: #3d5a80;
}

/* WCAG 2.2 AA accent overrides (visual tone slightly darker for contrast) */
.blog-toc a,
.blog-article a,
.blog-more-articles a,
.blog-listing-lead a,
.blogs-back-home a {
  color: #1a6f8c;
}

.blog-toc a:hover,
.blog-article a:hover,
.blog-more-articles a:hover,
.blog-listing-lead a:hover,
.blogs-back-home a:hover {
  color: #0d5872;
}

.blog-toc a.active,
.blog-page-nav a.active {
  background: #147a9c;
  color: #fff;
}

.cta-btn-primary:not(.cta-btn-whatsapp) {
  background: #147a9c;
  border-color: #147a9c;
  color: #fff;
}

.cta-btn-primary:not(.cta-btn-whatsapp):hover {
  background: #0f5f7a;
  border-color: #0f5f7a;
  color: #fff;
}

.cta-btn-whatsapp {
  color: #fff;
}

.blog-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2347b2e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 1.1rem;
  height: 1.1rem;
}

.blog-accordion .accordion-body {
  padding: 0 24px 22px 24px;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  background: #f3f5fa;
  border-top: 1px solid #e8edf5;
}

.blog-faq .faq-list li {
  box-shadow: 0 2px 12px rgba(55, 81, 126, 0.06);
  transition: box-shadow 0.3s;
}

.blog-faq .faq-list li:hover {
  box-shadow: 0 4px 20px rgba(55, 81, 126, 0.1);
}

/* Legacy faq-list inside blog articles (blog 1) */
.blog-faq .faq-list ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.blog-faq .faq-list li+li {
  margin-top: 14px;
}

.blog-faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  position: relative;
}

.blog-faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  padding: 0 36px 0 44px;
  color: #37517e;
  outline: none;
  cursor: pointer;
}

.blog-faq .faq-list .icon-help {
  font-size: 22px;
  position: absolute;
  left: 20px;
  top: 20px;
  color: #47b2e4;
}

.blog-faq .faq-list .icon-show,
.blog-faq .faq-list .icon-close {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #47b2e4;
}

.blog-faq .faq-list p {
  margin-bottom: 0;
  padding: 14px 0 0 44px;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.blog-faq .faq-list .icon-show {
  display: none;
}

.blog-faq .faq-list a.collapsed {
  color: #37517e;
}

.blog-faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.blog-faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.blog-faq .faq-list a.collapsed .icon-close {
  display: none;
}

.blog-more-articles {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.blog-more-articles h3 {
  font-size: 20px;
  font-weight: 700;
  color: #37517e;
  margin-bottom: 16px;
}

.blog-more-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-more-articles li {
  margin-bottom: 10px;
}

.blog-more-articles a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #47b2e4;
  transition: gap 0.3s;
}

.blog-more-articles a:hover {
  color: #209dd8;
  gap: 12px;
}

/*--------------------------------------------------------------
# Blog Conclusion
--------------------------------------------------------------*/
.blog-conclusion {
  background: #f3f5fa;
  border-radius: 8px;
  padding: 40px 36px;
  margin-top: 56px;
  border-top: 3px solid #47b2e4;
}

.blog-conclusion h2 {
  margin-top: 0 !important;
  font-size: 26px;
}

.blog-conclusion h2::after {
  display: none;
}

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

/*--------------------------------------------------------------
# Blog CTA
--------------------------------------------------------------*/
.blog-cta {
  background: linear-gradient(135deg, #283a5a 0%, #37517e 50%, #1e2d45 100%);
  padding: 80px 0;
  margin-top: 0;
}

.blog-cta .cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.blog-cta h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.blog-cta .cta-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.blog-cta .cta-trust {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 36px;
}

.blog-cta .cta-trust i {
  color: #47b2e4;
  margin-right: 4px;
}

.blog-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.blog-cta .cta-btn-primary {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: #47b2e4;
  color: #fff;
  border: 2px solid #47b2e4;
  transition: all 0.4s;
}

.blog-cta .cta-btn-primary:hover {
  background: #209dd8;
  border-color: #209dd8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(71, 178, 228, 0.4);
}

.blog-cta .cta-btn-secondary {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: all 0.4s;
}

.blog-cta .cta-btn-secondary:hover {
  background: #fff;
  color: #37517e;
  border-color: #fff;
  transform: translateY(-2px);
}

.blog-cta .cta-btn-whatsapp {
  background: #128c4a;
  border-color: #128c4a;
}

.blog-cta .cta-btn-whatsapp:hover {
  background: #0e6f3b;
  border-color: #0e6f3b;
  color: #fff;
}

@media (max-width: 768px) {
  .blog-cta {
    padding: 60px 0;
    background-attachment: scroll;
  }

  .blog-cta h2 {
    font-size: 24px;
  }

  .blog-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .blog-cta .cta-btn-primary,
  .blog-cta .cta-btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Blog Breadcrumbs
--------------------------------------------------------------*/
.blog-breadcrumbs {
  padding: 12px 0;
  background: #f3f5fa;
  margin-top: 72px;
}

.blog-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.blog-breadcrumbs ol li+li {
  padding-left: 10px;
}

.blog-breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

.blog-breadcrumbs ol li a {
  color: #47b2e4;
}

.blog-breadcrumbs ol li.active {
  color: #37517e;
}

.blog-page-nav {
  background: #fff;
  border-bottom: 1px solid #e8edf5;
  padding: 12px 0;
}

.blog-page-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-page-nav a {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid #e0e6ef;
  transition: all 0.3s;
}

.blog-page-nav a:hover {
  color: #47b2e4;
  border-color: #47b2e4;
  background: rgba(71, 178, 228, 0.08);
}

.blog-page-nav a.active {
  color: #fff;
  background: #47b2e4;
  border-color: #47b2e4;
}

.blog-hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 720px;
}

.blog-listing-hero {
  padding-bottom: 60px;
}

.blog-listing-lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# SAP Module Cards (Blog 2)
--------------------------------------------------------------*/
.blog-module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 36px 0 48px;
}

.blog-module-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 6px 24px rgba(55, 81, 126, 0.1);
  border-top: 3px solid #47b2e4;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(55, 81, 126, 0.14);
}

.blog-module-card h3 {
  font-size: 20px;
  margin-top: 14px;
  margin-bottom: 12px;
}

.blog-module-card > p {
  font-size: 16px;
  margin-bottom: 14px;
}

.blog-module-card .module-ideal-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #47b2e4;
  margin-bottom: 8px;
}

.blog-module-card .article-list {
  margin-bottom: 0;
}

.blog-module-card .article-list li {
  font-size: 15px;
  padding: 8px 0 8px 28px;
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.module-finance { background: linear-gradient(135deg, #209dd8, #47b2e4); }
.module-ewm { background: linear-gradient(135deg, #28a745, #5cb85c); }
.module-mm { background: linear-gradient(135deg, #fd7e14, #ff9f43); }
.module-sd { background: linear-gradient(135deg, #e83e8c, #f06595); }
.module-hr { background: linear-gradient(135deg, #6f42c1, #9775fa); }
.module-abap { background: linear-gradient(135deg, #37517e, #5a7ab8); }

.module-salary-block {
  margin: 16px 0 14px;
}

.module-salary-block p {
  font-size: 15px;
  margin-bottom: 6px;
  color: #444;
}

.module-salary-block strong {
  color: #37517e;
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# SAP Career Roadmap Steps (Blog 4)
--------------------------------------------------------------*/
.blog-roadmap-steps {
  margin: 36px 0 48px;
}

.blog-roadmap-step {
  background: #fff;
  border-radius: 12px;
  padding: 28px 26px;
  margin-bottom: 24px;
  box-shadow: 0 6px 24px rgba(55, 81, 126, 0.1);
  border-left: 4px solid #47b2e4;
}

.blog-roadmap-step .step-label {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #47b2e4;
  margin-bottom: 10px;
}

.blog-roadmap-step h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.blog-mistakes-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.blog-mistakes-list li {
  position: relative;
  padding: 12px 0 12px 36px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  border-bottom: 1px solid #eef1f6;
}

.blog-mistakes-list li:last-child {
  border-bottom: none;
}

.blog-mistakes-list li::before {
  content: "\F623";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 14px;
  color: #dc3545;
  font-size: 18px;
}

@media (max-width: 768px) {
  .blog-module-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero-subtitle {
    font-size: 17px;
  }
}
