
.banner-section {
  height: 350px;
  background: url(../assets/banner.svg) no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-container .title1 {
  color: white;
  -webkit-text-stroke: 1px #eaffee;
  font-weight: 600;
}

/* Blog Details */

/* =========================
   BLOG DETAIL SECTION
========================= */


.blog-detail{
    padding: 60px 0;
    background: #f7f8fc;
}
/* =========================
   BLOG MAIN CONTENT
========================= */

.blog-detail-content {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}
.blog-detail-content ul{
    list-style-type: square;
}
/* Blog Title */
.blog-detail-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
    background: linear-gradient(90deg, #000000, #3ab052);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-detail-img img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Blog Meta */
.blog-meta {
    margin-block: 15px 20px;
}

.blog-meta span {
    font-size: 14px;
    color: #777;
    margin-right: 18px;
}

.blog-meta span i {
    color: #3ab052;
    margin-right: 6px;
}

/* Featured Image */
.blog-featured-img img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
}

/* Content */
.blog-detail-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* Sub Headings */
.blog-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #222;
    position: relative;
}

.blog-detail-content h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6a00, #3ab052);
    margin-top: 6px;
    border-radius: 3px;
}

/* =========================
   BLOG SIDEBAR
========================= */

.blog-sidebar {
    padding-left: 25px;
}

/* Sidebar Card */
.sidebar-box {
    background: #ffffff;
    padding: 24px;
    margin-bottom: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.sidebar-box:hover {
    transform: translateY(-5px);
}

.sidebar-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

/* Sidebar List */
.sidebar-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-box ul li {
    margin-bottom: 10px;
}

.sidebar-box ul li a {
    font-size: 14px;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-box ul li a:hover {
    color:  #3ab052;
    padding-left: 5px;
}

/* =========================
   TAGS
========================= */

.tag-list a {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    background: #f1f1f1;
    color: #444;
    border-radius: 20px;
    margin: 4px 4px 0 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-list a:hover {
    background: linear-gradient(90deg, #ff6a00, #3ab052);
    color: #ffffff;
}

/* =========================
   AUTHOR BOX
========================= */

.author-box {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #555;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }

    .blog-detail-title {
        font-size: 26px;
    }

    .blog-detail-content {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .blog-detail-title {
        font-size: 22px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-box img {
        margin: auto;
    }
}
