/* Blog Grid + Single Post Styles - Liquido */

/* ==================== BANNER ==================== */
.blog-banner .custom-h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 5vw, 68px);
  color: #fff;
  letter-spacing: 0.02em;
}

/* Title + breadcrumb stacked, centered, contained inside banner bounds */
.blog-banner .svgliquido {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
  text-align: center;
}

.blog-banner .svgliquido h1,
.blog-banner .svgliquido h2.custom-h1 {
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.15;
  margin: 0;
}

/* Banner breadcrumb override (separate from the in-content version) */
.blog-banner .blog-breadcrumb {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  font-size: clamp(12px, 0.95vw, 15px);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.02em;
}

.blog-banner .blog-breadcrumb a {
  color: #f47c56;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}

.blog-banner .blog-breadcrumb a:hover {
  color: #ffb18a;
  text-decoration: underline;
}

.blog-banner .blog-breadcrumb span {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 640px) {
  .blog-banner .svgliquido {
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .blog-banner .blog-breadcrumb {
    font-size: 12px;
  }
}

/* ==================== GRID LISTING ==================== */
.blog-listing-wrp {
  background: #000;
  padding: 6vw 4vw;
  width: 100%;
}

.blog-listing-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.blog-listing-head {
  text-align: center;
  margin-bottom: 4vw;
}

.blog-listing-head h2 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 56px);
  margin-bottom: 1rem;
}

.blog-listing-head p {
  color: #c9c9c9;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1vw, 18px);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
}

.blog-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: #f47c56;
  box-shadow: 0 20px 50px rgba(244, 124, 86, 0.18);
}

.blog-card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
  filter: saturate(0);
}

.blog-card:hover .blog-card-img img {
  filter: saturate(1);
}

.blog-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(90deg, #F0495D 0%, #F36947 50%, #F79628 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

.blog-card-body {
  padding: 1.6vw 1.6vw 1.8vw;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #8a8a8a;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card-meta span+span:before {
  content: '\2022';
  margin-right: 0.8rem;
  color: #f47c56;
}

.blog-card-body h3 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.35;
  margin: 0;
}

.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card-body h3 a:hover {
  color: #f47c56;
}

.blog-card-body p {
  color: #b5b5b5;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-readmore {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f47c56;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card-readmore svg {
  transition: transform .3s ease;
}

.blog-card-readmore:hover svg {
  transform: translateX(6px);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 4vw;
}

.blog-pagination a,
.blog-pagination span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: all .25s ease;
}

.blog-pagination a:hover,
.blog-pagination .active {
  background: #f47c56;
  border-color: #f47c56;
}

/* ==================== SINGLE POST ==================== */
.blog-single-wrp {
  background: #000;
  width: 100%;
  padding: 4rem 3rem 4rem;
}

@media (max-width: 640px) {
  .blog-single-wrp {
    padding: 2.5rem 1.25rem 3rem;
  }
}

.blog-single-inner {
  max-width: 1280px;
  margin: 0 auto;
  color: #e5e5e5;
}

.blog-single-inner.row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 0;
  /* leave align-items at Bootstrap default (stretch) so col-md-4 stretches to the row's full height — sticky needs the parent taller than the sticky child to actually stick */
}

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

.blog-single-aside {
  display: block;
  height: 100%;
  /* sticky child needs a tall parent to slide inside — fills col-md-4's stretched height */
}

/* ===== TOC dark-theme override (toc.php styles get themed here) ===== */
.blog-single-aside .toc-wrapper {
  background: #0d0d0d !important;
  border: 1px solid #1f1f1f !important;
  border-radius: 12px !important;
  max-width: 100% !important;
  width: 100% !important;
  position: sticky !important;
  top: 160px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 5;
}

.blog-single-aside .toc-title {
  background: linear-gradient(90deg, #F0495D 0%, #F36947 50%, #F79628 100%) !important;
  color: #fff !important;
  padding: 16px 20px !important;
  margin: 0 !important;
  border-radius: 12px 12px 0 0 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-single-aside #toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
}

.blog-single-aside #toc-list::-webkit-scrollbar {
  width: 4px;
}

.blog-single-aside #toc-list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 2px;
}

.blog-single-aside .toc-item {
  padding: 12px 16px 12px 38px !important;
  color: #c0c0c0;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  line-height: 1.45;
  border-bottom: 1px solid #1a1a1a !important;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.blog-single-aside .toc-item:last-child {
  border-bottom: none !important;
}

.blog-single-aside .toc-item::before {
  content: "" !important;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #444;
  font-family: inherit !important;
  font-size: 0 !important;
  opacity: 1 !important;
  transition: background .25s ease, transform .25s ease;
}

.blog-single-aside .toc-item:hover {
  background: #161616 !important;
  color: #fff;
}

.blog-single-aside .toc-item:hover::before {
  background: #f47c56 !important;
  transform: translateY(-50%) scale(1.4);
}

