/* KALIS SAFARI EXECUTIVE BLOG – FINAL 2025 */
/* Sidebar ONLY on single posts */
.blog-listing .article-sidebar { display: none !important; }
.blog-single .article-sidebar { display: block; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: auto !important; overflow-x: hidden; overflow-y: auto; font-family: 'Inter', sans-serif; background: #FFFAF5; color: #333; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* Hero */
/*.blog-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('assets/images/blog-hero-tanzania.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
} */
/* .hero-content h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 700; margin-bottom: 1rem; }
.hero-content p { font-size: 1.4rem; max-width: 700px; margin: 0 auto 2rem; }
.hero-cta { background: #D4AF37; color: #000; padding: 1rem 2.5rem; font-weight: 600; border-radius: 4px; text-decoration: none; }
.blog-hero p { font-size: 1.3rem; font-family: 'Roboto', sans-serif; font-weight: 300; margin-bottom: 2rem; color: var(--muted); } */
.blog-hero-content h1 {font-size: 3.5rem; font-family: 'Playfair Display', serif; font-weight: 700; margin-bottom: 1rem;  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);}
.blog-hero-content { max-width: 800px;padding: 2rem; animation: fadeInUp 1s ease-out forwards; opacity: 0; transform: translateY(20px);}
.blog-hero-content p {font-size: 1.3rem; font-family: 'Roboto', sans-serif; font-weight: 300; margin-bottom: 2rem; color: var(--muted);}



.blog-hero {
  min-height: 35vh;
  background: linear-gradient(135deg, var(--leopard-tan), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--earth-brown);
  position: relative;
  overflow: hidden;
}










/* VIEW TOUR BUTTON – EXACT SAFARI PAGE */
.btn-view-tour {
  display: inline-block;
padding: 5px 15px;
background: transparent;
color: #D4AF37;
border: 2px solid #D4AF37;
border-radius: 25px; /* Rounded edges */
font-weight: 600;
font-size: 0.65rem;
letter-spacing: 1.5px;
text-transform: uppercase;
text-decoration: none;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
z-index: 1;
}
.btn-view-tour::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background: #D4AF37;
  transition: all 0.4s ease;
  z-index: -1;
}
.btn-view-tour:hover {
  color: #000;
}
.btn-view-tour:hover::before { width: 100%; }

/* Featured */
.featured-post { padding: 100px 0; background: #fff; }
.featured-card { display: flex; gap: 50px; align-items: center; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.featured-card img { width: 50%; height: 500px; object-fit: cover; }
.featured-text { padding: 2rem; flex: 1; }
.featured-tag { background: #D4AF37; color: #000; padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 700; border-radius: 4px; }
.featured-text h2 { font-size: 2.4rem; margin: 1rem 0; line-height: 1.2; }

/* Feed */
.posts-feed { padding: 80px 0; background: #FFFAF5; }
.feed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 40px; }
.post-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.post-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.post-card img { width: 100%; height: 300px; object-fit: cover; }
.card-body { padding: 1.8rem; }
.cat { color: #D4AF37; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; }
.card-body h3 { font-size: 1.4rem; margin: 0.8rem 0; line-height: 1.3; }
.meta { font-size: 0.9rem; color: #666; margin-bottom: 1rem; }

/* Single Post Layout */
.blog-single .single-article .container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 70px;
  max-width: 1340px;
  margin: 120px auto;
  padding: 0 20px;
}
.article-content .hero-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 12px;
  margin: 2rem 0;
}
.article-content img {
  width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
}
.prose { font-size: 1.15rem; line-height: 1.9; }
.prose h2 { font-size: 2rem; margin: 3rem 0 1.5rem; color: #1A1A1A; }
.prose ul { margin: 1.5rem 0; padding-left: 2rem; }
.prose li { margin: 0.8rem 0; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1A1A1A;
}

/* Sidebar – ONLY on single posts */
.article-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.back-btn {
  display: block;
  background: #1A1A1A;
  color: white;
  text-align: center;
  padding: 1rem;
  border-radius: 0;
  text-decoration: none;
  margin-bottom: 2.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.sidebar-related h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #1A1A1A;
}
.sidebar-related ul {
  list-style: none;
}
.sidebar-related li {
  margin: 1rem 0;
}
.sidebar-related a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.sidebar-related a:hover {
  color: #D4AF37;
}
.sidebar-newsletter {
  margin-top: 3rem;
}
.sidebar-newsletter h4 {
  margin-bottom: 1rem;
}
.sidebar-newsletter input {
  width: 100%;
  padding: 0.9.rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.sidebar-newsletter button {
  width: 100%;
  background: #D4AF37;
  color: #000;
  border: none;
  padding: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

/* Newsletter Section */
.newsletter-executive { padding: 4rem 0; text-align: center; background: linear-gradient(175deg, var(--leopard-tan), var(--bg)); }
.newsletter-executive h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1rem; }
.newsletter-executive p { font-size: 1.1rem; margin-bottom: 2rem; color: var(--earth-brown); }
.newsletter-executive input { padding: 0.9rem; width: 300px; max-width: 90%; border: 1px solid #ccc; border-radius: 4px; margin-right: 10px; }

/* Responsive */
@media (max-width: 1024px) {
  .featured-card { flex-direction: column; }
  .featured-card img { width: 100%; height: 400px; }
  .blog-single .single-article .container { grid-template-columns: 1fr; }
  .article-sidebar { position: static; margin-top: 4rem; }
}

