
/* =====================================
   BLOG HERO 
===================================== */

.blog-hero {
  background: linear-gradient(180deg, #fbd86f 0% , rgb(222, 143, 25)70%);
  color: #ffffff;
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.blog-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

/* Content wrapper */
.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

/* Typography */
.blog-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.blog-hero p {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero {
    padding: 70px 24px;
  }

  .blog-hero h1 {
    font-size: 2.3rem;
  }

  .blog-hero p {
    font-size: 1.05rem;
  }
}


/* FULL WIDTH GRID */
.blog-layout {
  width: 100%;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 2.6fr) minmax(0, 1fr);
  gap: 10x;
  box-sizing: border-box;
}

/* ================= LEFT CONTENT ================= */

.blog-main {
  max-width: 975px;      /* readable text width */
}

.blog-featured-img {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.blog-main p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 24px;
}

.blog-main h2 {
  font-size: 2rem;
  margin: 56px 0 20px;
  font-weight: 800;
  color: #031428;
}

.blog-main blockquote {
  margin: 48px 0;
  padding-left: 28px;
  border-left: 4px solid rgb(217, 143, 32);
  font-style: italic;
  font-size: 1.1rem;
  color: #333;
}

/* ================= SIDEBAR ================= */

.blog-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-box {
  background:linear-gradient(180deg, #f59191 0% , rgb(241, 195, 127)70%);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.sidebar-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.sidebar-box p {
  font-size: 0.95rem;
  color: #1c1a1a;
  line-height: 1.6;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 12px;
}

.sidebar-links a {
  text-decoration: none;
  color: #4a3e1c;
  font-weight: 600;
}

.sidebar-links a:hover {
  text-decoration: underline;
}

.sidebar-cta {
  display: inline-block;
  margin-top: 14px;
  background: rgb(185, 122, 28);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.cta-box {
  background: linear-gradient(180deg, #f59191 0% , rgb(241, 195, 127)70%);
  color: #fff;
  text-align: center;
}

.cta-box h3,
.cta-box p {
  color: #000000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .blog-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .blog-single-content {
    padding: 60px 0;
  }

  .blog-layout {
    padding: 0 20px;
  }
}
