/**
 * Blog page styles - scoped under .blog-page
 * Add class="blog-page" to wrapper div on blog index/view pages
 */

/* Blog title (shared) */
.blog-page .blog-title,
.blog-page .blog-title a {
  color: var(--body-color);
}
.blog-page .blog-title a {
  color: inherit;
}
.blog-page .blog-title a:hover {
  color: var(--theme-color);
}

/* Blog single - wp-block / format / sticky */
.blog-page .blog-single .wp-block-archives-dropdown {
  margin-bottom: 30px;
}
.blog-page .blog-single.format-quote,
.blog-page .blog-single.format-link,
.blog-page .blog-single.tag-sticky-2,
.blog-page .blog-single.sticky {
  border-color: transparent;
  position: relative;
}
.blog-page .blog-single.format-quote .blog-content:before,
.blog-page .blog-single.format-link .blog-content:before,
.blog-page .blog-single.tag-sticky-2 .blog-content:before,
.blog-page .blog-single.sticky .blog-content:before {
  display: none;
}
.blog-page .blog-single.format-quote:before,
.blog-page .blog-single.format-link:before,
.blog-page .blog-single.tag-sticky-2:before,
.blog-page .blog-single.sticky:before {
  content: "\f0c1";
  position: absolute;
  font-family: var(--icon-font);
  font-size: 16px;
  font-weight: 500;
  opacity: 1;
  right: 0;
  top: 0;
  color: var(--white-color);
  background-color: var(--theme-color);
  z-index: 1;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 0 20px 0 20px;
}
@media (max-width: 767px) {
  .blog-page .blog-single.format-quote:before,
  .blog-page .blog-single.format-link:before,
  .blog-page .blog-single.tag-sticky-2:before,
  .blog-page .blog-single.sticky:before {
    border-radius: 0 10px 0 10px;
  }
}
.blog-page .blog-single.tag-sticky-2::before,
.blog-page .blog-single.sticky::before {
  content: "\f08d";
}
.blog-page .blog-single.format-quote:before {
  content: "\f10e";
}
.blog-page .blog-single .blog-content .wp-block-categories-dropdown.wp-block-categories,
.blog-page .blog-single .blog-content .wp-block-archives-dropdown {
  display: block;
  margin-bottom: 30px;
}
.blog-page .blog-details .blog-single:before {
  display: none;
}
.blog-page .blog-details .blog-single .blog-content {
  background-color: transparent;
  overflow: hidden;
}
.blog-page .blog-details .blog-single.format-chat {
  margin-bottom: 20px;
}
.blog-page .blog-details .blog-single.format-chat .blog-content>p:nth-child(2n) {
  background: var(--smoke-color);
  padding: 5px 20px;
}
.blog-page .blog-details .blog-single.tag-sticky-2,
.blog-page .blog-details .blog-single.sticky,
.blog-page .blog-details .blog-single.format-quote,
.blog-page .blog-details .blog-single.format-link {
  background-color: transparent;
}
.blog-page .blog-details .blog-single.tag-sticky-2:before,
.blog-page .blog-details .blog-single.sticky:before,
.blog-page .blog-details .blog-single.format-quote:before,
.blog-page .blog-details .blog-single.format-link:before {
  display: none;
}

/* th-blog archives */
.blog-page .th-blog ul.wp-block-archives li {
  margin: 5px 0;
}

/* Blog audio / img / video base */
.blog-page .blog-audio,
.blog-page .blog-img,
.blog-page .blog-video {
  line-height: 1px;
}
.blog-page .blog-audio img,
.blog-page .blog-img img,
.blog-page .blog-video img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

/* th-blog */
.blog-page .th-blog {
  margin-bottom: 30px;
}
.blog-page .blog-inner-title {
  margin-top: -0.25em;
  margin-bottom: 25px;
}
.blog-page .blog-inner-title i {
  color: var(--theme-color);
  margin-right: 4px;
}

@media (min-width: 1300px) {
  .blog-page .search-active-wrap,
  .blog-page .blog-author,
  .blog-page .search-wrap,
  .blog-page .page-single,
  .blog-page .blog-single,
  .blog-page .th-comments-wrap,
  .blog-page .th-comment-form {
    margin-right: 8px;
  }
}

