/** Shopify CDN: Minification failed

Line 240:16 Expected identifier but found whitespace
Line 240:17 Unexpected "40px"
Line 265:3 Unexpected "/"

**/
.article-template {
  padding-top: 40px;
}

.Article-Header {
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.article-template__title {
  margin-bottom: 1rem !important;
}

.blog_author_share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ShareFunc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 14px;
}

.ShareFunc img {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.ShareFunc img:hover {
  transform: scale(1.1);
}

.RitualSteps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.RitualStep {
  display: flex;
  align-items: flex-start;
  gap: 20px;

}
.RitualSteps::before {
  content: "";
  position: absolute;
  left: 17px; 
  top: 0;
  width: 2px;
  height: 99%;
  background: #DECDB9; 
  z-index: 0;
}
.RitualSteps .RitualStep:first-child .StepNumber {
  border: 1px solid  #DECDB9;
  background:  #DECDB9;
}


@media screen and (max-width: 1199px){
  .RitualSteps::before{
    content: unset;
  }
}

.StepNumber {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid  #DECDB9;
  color: #552351;
  font-family: var(--font_primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: white; 
}

.StepContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.StepTitle {
  color:  #552351;
  font-family: var(--font_primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; 
}

.StepDesc {
  color:  #30302F;
  font-family: var(--font_secondary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; 
}

.StepImage {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .RitualStep {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .StepNumber {
    margin-bottom: 10px;
  }
}



 .RitualLayout {
  margin-top: 50px;
  padding: 0;
}
/*
.RitualGrid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
}

.RitualCol.Left,
.RitualCol.Right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.StepBlock {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.StepIcon img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.StepText {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .StepBlock {
    justify-content: center;
  }
  .StepText {
    text-align: center;
  }
}


.StepTitle {
  color:  #552351;
  font-family: var(--font_primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; 
}

.StepDesc {
  color:  #30302F;
  font-family: var(--font_secondary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; 
}

.RitualCol.Center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.RitualCol.Center img {
  border-radius: 12px;
  max-width: 100%;
  width: 100%;
}
.ImageWrap {  
  width: 100%;
  position: relative;
}

.ShopBtn{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%
}


.BlogsPost_Desc{
  color:  #30302F;
  font-family: var(--font_secondary);
  font-size:  14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin-bottom: 40px;
}


@media screen and (min-width: 768px) and (max-width: 1023px){
  .RitualGrid{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .RitualGrid {
    grid-template-columns: 1fr;
  }

  .RitualCol.Center {
    order: -1;
  }

  .StepBlock {
    text-align: center;
  }

  .ShopBtn {
    margin-top: 10px;
  }
} */

/* Navigation Buttons */
.article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}

.article-nav-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  border-bottom: 2px solid #773172 !important;
}


.Article-Header .DateTimeDiv{
  display: flex;
  align-items: center;
  gap: 10px;
}
.Article-Header .Meta{
  display: flex;
  padding: 2px 10px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 30px;
  border: 1px solid  #DECDB9;
}
.Article-Header .tag{
  color: #595653;
  font-family: var(--font_secondary);
  font-size:  14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}

.ArticleWrap{
  padding-bottom: 70px;
}