/* Premium Blog Styles */

.blog-page {
    background-color: #f8f9fa;
    padding-bottom: 80px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: #e2e8f0;
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

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

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

.bg-blog-category {
    background-color: #e86238;
    color: #fff;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
}

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

.blog-meta {
    margin-bottom: 15px;
    font-size: 13px;
}

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

.blog-title a {
    color: #1e293b;
    transition: color 0.3s ease;
}

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

.blog-excerpt {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: auto;
}

.btn-blog-read {
    color: #e86238;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-blog-read:hover {
    color: #c94f29;
    transform: translateX(5px);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e86238;
}

/* Sidebar Search */
.btn-blog-search {
    background: #e86238;
    color: #fff;
    border: none;
}
.btn-blog-search:hover {
    background: #c94f29;
    color: #fff;
}

/* Sidebar Posts */
.sidebar-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sidebar-post:last-child {
    margin-bottom: 0;
}

.sidebar-post:hover {
    transform: translateX(5px);
}

.sidebar-post-image {
    flex: 0 0 80px;
    margin-right: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.sidebar-post-content {
    flex: 1;
}

.sidebar-post-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-post-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-post-title a:hover {
    color: #e86238;
}

.sidebar-post-meta {
    font-size: 12px;
    color: #94a3b8;
}
