.blog-container {
    background-color: #f5f5f5;
    padding: 80px 20px;
    min-height: 100vh;
}

.blog-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-subtitle {
    color: #F28F49;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F28F49;
    border-radius: 2px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    margin: 0;
    padding: 0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(242, 143, 73, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    margin: 0;
}

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

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

.blog-content {
    padding: 30px;
}

.blog-date {
    color: #F28F49;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.blog-card-title {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-card-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-excerpt {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

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

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 12px 16px;
    margin: 0 5px;
    background: white;
    color: #333333;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    font-weight: 600;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: #F28F49;
    color: white;
    border-color: #F28F49;
    transform: translateY(-2px);
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.no-posts p {
    font-size: 18px;
    color: #666666;
    margin: 0;
}

/* Responsive dizajn */
@media (max-width: 768px) {
    .blog-container {
        padding: 60px 15px;
    }
    
    .blog-title {
        font-size: 36px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-content {
        padding: 25px;
    }
    
    .blog-card-title {
        font-size: 20px;
    }
    
    .blog-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 28px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
    
    .blog-pagination .page-numbers {
        padding: 10px 12px;
        font-size: 14px;
    }
}
