/* ======================= */
/*      Typography         */
/* ======================= */
.blog-content ol {
  padding-left: 2rem; /* adjust as needed */
  list-style-position: outside; /* or inside */
}

h2 span,
h2.section-title span {
  color: var(--color-primary-500);
}
ul {
  margin-top: 24px;
}

h1.blog-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: 0%;
}
.custom-page h1.blog-title,
.custom-page .intro-text {
  text-align: center;
}

.custom-page .intro-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 1%;
  text-align: center;
  margin-top: 24px;
  color: #646464;
}

h2.section-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0px;
  padding-top: 48px;
}

h3.small-title {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-primary-500);
  margin: var(--spacing-3xl) 0 var(--spacing-lg) 0;
}

h4.cart-title {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  color: var(--color-dark);
  margin: var(--spacing-2xl) 0 var(--spacing-lg) 0;
}

p.p-section {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0px;
  padding: 0;
  padding-top: 20px;
  color: #000000;
}
li p.p-section {
  padding-top: 0px;
}

div.blog-meta {
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-sm);
  color: var(--color-secondary-500);
  margin-bottom: var(--spacing-4xl);
  display: flex;
  gap: var(--spacing-lg);
  margin-top: 16px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 16px;
}

div.blog-meta div {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0px;
}

p.cart-text {
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
  letter-spacing: var(--letter-spacing-normal);
  color: #646464;
}

/* ======================= */
/*      Blog Specific      */
/* ======================= */
.blog-container {
  max-width: 800px;
  margin: 0 auto;
  padding-top: var(--spacing-6xl);
}

.blog-content {
  line-height: var(--line-height-relaxed);
}

.blog-content ul {
  margin: var(--spacing-lg) 0;
  padding-left: var(--spacing-2xl);
}

.blog-content li {
  list-style-type: disc;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
  line-height: var(--line-height-relaxed);
}

.intro-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0px;
}
/* ======================= */
/*      Container Utils    */
/* ======================= */
.container-x {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 767px) {
  .section-container {
    padding: 88px 10%;
  }
}

/* ======================= */
/*     Utility Classes     */
/* ======================= */
.text-white {
  color: #fff;
}

.text-light {
  color: #dddddd;
}

.custom-page-date {
  display: none;
}
/* ======================= */
/*    Responsive Design    */
/* ======================= */
@media (max-width: 767px) {
  p.p-section {
    padding-top: 12px;
  }
  .blog-container {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  h1.blog-title {
    font-size: var(--font-size-xl);
  }
  .custom-page .intro-text,
  .custom-page-date {
    font-size: 16px;
    margin-top: 16px;
    text-align: center;
    color: #646464;
    display: block;
  }

  h2.section-title {
    font-size: 20px;
    padding-top: 36px;
  }

  h3.small-title {
    font-size: var(--font-size-base);
  }

  .intro-text {
    font-size: var(--font-size-base);
  }

  p.blog-meta {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
}
.blog-category {
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary-500);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0;
  margin-bottom: 15px;
}

.blog-category span {
  background: var(--color-secondary-100);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 20px;
}

.blog-read-more {
  color: #000000;
}

.blog-card .blog-meta {
  margin: 0 !important;
}
