.blog-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.blog-list-header h1 {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.blog-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: linear-gradient(to bottom right, rgba(29, 45, 66, 0.7), rgba(13, 25, 42, 0.7));
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(90deg, rgba(15, 56, 110, 0.8), rgba(28, 108, 212, 0.8));
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a4f8f 0%, #3072E1 100%);
}

.placeholder-image svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.blog-card:hover .placeholder-image svg {
    opacity: 1;
}

.blog-card-content {
    padding: 24px;
}

.blog-card h2 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 16px;
}

.blog-summary {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
  .blog-list-header {
    margin-top: 70px;
  }

    .blog-list-container {
        padding: 40px 0;
    }

    .blog-list-header h1 {
        font-size: 36px;
    }

    .blog-description {
        font-size: 18px;
    }

    .blog-list {
        grid-template-columns: 1fr;
    }

    .blog-card h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .blog-list-header {
        margin-bottom: 40px;
    }

    .blog-card-image {
        height: 180px;
    }
}
