.blog-page {
  color: var(--color-text, #2c1830);
  background: var(--color-bg, #fffdfb);
}

.blog-page .container {
  /* width: min(100% - 2rem, 1160px); */
  margin-inline: auto;
}

/* Hero */

.blog-hero {
  padding: 2rem 0 2.5rem;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(126, 54, 132, 0.08),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 245, 247, 0.7));
}

.blog-hero__inner {
  max-width: 760px;
}

.blog-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent, #7d3b7e);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero__eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.blog-hero__title {
  margin: 0;
  color: var(--color-text, #343036);
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.blog-hero__text {
  max-width: 680px;
  margin: 1.4rem 0 0;
  color: rgba(44, 24, 48, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

/* Categories */

.blog-categories {
  position: sticky;
  top: 123px;
  z-index: 20;
  /* padding: 1.1rem 0; */
  background: rgba(255, 253, 251, 0.86);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(50, 19, 57, 0.08);
  border-bottom: 1px solid rgba(50, 19, 57, 0.08);
}

.blog-categories__list {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

.blog-categories__list::-webkit-scrollbar {
  display: none;
}

.blog-category-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  color: rgba(44, 24, 48, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid rgba(50, 19, 57, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.blog-category-btn span {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.7;
}

.blog-category-btn:hover,
.blog-category-btn.is-active {
  color: #321339;
  border-color: rgba(126, 54, 132, 0.42);
  background: #fff;
  box-shadow: 0 8px 16px rgba(50, 19, 57, 0.08);
  transform: translateY(-1px);
}

.blog-category-btn.is-active span {
  background: currentColor;
}

/* Listing */

.blog-listing {
  padding: 3rem 0 5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.blog-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(50, 19, 57, 0.1);
  border-radius: 1.6rem;
  box-shadow: 0 1.2rem 3rem rgba(50, 19, 57, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 54, 132, 0.22);
  box-shadow: 0 1.5rem 4rem rgba(50, 19, 57, 0.11);
}

.blog-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f5edf3, #fff);
  text-decoration: none;
}

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

.blog-card:hover .blog-card__image img {
  transform: scale(1.045);
}

.blog-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(50, 19, 57, 0.25);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.blog-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.blog-card__category {
  width: fit-content;
  margin-bottom: 0.8rem;
  color: var(--color-accent, #7d3b7e);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card__title {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.blog-card__title a {
  color: #321339;
  text-decoration: none;
}

.blog-card__excerpt {
  margin: 0.85rem 0 0;
  color: rgba(44, 24, 48, 0.68);
  font-size: 0.96rem;
  line-height: 1.6;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  color: rgba(44, 24, 48, 0.55);
  font-size: 0.9rem;
}

.blog-card__more {
  color: #321339;
  text-decoration: none;
  font-weight: 700;
}

.blog-card__more::after {
  content: " →";
}

.blog-card__more:hover {
  color: var(--color-accent, #7d3b7e);
}

/* Pagination */

.blog-pagination {
  margin-top: 3rem;
}

.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  height: 2.7rem;
  padding: 0 0.9rem;
  color: #321339;
  text-decoration: none;
  border: 1px solid rgba(50, 19, 57, 0.14);
  border-radius: 999px;
  background: #fff;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  color: #fff;
  background: #321339;
  border-color: #321339;
}

/* Empty */

.blog-empty {
  padding: 3rem;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(50, 19, 57, 0.1);
  border-radius: 1.6rem;
}

.blog-empty h2 {
  margin: 0 0 0.75rem;
  color: #321339;
  font-size: 2rem;
}

.blog-empty p {
  margin: 0;
  color: rgba(44, 24, 48, 0.7);
}
/* Single blog */

.single-blog {
  color: var(--color-text, #2c1830);
  background: var(--color-bg, #fffdfb);
}

.single-blog .container {
  /* width: min(100% - 2rem, 1160px); */
  margin-inline: auto;
}

.single-blog-hero {
  padding: 3rem 0;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(126, 54, 132, 0.08),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(250, 245, 247, 0.75)
    );
}

.single-blog-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
  color: rgba(44, 24, 48, 0.58);
  font-size: 0.92rem;
}

.single-blog-hero__category {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-accent, #7d3b7e);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.single-blog-hero__category::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: currentColor;
}

.single-blog-hero__title {
  max-width: 920px;
  margin: 0;
  color: var(--color-heading, #321339);
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.single-blog-hero__excerpt {
  max-width: 760px;
  margin: 1.4rem 0 0;
  color: rgba(44, 24, 48, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.single-blog-cover {
  padding: 2rem 0 0;
}

.single-blog-cover__image {
  overflow: hidden;
  border-radius: 1.8rem;
  background: #f5edf3;
  box-shadow: 0 1.4rem 4rem rgba(50, 19, 57, 0.08);
}

.single-blog-cover__image img {
  display: block;
  width: 100%;

  object-fit: cover;
}

.single-blog-content {
  padding: 3rem 0 4rem;
}

.single-blog-layout {
  display: grid;
  /* grid-template-columns: 230px minmax(0, 760px); */
  grid-template-columns: 0.5fr 1.5fr;
  align-items: start;
  justify-content: center;
  gap: 4rem;
}

.single-blog-aside {
  position: sticky;
  top: calc(var(--header-height, 0px) + 2rem);
}

.single-blog-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #321339;
  text-decoration: none;
  font-weight: 700;
}

.single-blog-back:hover {
  color: var(--color-accent, #7d3b7e);
}

.single-blog-aside__box {
  padding: 1rem;
  border: 1px solid rgba(50, 19, 57, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
}

.single-blog-aside__label {
  display: block;
  margin-bottom: 0.9rem;
  color: rgba(44, 24, 48, 0.55);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.single-blog-aside__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.single-blog-aside__links a {
  color: #321339;
  text-decoration: none;
  font-weight: 600;
}

.single-blog-aside__links a:hover {
  color: var(--color-accent, #7d3b7e);
}

.single-blog-article {
  min-width: 0;
}

.single-blog-article__content {
  color: rgba(44, 24, 48, 0.82);
  font-size: 1.08rem;
  line-height: 1.85;
}

.single-blog-article__content > *:first-child {
  margin-top: 0;
}

.single-blog-article__content h2,
.single-blog-article__content h3,
.single-blog-article__content h4 {
  color: #321339;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.single-blog-article__content h2 {
  margin: 2.6rem 0 1rem;
  font-size: clamp(1.8rem, 2.5vw, 2.55rem);
  font-weight: 500;
}

.single-blog-article__content h3 {
  margin: 2.1rem 0 0.85rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
}

.single-blog-article__content p {
  margin: 0 0 1rem;
}

.single-blog-article__content a {
  color: var(--color-accent, #7d3b7e);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.single-blog-article__content ul,
.single-blog-article__content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.single-blog-article__content li {
  margin-bottom: 0.55rem;
}

.single-blog-article__content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.6rem;
  color: #321339;
  font-size: 1.18rem;
  line-height: 1.65;
  border-left: 3px solid var(--color-accent, #7d3b7e);
  border-radius: 0 1.2rem 1.2rem 0;
  background: rgba(126, 54, 132, 0.06);
}

.single-blog-article__content img {
  height: auto;
  border-radius: 1.3rem;
}

.single-blog-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3rem;
  padding: 1.6rem;
  border: 1px solid rgba(126, 54, 132, 0.18);
  border-radius: 1.6rem;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(126, 54, 132, 0.1),
      transparent 30%
    ),
    #fff;
  box-shadow: 0 1.2rem 3rem rgba(50, 19, 57, 0.06);
}

.single-blog-cta__content span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-accent, #7d3b7e);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.single-blog-cta__content h2 {
  margin: 0;
  color: #321339;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.single-blog-cta__content p {
  margin: 0.75rem 0 0;
  color: rgba(44, 24, 48, 0.68);
  line-height: 1.6;
}

.single-blog-cta__button {
  white-space: nowrap;
}

.single-blog-related {
  padding: 4rem 0 5rem;
  border-top: 1px solid rgba(50, 19, 57, 0.08);
  background: linear-gradient(
    180deg,
    rgba(250, 245, 247, 0.45),
    rgba(255, 253, 251, 1)
  );
}

.single-blog-related__head {
  margin-bottom: 1.8rem;
}

.single-blog-related__head span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--color-accent, #7d3b7e);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-blog-related__head h2 {
  margin: 0;
  color: #321339;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.single-blog-bottom-nav {
  margin-top: 1.5rem;
  text-align: center;
}

.single-blog-bottom-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  color: #321339;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(50, 19, 57, 0.14);
  border-radius: 999px;
  background: #fff;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.single-blog-bottom-nav a:hover {
  color: #fff;
  border-color: #321339;
  background: #321339;
  transform: translateY(-1px);
}
.single-blog-cta__button {
  min-height: 3.25rem;
  padding-inline: 1.8rem;
  border-radius: 999px;
  box-shadow: 0 0.8rem 1.8rem rgba(50, 19, 57, 0.16);
}

.single-blog-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 1rem 2.2rem rgba(50, 19, 57, 0.2);
}
/* Blog breadcrumbs */

.blog-breadcrumbs {
  margin-bottom: 1.5rem;
}

.blog-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  color: rgba(44, 24, 48, 0.54);
  font-size: 0.86rem;
  line-height: 1.4;
}

.blog-breadcrumbs__item:not(:last-child)::after {
  content: "/";
  color: rgba(44, 24, 48, 0.28);
}

.blog-breadcrumbs__item a {
  color: rgba(44, 24, 48, 0.62);
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-breadcrumbs__item a:hover {
  color: var(--color-accent, #7d3b7e);
}

.blog-breadcrumbs__item.is-current {
  color: #321339;
  font-weight: 600;
}
.single-blog-cover {
  padding: 2rem 0 0;
}

.single-blog-cover__image {
  overflow: hidden;
  border-radius: 1.8rem;
  background: #f5edf3;
  box-shadow: 0 1.4rem 4rem rgba(50, 19, 57, 0.08);
}

.single-blog-cover__image img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.single-blog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 3rem;
  align-items: center;
}

.single-blog-hero__content {
  min-width: 0;
}

.single-blog-hero__image {
  overflow: hidden;
  aspect-ratio: 1.18 / 0.82;
  border-radius: 1.6rem;
  background: #f5edf3;
  box-shadow: 0 1.4rem 4rem rgba(50, 19, 57, 0.1);
}

.single-blog-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-blog-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.single-blog-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.single-blog-toc__link {
  position: relative;
  display: block;
  padding-left: 0.9rem;
  color: rgba(44, 24, 48, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.single-blog-toc__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(126, 54, 132, 0.35);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.single-blog-toc__link:hover,
.single-blog-toc__link.is-active {
  color: #321339;
  transform: translateX(2px);
}

.single-blog-toc__link.is-active::before {
  background: var(--color-accent, #7d3b7e);
  transform: scale(1.35);
}

.single-blog-toc__link--level-3 {
  margin-left: 0.85rem;
  font-size: 0.86rem;
  font-weight: 500;
  opacity: 0.88;
}

.single-blog-share__links {
  display: flex;
  flex-direction: row;
  gap: 0.55rem;
}

.single-blog-share__links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #321339;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.single-blog-share__links a:hover {
  color: var(--color-accent, #7d3b7e);
}

.single-blog-article__content h2[id],
.single-blog-article__content h3[id] {
  scroll-margin-top: calc(
    var(--header-height, 70px) + var(--header-categories-height, 52px) + 2rem
  );
}
.lm-blog-cta {
  margin: 60px 0;
  padding: 36px;
  border-radius: 24px;
  background: #faf7fc;
  border: 1px solid rgba(104, 58, 120, 0.12);
  text-align: center;
}

.lm-blog-cta h3 {
  margin-bottom: 12px;
}

.lm-blog-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
}

.lm-blog-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.lm-blog-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(104, 58, 120, 0.25);
}
.single-blog-article__content .lm-blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.25rem;
  margin: 1rem 0 1.5rem;
  padding: 0 1.8rem;
  border-radius: 999px;
  background: var(--color-primary, #6a4d67);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 0.8rem 1.8rem rgba(50, 19, 57, 0.16);
}

.single-blog-article__content .lm-blog-btn:hover {
  background: var(--color-primary-dark, #4f354c);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.2rem rgba(50, 19, 57, 0.22);
}

.single-blog-share__links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.single-blog-share__link {
  width: 2.35rem !important;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(126, 76, 119, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-primary, #7e4c77);
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.single-blog-share__link:hover {
  transform: translateY(-2px);
  background: var(--color-primary, #7e4c77);
  color: #fff !important;
  border-color: var(--color-primary, #7e4c77);
  box-shadow: 0 0.8rem 1.6rem rgba(48, 21, 51, 0.12);
}

.single-blog-share__copy {
  padding: 0;
  font-family: inherit;
}

.single-blog-share__copy.is-copied {
  background: #6aaa5b;
  border-color: #6aaa5b;
  color: #fff;
}

/*-------------------------------------------------------------------------------------------1440-----------------------------*/
@media (max-width: 1440px) {
  .single-blog-aside {
    position: sticky;
    top: calc(var(--header-height, 0px) + 1rem);
  }
}
/*-------------------------------------------------------------------------------------------1024-----------------------------*/
@media (max-width: 1024px) {
  .single-blog-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .single-blog-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }

  .single-blog-back {
    margin-bottom: 0;
  }

  .single-blog-aside__box {
    flex: 1;
  }

  .single-blog-hero__image {
    max-width: 760px;
  }
  .blog-hero {
    padding: 3.5rem 0 2rem;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-blog-aside {
    display: block;
  }

  .single-blog-aside__box + .single-blog-aside__box {
    margin-top: 1rem;
  }

  .single-blog-toc__nav {
    max-height: 220px;
    overflow: auto;
  }
}

/*-------------------------------------------------------------------------------------------768-----------------------------*/
@media (max-width: 768px) {
  .single-blog .container {
    width: min(100% - 1.25rem, 1160px);
  }

  .single-blog-hero {
    padding: 2.6rem 0 2rem;
  }

  .single-blog-cover {
    padding-top: 1.2rem;
  }

  .single-blog-cover__image {
    border-radius: 1.25rem;
  }

  .single-blog-content {
    padding: 2.4rem 0 3rem;
  }

  .single-blog-article__content {
    font-size: 1rem;
    line-height: 1.75;
  }

  .single-blog-cta {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    border-radius: 1.25rem;
  }

  .single-blog-cta__button {
    width: 100%;
    justify-content: center;
  }

  .single-blog-related {
    padding: 3rem 0 4rem;
  }
  .single-blog-hero {
    padding: 2.2rem 0;
  }

  .single-blog-hero__grid {
    gap: 1.4rem;
  }

  .single-blog-hero__image {
    aspect-ratio: 1.25 / 0.82;
    border-radius: 1.2rem;
  }
  .blog-breadcrumbs {
    margin-bottom: 1.2rem;
  }

  .blog-breadcrumbs__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .blog-breadcrumbs__list::-webkit-scrollbar {
    display: none;
  }

  .blog-breadcrumbs__item {
    flex: 0 0 auto;
    font-size: 0.8rem;
  }

  .blog-breadcrumbs__item.is-current {
    max-width: 12rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .blog-page .container {
    width: min(100% - 1.25rem, 1160px);
  }

  .blog-hero {
    padding: 2.5rem 0 1.7rem;
  }

  .blog-categories {
    padding: 0.85rem 0;
  }

  .blog-category-btn {
    min-height: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
  }

  .blog-listing {
    padding: 2rem 0 3.5rem;
  }

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

  .blog-card {
    border-radius: 1.25rem;
  }

  .blog-card__content {
    padding: 1rem;
  }
  .blog-categories {
    top: calc(0vh + var(--header-categories-height));
  }
  .blog-categories__list {
    padding: 5px 0;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .single-blog-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/*------------------------------------------------------------------------------------------425----------------------------*/
@media (max-width: 425px) {
  /* .single-blog-hero__title {
    font-size: 2.45rem;
  } */

  .single-blog-aside {
    display: block;
  }

  .single-blog-aside__box {
    margin-top: 1rem;
  }
  .blog-hero__text {
    font-size: 0.98rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .blog-card__image {
    aspect-ratio: 1.25 / 1;
  }
  .blog-category-btn {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.875rem;
  }
  .blog-categories {
    top: Calc(0vh + var(--header-mobile-height) + 36px);
  }
  .single-blog-hero__grid {
    grid-template-columns: 1fr;
  }
  .single-blog-hero {
    padding: 3rem 0;
  }
}
/*-------------------------------------------------------------------------------------------390----------------------------*/
@media (max-width: 390px) {
  .blog-categories {
    padding: 0;
  }
  .blog-categories {
    top: 100px;
  }
  .cart-drawer {
    height: 100dvh;
  }
}
.single-blog-guide {
  position: relative;
  margin: 3rem 0 0;
  padding: 1.6rem;
  border: 1px solid rgba(126, 54, 132, 0.16);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(126, 54, 132, 0.1), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fbf6fa 100%);
  box-shadow: 0 1.2rem 3rem rgba(50, 19, 57, 0.06);
  overflow: hidden;
}

.single-blog-guide::after {
  content: "i";
  position: absolute;
  right: 1.25rem;
  top: -1.8rem;
  color: rgba(126, 54, 132, 0.055);
  font-size: 8rem;
  line-height: 1;
  font-weight: 800;
  font-family: Georgia, serif;
  pointer-events: none;
}

.single-blog-guide__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--color-accent, #7d3b7e);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-blog-guide h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  color: #321339;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.single-blog-guide p {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0;
  color: rgba(44, 24, 48, 0.68);
  font-size: 1rem;
  line-height: 1.65;
}

.single-blog-guide__links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.single-blog-guide__links a {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.15rem;
  border: 1px solid rgba(126, 54, 132, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #321339;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 0.7rem 1.6rem rgba(50, 19, 57, 0.055);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.single-blog-guide__links a:first-child {
  border-color: var(--color-primary, #6a4d67);
  background: var(--color-primary, #6a4d67);
  color: #fff;
  box-shadow: 0 0.85rem 1.8rem rgba(50, 19, 57, 0.15);
}

.single-blog-guide__links a:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary, #6a4d67);
  background: var(--color-primary, #6a4d67);
  color: #fff;
  box-shadow: 0 1rem 2.1rem rgba(50, 19, 57, 0.16);
}

@media (max-width: 768px) {
  .single-blog-guide {
    margin-top: 2rem;
    padding: 1.25rem;
    border-radius: 1.25rem;
  }

  .single-blog-guide__links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .single-blog-guide__links a {
    width: 100%;
  }
}