/* Blog single */
.blog-page .blog-single {
  position: relative;
  margin-bottom: 40px;
}
.blog-page .blog-single .blog-title {
  margin-bottom: 15px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
}
.blog-page .blog-single .blog-text {
  margin-bottom: 27px;
}
.blog-page .blog-single {
  margin: -0.35em 0 16px 0;
}
.blog-page .blog-single .blog-content {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
}
.blog-page .blog-single .blog-audio {
  line-height: 1;
}
.blog-page .blog-single .blog-audio,
.blog-page .blog-single .blog-img,
.blog-page .blog-single .blog-video {
  position: relative;
  overflow: hidden;
  background-color: var(--smoke-color);
  margin-bottom: 30px;
  border-radius: 24px;
}
.blog-page .blog-single .blog-audio:hover img,
.blog-page .blog-single .blog-img:hover img,
.blog-page .blog-single .blog-video:hover img {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
}
.blog-page .blog-single .blog-img .slider-arrow {
  --pos-x: 30px;
  --icon-size: 44px;
  border: none;
  background-color: var(--white-color);
  color: var(--theme-color);
  box-shadow: none;
  visibility: visible;
  opacity: 1;
}
.blog-page .blog-single .blog-img .slider-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.blog-page .blog-single .blog-img .play-btn {
  --icon-size: 60px;
  position: absolute;
  left: 50%;
  top: 42%;
  margin: calc(var(--icon-size) / -2) 0 0 calc(var(--icon-size) / -2);
}
.blog-page .blog-single .line-btn {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: -1px;
}

/* Share links */
.blog-page .share-links {
  margin: 40px 0 0 0;
  padding: var(--blog-space-y, 40px) 0 0 0;
  border-top: 1px solid var(--th-border-color);
}
.blog-page .share-links>.row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  --bs-gutter-y: 15px;
}
.blog-page .share-links .wp-block-tag-cloud,
.blog-page .share-links .tagcloud {
  display: inline-block;
}
.blog-page .share-links .wp-block-tag-cloud a,
.blog-page .share-links .tagcloud a {
  background-color: var(--smoke-color);
  box-shadow: none;
}
.blog-page .share-links .wp-block-tag-cloud a:hover,
.blog-page .share-links .tagcloud a:hover {
  background-color: var(--theme-color);
}
.blog-page .share-links .th-social {
  display: inline-block;
}
.blog-page .share-links .th-social a {
  --icon-size: 40px;
  font-size: 14px;
  border-radius: 99px;
}