.blog-single-aside .toc-item.active {
  background: #161616 !important;
  color: #fff !important;
  font-weight: 600;
  border-left: 3px solid #f47c56 !important;
  padding-left: 35px !important;
}

.blog-single-aside .toc-item.active::before {
  background: #f47c56 !important;
  transform: translateY(-50%) scale(1.6);
  box-shadow: 0 0 0 4px rgba(244, 124, 86, 0.18);
}

/* ===== Share card under TOC ===== */
.blog-single-aside .blog-share {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.blog-single-aside .blog-share span {
  color: #f47c56;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  flex: 0 0 auto;
}

.blog-single-aside .blog-share a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid #262626;
  color: #c8c8c8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .25s ease;
}

.blog-single-aside .blog-share a:hover {
  background: linear-gradient(135deg, #F0495D 0%, #F79628 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .blog-single-inner.row {
    --bs-gutter-x: 0;
    row-gap: 2rem;
  }

  .blog-single-aside .toc-wrapper {
    display: none !important;
  }

  .blog-single-aside #toc-list {
    max-height: 50vh;
  }
}

.blog-breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.blog-breadcrumb a {
  color: #f47c56;
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-single-title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}

.blog-single-meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  color: #9a9a9a;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #222;
}

.blog-single-meta .author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.blog-single-meta .author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-single-meta strong {
  color: #fff;
  font-weight: 600;
}

.blog-featured-img {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: #1a1a1a;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-takeaways {
  background: linear-gradient(135deg, rgba(240, 73, 93, 0.08) 0%, rgba(247, 150, 40, 0.08) 100%);
  border-left: 4px solid #f47c56;
  border-radius: 8px;
  padding: 1.8rem 2rem;
  margin: 2rem 0 2.5rem;
}

.blog-takeaways h4 {
  color: #f47c56;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  margin: 0 0 1rem;
}

.blog-takeaways ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #d8d8d8;
}

.blog-takeaways li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-size: 15px;
}

.blog-content {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #cfcfcf;
}

.blog-content h2 {
  color: #fff;
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 30px);
  margin: 3rem 0 1.2rem;
  line-height: 1.3;
  scroll-margin-top: 100px;
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid #f47c56;
}

.blog-content h3 {
  color: #fff;
  font-weight: 600;
  font-size: clamp(18px, 1.35vw, 22px);
  margin: 2.2rem 0 0.8rem;
  line-height: 1.4;
  scroll-margin-top: 100px;
}

.blog-content p {
  margin: 0 0 1.25rem;
}

.blog-content p strong {
  color: #fff;
  font-weight: 600;
}

.blog-content a {
  color: #f47c56;
  text-decoration: none;
  border-bottom: 1px dashed rgba(244, 124, 86, 0.5);
  padding-bottom: 1px;
  transition: border-color .2s ease, color .2s ease;
}

.blog-content a:hover {
  color: #ffa178;
  border-bottom-color: #ffa178;
}

.blog-content ul,
.blog-content ol {
  padding-left: 0;
  margin: 0 0 1.5rem;
  list-style: none;
  counter-reset: ol-counter;
}

.blog-content ul li,
.blog-content ol li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.7rem;
  line-height: 1.7;
}

.blog-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: #f47c56;
  border-radius: 2px;
  transform: rotate(45deg);
}

.blog-content ol {
  counter-reset: ol-counter;
}

.blog-content ol li {
  counter-increment: ol-counter;
}

.blog-content ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: #f47c56;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.blog-content blockquote {
  border: none;
  border-left: 4px solid #f47c56;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #e2e2e2;
  background: linear-gradient(90deg, rgba(244, 124, 86, 0.08) 0%, transparent 100%);
  border-radius: 0 10px 10px 0;
  font-size: 17px;
  line-height: 1.6;
  position: relative;
}

.blog-content blockquote::before {
  content: "\201C";
  position: absolute;
  top: -0.4rem;
  left: 1rem;
  font-size: 3rem;
  color: rgba(244, 124, 86, 0.25);
  font-family: Georgia, serif;
  line-height: 1;
}

.blog-content img {
  width: 100%;
  border-radius: 10px;
  margin: 1.6rem 0;
}

/* ===== Blog Author Card (components/blog-author.php) ===== */
.blog-author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: 1.8rem 2rem;
  margin: 3rem 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #141414 100%);
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.blog-author-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F0495D 0%, #F36947 50%, #F79628 100%);
  opacity: 0.05;
  pointer-events: none;
}

.blog-author-card__media {
  position: relative;
  z-index: 1;
}

.blog-author-card__imgwrap {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #1f1f1f;
  background: #1a1a1a;
  position: relative;
  transition: border-color .3s ease, transform .3s ease;
}

.blog-author-card__imgwrap::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F0495D 0%, #F79628 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity .3s ease;
}

.blog-author-card__imgwrap:hover {
  transform: scale(1.04);
  border-color: transparent;
}

.blog-author-card__imgwrap:hover::after {
  opacity: 1;
}

