.blog-standard-wrapper {
    max-width: 100%;
}

.blog-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    width: 100%;
}

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

.blog-card-modern:hover .blog-featured-image {
    transform: scale(1.08);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color1) 0%, var(--primary-color2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.blog-image-placeholder i {
    font-size: 56px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.date-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 65px;
}

.date-day {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 2px;
}

.date-month {
    font-size: 12px;
    font-weight: 600;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content-area {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.blog-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 500;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-item i {
    color: var(--primary-color1);
    font-size: 12px;
}

.stat-separator {
    color: #bdc3c7;
    margin: 0 4px;
}

.blog-title-modern {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-title-modern a {
    color: var(--title-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-title-modern a:hover {
    color: color-mix(in srgb, var(--primary-color1) 85%, #000);
}

.blog-excerpt-modern {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 400;
}

.blog-read-more {
    margin-top: auto;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color1);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-link:hover {
    color: color-mix(in srgb, var(--primary-color1) 85%, #000);
    transform: translateX(5px);
}

.read-more-link i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

.blog-pagination {
    margin-top: 60px;
    text-align: center;
}

.blog-pagination .pagination {
    display: inline-flex;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.blog-pagination .page-item .page-link {
    border: 2px solid #e9ecef;
    color: #666;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
}

.blog-pagination .page-item.active .page-link {
    background: var(--primary-color1);
    border-color: var(--primary-color1);
    color: white;
}

.blog-pagination .page-item .page-link:hover {
    background: var(--primary-color1);
    border-color: var(--primary-color1);
    color: white;
    transform: translateY(-3px);
}

.no-blogs-found {
    text-align: center;
    padding: 100px 20px;
}

.empty-state {
    max-width: 450px;
    margin: 0 auto;
}

.empty-state i {
    font-size: 72px;
    color: #bdc3c7;
    margin-bottom: 25px;
}

.empty-state h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 600;
}

.empty-state p {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
}