/* Blog author */
.blog-page .blog-author {
  margin-top: 40px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--smoke-color);
  border-radius: 20px;
  overflow: hidden;
}
.blog-page .blog-author .auhtor-img {
  width: 212px;
  min-height: 100%;
  background-color: #00ffff;
  text-align: center;
  display: grid;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .blog-page .blog-author .auhtor-img {
    width: 100%;
    min-height: 200px;
  }
}
.blog-page .blog-author .auhtor-img img {
  width: 96px;
  height: auto;
  object-fit: cover;
  object-position: center center;
}
.blog-page .blog-author .author-name {
  font-size: 24px;
  margin-top: -0.2em;
  margin-bottom: 16px;
}
.blog-page .blog-author .author-text {
  margin-bottom: 0;
}
.blog-page .blog-author .media-body {
  padding: 40px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
@media (max-width: 767px) {
  .blog-page .blog-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .blog-page .blog-author .auhtor-img img {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .blog-page .blog-author .media-body {
    padding: 35px 20px 30px 20px;
  }
}

/* Blog details */
.blog-page .blog-details .blog-single {
  background-color: transparent;
}
.blog-page .blog-details .blog-content>ol:last-of-type,
.blog-page .blog-details .blog-content>p:last-child {
  margin-bottom: 0;
}
.blog-page .blog-content .wp-block-search .wp-block-search__input {
  box-shadow: none;
}

/* Blog single responsive */
@media (max-width: 1399px) {
  .blog-page .blog-single .blog-title {
    font-size: 28px;
    line-height: 1.4;
  }
  .blog-page .share-links {
    --blog-space-x: 20px;
  }
}
@media (max-width: 1199px) {
  .blog-page .blog-single {
    --blog-space-x: 20px;
    --blog-space-y: 20px;
  }
}
@media (max-width: 991px) {
  .blog-page .blog-single {
    --blog-space-x: 40px;
    --blog-space-y: 40px;
  }
  .blog-page .share-links {
    --blog-space-x: 40px;
  }
}
@media (max-width: 767px) {
  .blog-page .share-links {
    --blog-space-x: 20px;
  }
  .blog-page .blog-details .blog-single {
    --blog-space-x: 20px;
    --blog-space-y: 20px;
  }
  .blog-page .blog-single {
    --blog-space-x: 20px;
    --blog-space-y: 20px;
    border-radius: 10px;
  }
  .blog-page .blog-single .blog-audio,
  .blog-page .blog-single .blog-video,
  .blog-page .blog-single .blog-img {
    border-radius: 15px;
  }
  .blog-page .blog-single .blog-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .blog-page .blog-single .blog-text {
    margin-bottom: 22px;
  }
  .blog-page .blog-single .blog-bottom {
    padding-top: 15px;
  }
}
@media (max-width: 575px) {
  .blog-page .share-links-title {
    margin: 0 15px 5px 0;
  }
}

/* Comments */
.blog-page .th-comment-form {
  margin-top: var(--blog-space-y, 40px);
  margin-bottom: 30px;
  padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
  position: relative;
}
.blog-page .th-comment-form .blog-inner-title {
  margin-bottom: 0px;
}
.blog-page .blog-comment-area {
  margin-bottom: 25px;
}
.blog-page .th-comments-wrap {
  margin-top: var(--blog-space-y, 40px);
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .blog-page .th-comment-form {
    --blog-space-x: 20px;
  }
}

/*------------------- Blog Card -------------------*/
.blog-page .blog-card {
  padding: 16px;
  border-radius: 24px;
  background-color: var(--white-color);
  position: relative;
  z-index: 2;
  margin: -0.4em 0 15px 0;
}
.blog-page .blog-card .blog-img {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}
.blog-page .blog-card .blog-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.blog-page .blog-card .blog-content {
  padding: 0 8px 12px 8px;
}
.blog-page .blog-card .box-title {
  margin-bottom: 15px;
  font-weight: 600;
  padding-top: 20px;
}
.blog-page .blog-card .box-title a {
  background-image: -webkit-linear-gradient(right, var(--theme-color), var(--theme-color));
  background-image: linear-gradient(to left, var(--theme-color), var(--theme-color));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.blog-page .blog-card .box-title a:hover {
  background-size: 100% 2px;
}
.blog-page .blog-card>i {
  color: var(--theme-color);
}
.blog-page .blog-card.style2 {
  border-radius: 0;
}
.blog-page .blog-card.style2 .blog-img {
  border-radius: 0;
}
.blog-page .blog-card.style2 .box-date:before {
  border-radius: 0;
  -webkit-transform: skew(-15deg) translateX(-10px);
  -ms-transform: skew(-15deg) translateX(-10px);
  transform: skew(-15deg) translateX(-10px);
}
.blog-page .blog-card.style3 .box-date {
  position: absolute;
  margin: 0;
  top: 0;
  right: 32px;
  line-height: 1.1;
  text-align: center;
  border-radius: 0 0 90px 90px;
  padding: 24px 10px 32px 10px;
  font-size: 14px;
}
.blog-page .blog-card.style3 .box-date .date {
  display: block;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--title-font);
}
.blog-page .blog-card.style3 .blog-img {
  margin-bottom: 30px;
  -webkit-mask-image: url('data:image/svg+xml,<svg width="392" height="269" viewBox="0 0 392 269" preserveAspectRatio="none" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H392V226.361C392 228.937 390.425 231.252 388.028 232.198V232.198C264.642 280.904 127.358 280.904 3.97161 232.198V232.198C1.57492 231.252 0 228.937 0 226.361V0Z" fill="%23D9D9D9"/></svg>');
  mask-image: url('data:image/svg+xml,<svg width="392" height="269" viewBox="0 0 392 269" preserveAspectRatio="none" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H392V226.361C392 228.937 390.425 231.252 388.028 232.198V232.198C264.642 280.904 127.358 280.904 3.97161 232.198V232.198C1.57492 231.252 0 228.937 0 226.361V0Z" fill="%23D9D9D9"/></svg>');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.blog-page .blog-card:hover .blog-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}
@media (max-width: 1299px) {
  .blog-page .blog-card .box-title {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .blog-page .blog-card .box-title {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .blog-page .blog-card .box-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .blog-page .blog-card .box-title {
    font-size: 24px;
  }
}
@media (max-width: 410px) {
  .blog-page .blog-card .box-title {
    font-size: 22px;
  }
}
@media (max-width: 350px) {
  .blog-page .blog-card .box-title {
    font-size: 20px;
  }
}

/*------------------- Blog Box -------------------*/
.blog-page .blog-box {
  position: relative;
  z-index: 2;
  padding-bottom: 130px;
  margin-bottom: 39px;
  margin: -0.4em 0 15px 0;
}
.blog-page .blog-box .blog-img {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  -webkit-mask-image: url('data:image/svg+xml,<svg width="424" height="495" viewBox="0 0 424 495" preserveAspectRatio="none" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H118H271H333.475C342.415 0 350.947 3.73938 357.005 10.3127L415.53 73.8103C420.976 79.7194 424 87.4614 424 95.4976V495H0V0Z" fill="white"/></svg>');
  mask-image: url('data:image/svg+xml,<svg width="424" height="495" viewBox="0 0 424 495" preserveAspectRatio="none" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H118H271H333.475C342.415 0 350.947 3.73938 357.005 10.3127L415.53 73.8103C420.976 79.7194 424 87.4614 424 95.4976V495H0V0Z" fill="white"/></svg>');
  -webkit-mask-size: 100%;
  mask-size: 100%;
}
.blog-page .blog-box .blog-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.blog-page .blog-box .blog-content {
  padding: 32px 28px 64px 32px;
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  z-index: 3;
}
.blog-page .blog-box .blog-content:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 64, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  z-index: -1;
}
.blog-page .blog-box .box-title {
  font-size: 22px;
  color: var(--white-color);
  margin-bottom: -0.2em;
  font-weight: 600;
}
.blog-page .blog-box .box-title a {
  background-image: -webkit-linear-gradient(right, var(--theme-color), var(--theme-color));
  background-image: linear-gradient(to left, var(--theme-color), var(--theme-color));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.blog-page .blog-box .box-title a:hover {
  background-size: 100% 2px;
}
.blog-page .blog-box .box-btn {
  position: absolute;
  bottom: -39px;
  left: calc(50% - 34px);
}
.blog-page .blog-box:hover .blog-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}
@media (max-width: 1299px) {
  .blog-page .blog-box .box-title {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .blog-page .blog-box .box-title {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .blog-page .blog-box .box-title {
    font-size: 20px;
  }
  .blog-page .blog-box .blog-content {
    padding: 24px 24px 48px 24px;
  }
}
@media (max-width: 767px) {
  .blog-page .blog-box .box-title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .blog-page .blog-box .box-title {
    font-size: 22px;
  }
}
@media (max-width: 350px) {
  .blog-page .blog-box .box-title {
    font-size: 20px;
  }
}

/*------------------- Blog Grid -------------------*/
.blog-page .blog-grid {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: -0.4em 0 15px 0;
}
.blog-page .blog-grid:after,
.blog-page .blog-grid:before {
  content: "";
  box-shadow: inset 30px 30px 0 0 var(--body-bg);
  width: 60px;
  height: 60px;
  position: absolute;
  border-radius: 24px;
  top: 43px;
  right: -30px;
  z-index: 3;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.blog-page .blog-grid:before {
  top: -30px;
  right: 43px;
}
.blog-page .blog-grid .blog-img {
  display: block;
  border-radius: 24px;
  overflow: hidden;
}
.blog-page .blog-grid .blog-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.blog-page .blog-grid .blog-content {
  padding: 32px 28px 32px 32px;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
}
.blog-page .blog-grid .blog-content:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 64, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  z-index: -1;
}
.blog-page .blog-grid .box-title {
  font-size: 22px;
  color: var(--white-color);
  margin-bottom: -0.2em;
  font-weight: 600;
}
.blog-page .blog-grid .box-title a {
  background-image: -webkit-linear-gradient(right, var(--theme-color), var(--theme-color));
  background-image: linear-gradient(to left, var(--theme-color), var(--theme-color));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.blog-page .blog-grid .box-title a:hover {
  background-size: 100% 2px;
}
.blog-page .blog-grid .icon-btn {
  --btn-size: 66px;
  font-size: 26px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
}
.blog-page .blog-grid .icon-btn:after {
  content: "";
  position: absolute;
  inset: -8px;
  background-color: var(--light-color);
  border: 8px solid var(--body-bg);
  border-radius: 99px;
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.blog-page .blog-grid .icon-btn:hover:after {
  background-color: var(--title-color);
}
.blog-page .blog-grid:hover .blog-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}
@media (max-width: 375px) {
  .blog-page .blog-grid .box-title {
    font-size: 20px;
  }
  .blog-page .blog-grid .blog-content {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }
}

/*------------------- Blog CTA -------------------*/
.blog-page .blog-cta-wrap {
  margin-top: 48px;
}
.blog-page .blog-cta-box {
  padding: 28px 32px;
  margin-bottom: 20px;
  background: var(--smoke-color);
  border-radius: 12px;
  border-left: 4px solid var(--theme-color);
}
.blog-page .blog-cta-box:last-child {
  margin-bottom: 0;
}
.blog-page .blog-cta-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--title-color);
  margin: 0 0 10px 0;
  font-family: var(--title-font);
}
.blog-page .blog-cta-desc {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.6;
  margin: 0 0 18px 0;
}
.blog-page .blog-cta-box .th-btn2 {
  margin-top: 0;
}

/*------------------- Blog FAQ -------------------*/
.blog-page .blog-faq-wrap {
  margin-top: 48px;
}
.blog-page .blog-faq-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--title-color);
  margin: 0 0 24px 0;
  font-family: var(--title-font);
}
.blog-page .blog-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-page .blog-faq-card {
  background: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--th-border-color);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-page .blog-faq-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.blog-page .blog-faq-card:has(.show) {
  border-color: var(--theme-color);
  box-shadow: 0 4px 20px rgba(102, 153, 0, 0.12);
}
.blog-page .blog-faq-card .accordion-header {
  margin: 0;
}
.blog-page .blog-faq-card .accordion-button {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--title-color);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 20px 52px 20px 24px;
  min-height: auto;
  text-align: left;
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
  box-shadow: none !important;
}
.blog-page .blog-faq-card .accordion-button:hover {
  color: var(--theme-color);
}
.blog-page .blog-faq-card .accordion-button:not(.collapsed) {
  color: var(--theme-color);
  background: rgba(102, 153, 0, 0.06);
}
.blog-page .blog-faq-card .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.blog-page .blog-faq-card .accordion-button::after {
  content: "\f078";
  font-family: var(--icon-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-color);
  background: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.blog-page .blog-faq-card .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}
.blog-page .blog-faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  margin-right: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
  background: rgba(102, 153, 0, 0.12);
  border-radius: 8px;
  flex-shrink: 0;
}
.blog-page .blog-faq-card .accordion-collapse {
  border: none;
}
.blog-page .blog-faq-card .accordion-body {
  padding: 0 24px 24px 24px;
  border: none;
  border-top: 1px solid var(--th-border-color);
}
.blog-page .blog-faq-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-color);
  padding-top: 16px;
  margin: 0;
}
@media (max-width: 575px) {
  .blog-page .blog-faq-card .accordion-button {
    font-size: 15px;
    padding: 16px 48px 16px 20px;
  }
  .blog-page .blog-faq-num {
    min-width: 24px;
    height: 24px;
    font-size: 12px;
    margin-right: 10px;
  }
  .blog-page .blog-faq-card .accordion-body {
    padding: 0 20px 20px 20px;
  }
}