.blog-author-card__imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-author-card__body {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.blog-author-card__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f47c56;
  background: rgba(244, 124, 86, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 0.8rem;
  font-family: 'Poppins', sans-serif;
}

.blog-author-card__name {
  margin: 0 0 0.35rem;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 700;
  line-height: 1.2;
}

.blog-author-card__name a {
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  transition: color .25s ease;
}

.blog-author-card__name a:hover {
  color: #f47c56;
}

.blog-author-card__role {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  color: #b0b0b0;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.85rem;
}

.blog-author-card__role .dot {
  color: #f47c56;
  font-weight: 700;
}

.blog-author-card__bio {
  color: #c8c8c8;
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 1rem;
  font-family: 'Poppins', sans-serif;
}

.blog-author-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
}

.blog-author-card__chips li {
  font-size: 11.5px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e0e0e0;
  background: #1a1a1a;
  border: 1px solid #262626;
  padding: 5px 11px;
  border-radius: 100px;
  padding-left: 0;
  margin: 0;
}

.blog-author-card__chips li::before {
  display: none;
}

.blog-author-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-author-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #F0495D 0%, #F36947 50%, #F79628 100%);
  color: #fff;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  font-family: 'Poppins', sans-serif;
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-author-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(244, 124, 86, 0.35);
  color: #fff;
}

.blog-author-card__btn svg {
  transition: transform .25s ease;
}

.blog-author-card__btn:hover svg {
  transform: translateX(4px);
}

.blog-author-card__socials {
  display: flex;
  gap: 0.5rem;
}

.blog-author-card__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid #262626;
  color: #b8b8b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .25s ease;
}

.blog-author-card__socials a:hover {
  background: #f47c56;
  border-color: #f47c56;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .blog-author-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.8rem 1.25rem;
  }

  .blog-author-card__media {
    display: flex;
    justify-content: center;
  }

  .blog-author-card__role,
  .blog-author-card__actions,
  .blog-author-card__chips {
    justify-content: center;
  }
}

/* ===== Legacy author bio (kept for back-compat) ===== */
.blog-author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: #0e0e0e;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  margin: 3rem 0;
}

.blog-author-bio img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-author-bio .info {
  flex: 1;
}

.blog-author-bio h5 {
  color: #fff;
  margin: 0 0 0.3rem;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.blog-author-bio .role {
  color: #f47c56;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.blog-author-bio p {
  color: #b5b5b5;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.blog-cta-box {
  background: linear-gradient(90deg, #F0495D 0%, #F36947 50%, #F79628 100%);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-cta-box h4 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 28px);
  margin: 0 0 0.6rem;
}

.blog-cta-box p {
  color: #fff;
  margin: 0 0 1.4rem;
  opacity: 0.92;
}

.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform .25s ease, background .25s ease;
  border-bottom: none;
  width: fit-content;
  margin: 0 auto;
}

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

.blog-faq {
  margin: 3rem 0;
}

.blog-faq h3 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2vw, 32px);
  margin-bottom: 1.5rem;
}

.blog-faq-item {
  border-bottom: 1px solid #222;
  padding: 1.2rem 0;
}

.blog-faq-q {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.blog-faq-q:after {
  content: '+';
  color: #f47c56;
  font-size: 22px;
  font-weight: 300;
  transition: transform .3s ease;
}

.blog-faq-item.open .blog-faq-q:after {
  content: '\2212';
}

.blog-faq-a {
  display: none;
  color: #b5b5b5;
  line-height: 1.7;
  font-size: 15px;
  padding-top: 0.8rem;
}

.blog-faq-item.open .blog-faq-a {
  display: block;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.blog-share span {
  color: #888;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Poppins', sans-serif;
}

.blog-share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111;
  border: 1px solid #2a2a2a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all .25s ease;
}

.blog-share a:hover {
  background: #f47c56;
  border-color: #f47c56;
}

.related-posts {
  background: #050505;
  padding: 5vw 4vw;
}

.related-posts-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.related-posts h3 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2vw, 32px);
  margin-bottom: 2rem;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {

  .blog-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }

  .blog-card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {

  .blog-listing-wrp,
  .blog-single-wrp,
  .related-posts {
    padding: 8vw 5vw;
  }

  .blog-grid,
  .related-grid {
    grid-template-columns: 1fr;
    gap: 5vw;
  }

  .blog-author-bio {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .blog-single-meta {
    gap: 0.8rem;
    font-size: 12px;
  }

  .blog-takeaways {
    padding: 1.4rem;
  }

  .blog-hastag {
    margin-top: 25px;
}

.tag-box

 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
}
.blog-hastag .tag-title span {
    display: inline-block;
    padding: 6px 10px;
    margin: 5px 0;
    background: linear-gradient(90deg, #F0495D 0%, #F36947 50%, #F79628 100%) !important;
    border-radius: 50px;
    font-size: 14px;
    color: linear-gradient(90deg, #F0495D 0%, #F36947 50%, #F79628 100%) !important;
    text-decoration: none;
    transition: all 0.25s ease;
}
