
/* Main container */
.blog-detail-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    background: #fff;
}

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-header h1 {
    font-size: 50px;
    font-weight: 700;
    color: #2F5CEE;
    margin-bottom: 10px;
}

.blog-header .date {
    font-size: 16px;
    color: #777;
}

/* Main Image */
.blog-detail-img {
    width: 100%;
    /*max-height: 420px;*/
    object-fit: cover;
    border-radius: 8px;
    margin: 25px 0;
}

/* Content */
.content-wrapper {
    margin-top: 20px;
}

.content-wrapper .content {
    font-size: 18px;
    line-height: 1.7;
    color: grey;
    margin-bottom: 20px;
}

/* Bullet Points */
.points-box {
    background: #f8f9fc;
    padding: 20px 25px;
    border-left: 4px solid #3f51b5;
    border-radius: 6px;
    list-style: none;
}

.points-box li {
    font-size: 35px;
    padding: 6px 0;
    color: #333;
}

/* Nav Buttons */
.nav-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.btn-nav {
    padding: 10px 22px;
    background: #3f51b5;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
}

.btn-nav:hover {
    background: #2e3a99;
}

/* Responsive */
@media (max-width: 600px) {
    .blog-header h1 {
        font-size: 26px;
    }

    .content-wrapper .content {
        font-size: 16px;
    }

    .btn-nav {
        width: 48%;
        text-align: center;
    }
}

/* =============== GLOBAL BLOG WRAPPER =============== */
.blog-area {
  width: 100%;
  padding: 90px 0;
  background: #f7f8fc;
  display: flex;
  justify-content: center;
}

.blog-container {
  width: 92%;
  max-width: 1250px;
}

/* =============== SECTION TITLE =============== */
.blog-title {
  text-align: center;
  margin-bottom: 50px;
}

.blog-title span {
  font-size: 18px;
  color: #ff6f61;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  letter-spacing: -0.5px;
}

/* =============== BLOG GRID =============== */
.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 45px;
  align-items: start;
}

/* =============== FEATURED BLOG LEFT =============== */
.featured-blog {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.featured-blog:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.featured-blog img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.featured-content {
  padding: 28px 32px;
}

.featured-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: #222;
  margin-bottom: 12px;
}

.featured-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.featured-content .date {
  font-size: 14px;
  color: #888;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.featured-content a {
  color: #ff6f61;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}

.featured-content a:hover {
  text-decoration: underline;
}

/* =============== RIGHT BLOG MINI CARDS =============== */
.blog-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-card {
  background: #fff;
  padding: 22px 24px;
  border-radius: 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateX(6px);
  box-shadow: 0px 12px 35px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  object-fit: cover;
}

.blog-text h4 {
  font-size: 20px;
  color: #222;
  font-weight: 700;
  margin-bottom: 6px;
}

.blog-text p {
  font-size: 15px;
  color: #555;
  margin-bottom: 6px;
}

.blog-text a {
  color: #ff6f61;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.blog-text a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