/* Dark theme - blog card */
.dark-theme .blog-page .blog-card .blog-content {
  background-color: var(--smoke-color);
  box-shadow: none;
}
.dark-theme .blog-page .blog-card {
  color: var(--theme-color);
}
.dark-theme .blog-page .blog-card .box-title a {
  background-image: -webkit-linear-gradient(right, var(--theme-color), var(--theme-color));
  background-image: linear-gradient(to left, var(--theme-color), var(--theme-color));
}
.dark-theme .blog-page .blog-card .th-btn {
  background-image: -webkit-linear-gradient(left, var(--theme-color) 0%, var(--gr-color2) 100%);
  background-image: linear-gradient(to right, var(--theme-color) 0%, var(--gr-color2) 100%);
}
.dark-theme .blog-page .blog-card .th-btn:after {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #010407;
  border-radius: inherit;
  z-index: -2;
}
.dark-theme .blog-page .blog-card .th-btn:before {
  background-image: -webkit-linear-gradient(left, var(--theme-color) 0%, var(--gr-color2) 100%);
  background-image: linear-gradient(to right, var(--theme-color) 0%, var(--gr-color2) 100%);
}
.dark-theme .blog-page .blog-card .th-btn:hover {
  color: var(--white-color);
}


/*------------------- Blog Blockquote -------------------*/
/*------------------- Blog Blockquote -------------------*/
/* .blog-page .blog-content blockquote,
.blog-page .blog-content .wp-block-quote {
  margin: 20px 0 !important;
  padding: 20px 24px 20px 56px !important;
  background: #ffffff !important;
  border: none !important;
  border-left: 4px solid #669900 !important;
  font-style: normal !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #666666 !important;
  position: relative !important;
}

.blog-page .blog-content blockquote::before,
.blog-page .blog-content .wp-block-quote::before {
  content: "\f0eb" !important;
  font-family: "Font Awesome 6 Pro" !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  position: absolute !important;
  left: 18px !important;
  top: 22px !important;
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #669900 !important;
  border-radius: 8px !important;
}

.blog-page .blog-content blockquote::after,
.blog-page .blog-content .wp-block-quote::after {
  display: none !important;
}

.blog-page .blog-content blockquote p,
.blog-page .blog-content .wp-block-quote p {
  margin: 0 0 8px 0 !important;
}

.blog-page .blog-content blockquote p:last-child,
.blog-page .blog-content .wp-block-quote p:last-child {
  margin-bottom: 0 !important;
} */

