/* ======= PAGE HEADER ======= */

/* ======= BLOG BANNER ======= */
.blog-banner {
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin-bottom: 25px;
}

/* ======= BLOG CONTENT CARD ======= */
.blog-content-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #efefef;
}
.blog-content-card h2 {
    font-size: 30px;
    font-weight: 700;
}
.blog-content-card p {
    font-size: 16px;
    line-height: 1.8;
}

/* ======= QUOTE ======= */
.blog-quote {
    background: #fdf5e6;
    padding: 18px;
    margin: 25px 0;
    border-left: 5px solid #ff9800;
    font-style: italic;
    border-radius: 6px;
}

/* ======= SIDEBAR ======= */
.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #efefef;
    margin-bottom: 30px;
}

.sidebar-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* RELATED BLOG ITEM */
.related-blog-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    background: #f8f9fc;
    text-decoration: none;
    transition: 0.25s;
}
.related-blog-item:hover {
    background: #eaf1ff;
}
.rb-img img {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}
.rb-content h5 {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
}
.rb-date {
    font-size: 13px;
    color: #777;
}

/* CATEGORY LIST */
.category-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}
.sidebar-section h3{
    padding-bottom:10px;
}
.category-item a {
    font-weight: 500;
    color: #333;
    text-decoration: none;
}
.category-item span {
    font-weight: 700;
    color: #555;
}

/* TAGS */
.tag-box span {
    display: inline-block;
    padding: 6px 12px;
    background: #eef3ff;
    margin: 4px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
}

