/* Blog CSS */
.blog-area {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.blog-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
    position: relative;
    overflow: hidden;
}

.blog-item-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-img img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5b700;
    color: #0b1c3f;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(245, 183, 0, 0.3);
}

.blog-date strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

.blog-date span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-item-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-item-meta {
    margin-bottom: 15px;
}

.blog-item-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.blog-item-meta li a {
    color: #6c757d;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.blog-item-meta li a:hover {
    color: #0d6efd;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #0b1c3f;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #0d6efd;
}

.blog-item-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    align-self: flex-start;
}

.theme-btn:hover {
    color: #0b1c3f;
}

.theme-btn i {
    font-size: 14px;
    transition: transform 0.3s;
}

.theme-btn:hover i {
    transform: translateX(4px);
}

.site-heading {
    margin-bottom: 40px;
}

.site-title-tagline {
    display: inline-block;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 10px;
    background: rgba(13, 110, 253, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.site-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1c3f;
    margin-bottom: 15px;
}

.site-title span {
    color: #0d6efd;
}

.heading-divider {
    height: 3px;
    width: 60px;
    background: #f5b700;
    margin: 0 auto;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a, .pagination strong {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #0b1c3f;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pagination a:hover, .pagination strong {
    background: #0d6efd;
    color: #fff;
}

/* Blog Single View */
.blog-single-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 40px;
}
.blog-thumb-img img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    max-height: 400px;
    object-fit: cover;
}
.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.blog-meta-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
.blog-meta-left li {
    color: #6c757d;
    font-size: 14px;
}
.blog-meta-left li i {
    color: #0d6efd;
    margin-right: 8px;
}
.share-link {
    color: #0b1c3f;
    font-weight: 600;
    text-decoration: none;
}
.share-link:hover {
    color: #0d6efd;
}
.blog-details-title {
    font-size: 28px;
    font-weight: 700;
    color: #0b1c3f;
    margin-bottom: 20px;
    line-height: 1.4;
}
.blog-details p, .blog-details div {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
}

/* Sidebar */
.blog-sidebar .widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 30px;
}
.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #0b1c3f;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}
.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 40px;
    background: #f5b700;
}
.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}
.recent-post-item:last-child {
    margin-bottom: 0;
}
.recent-post-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.recent-post-info h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}
.recent-post-info h6 a {
    color: #0b1c3f;
    text-decoration: none;
    transition: color 0.3s;
}
.recent-post-info h6 a:hover {
    color: #0d6efd;
}
.recent-post-info span {
    font-size: 13px;
    color: #6c757d;
}
.social-link {
    display: flex;
    gap: 10px;
}
.social-link a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #0b1c3f;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}
.social-link a:hover {
    background: #0d6efd;
    color: #fff;
}
