/* ===========================
   Blog Page & Details Styles
   =========================== */

.blog-details-description {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.blog-details-image {
    margin-bottom: 30px;
}

.blog-details-image img {
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.post-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.post-meta li {
    font-size: 14px;
    color: #606060;
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta li i {
    color: #00afef;
    font-size: 18px;
}

.blog-details-description h3 {
    font-size: 28px;
    color: #0f2457;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-details-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Sidebar Styling */
.widget-area {
    padding-left: 20px;
}

.widget {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.widget-title {
    font-size: 20px;
    color: #0f2457;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #00afef;
}

.recent-post-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-post-item:last-child {
    margin-bottom: 0;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.recent-post-image img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 15px;
    color: #0f2457;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.4;
}

.recent-post-content h4 a:hover {
    color: #00afef;
}

.recent-post-content span {
    font-size: 13px;
    color: #777;
    display: block;
}

.widget_categories ul,
.widget_archive ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_categories ul li,
.widget_archive ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.widget_categories ul li a,
.widget_archive ul li a {
    color: #444;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
}

.widget_categories ul li a:hover {
    color: #00afef;
    padding-left: 5px;
}

@media (max-width: 991px) {
    .widget-area {
        padding-left: 0;
        margin-top: 50px;
    }
}