/*------------------- Blog Blockquote (Pro-Tip) -------------------*/
.blog-page .blog-content blockquote,
.blog-page .blog-content .wp-block-quote {
  margin: 24px 0 !important;
  padding: 20px 24px 20px 72px !important;
  background: #f9f9f9 !important;
  border: 1px solid #dddddd !important;
  border-left: 6px solid #60b044 !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  font-style: normal !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #333333 !important;
  position: relative !important;
}

.blog-page .blog-content blockquote::before,
.blog-page .blog-content .wp-block-quote::before {
  content: "\f0eb" !important;
  font-family: "Font Awesome 6 Pro" !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  position: absolute !important;
  left: 20px !important;
  top: 20px !important;
  width: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #60b044 !important;
  border-radius: 50% !important;
}

.blog-page .blog-content blockquote::after,
.blog-page .blog-content .wp-block-quote::after {
  display: none !important;
}

.blog-page .blog-content blockquote strong,
.blog-page .blog-content blockquote b,
.blog-page .blog-content .wp-block-quote strong,
.blog-page .blog-content .wp-block-quote b {
  font-size: 16px !important;
  font-weight: bold !important;
  color: #333333 !important;
  display: block !important;
  margin-bottom: 10px !important;
}

.blog-page .blog-content blockquote p,
.blog-page .blog-content .wp-block-quote p {
  margin: 0 0 10px 0 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #333333 !important;
}

.blog-page .blog-content blockquote p:last-child,
.blog-page .blog-content .wp-block-quote p:last-child {
  margin-bottom: 0 !important;
}

/*------------------- Blog Suggested Reads -------------------*/
/*------------------- Blog Suggested Reads -------------------*/
/*------------------- Blog Suggested Reads -------------------*/
.blog-page .blog-suggested-reads {
  margin: 24px 0 !important;
  padding: 16px 20px !important;
  background: #ffffff !important;
  border-left: 5px solid #669900 !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: #000000 !important;
}

.blog-page .blog-suggested-reads a {
  font-weight: 600 !important;
  color: #669900 !important;
  text-decoration: none !important;
}

.blog-page .blog-suggested-reads a:hover {
  color: #66cc00 !important;
  text-decoration: underline !important;
}

/*------------------- Blog Tags / Pills -------------------*/
.blog-page .blog-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin: 24px 0;
}

.blog-page .blog-tag {
  display: inline-block;
  padding: 10px 18px;
  background: #e9ecef;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.blog-page .blog-tag:hover {
  background: #669900;
  color: #ffffff;
  box-shadow: 0 3px 6px rgba(102, 153, 0, 0.3);
}