/* --- Header / Hero --- */
.esante-blog-header {
  padding: 60px 0 40px 0;
  text-align: center;
}

.esante-blog-category {
  background-color: rgba(0, 53, 43, 0.1);
  color: var(--esante-orange);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.esante-blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--esante-green);
  line-height: 1.3;
}

.esante-blog-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 40px;
}

.esante-blog-meta span {
  margin: 0 10px;
}

.esante-featured-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}

/* --- Content Layout --- */
.esante-blog-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--esante-text);
  margin-bottom: 25px;
}

.esante-blog-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--esante-green);
  margin-top: 40px;
  margin-bottom: 20px;
}

.esante-blog-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--esante-green);
  margin-top: 30px;
  margin-bottom: 15px;
}

.esante-blog-content blockquote {
  border-left: 4px solid var(--esante-orange);
  padding-left: 20px;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--esante-green);
  margin: 30px 0;
  background: #fff;
  padding: 20px;
  border-radius: 0 8px 8px 0;
}

/* --- Sidebar & TOC --- */
.esante-sidebar-wrapper {
  position: sticky;
  top: 40px;
}

/* Common Box Style */
.esante-sidebar-box {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.esante-widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--esante-green);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--esante-cream);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* TOC List Styling */
.esante-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.esante-toc-list li {
  margin-bottom: 12px;
}

.esante-toc-list a {
  text-decoration: none;
  color: var(--esante-text);
  font-size: 0.95rem;
  transition: 0.2s;
  display: block;
  border-left: 2px solid transparent;
  padding-left: 10px;
}

.esante-toc-list a:hover,
.esante-toc-list a.active {
  color: var(--esante-orange);
  border-left-color: var(--esante-orange);
}

/* Latest Blogs List */
.esante-latest-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.esante-latest-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.esante-latest-info h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.esante-latest-info h6 a {
  color: var(--esante-green);
  text-decoration: none;
  transition: 0.2s;
}

.esante-latest-info h6 a:hover {
  color: var(--esante-orange);
}

.esante-latest-date {
  font-size: 0.8rem;
  color: #888;
}

/* --- Mobile Accordion TOC --- */
.esante-mobile-toc-btn {
  background-color: white;
  color: var(--esante-green);
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.esante-mobile-toc-btn:focus {
  box-shadow: none;
  border-color: var(--esante-orange);
}

.esante-mobile-toc-body {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .esante-blog-title {
    font-size: 1.8rem;
  }
  .esante-featured-img {
    height: 250px;
  }
}
