.blog-latest-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-latest-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-latest-item__image-link {
    display: block;
    text-decoration: none;
}

.blog-latest-item__image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-latest-item__content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-latest-item__category {
    margin-bottom: 10px;
}

.blog-latest-item__category-link {
    display: inline-block;
    background-color: #f0f7ff;
    color: #0066cc;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.blog-latest-item__category-link:hover {
    background-color: #e0f0ff;
}

.blog-latest-item__title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-latest-item__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-latest-item__title a:hover {
    color: #0066cc;
}

.blog-latest-item__date {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
    justify-content: center;
}

.blog-latest-item__date svg {
    margin-right: 5px;
    color: #888;
}

.blog-latest-item__excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-latest-item__footer {
    margin-top: auto;
}

.blog-latest-item__button {
    display: inline-block;
    padding: 6px 16px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.blog-latest-item__button:hover {
    background-color: #0055aa;
}

@media (max-width: 992px) {
    .blog-latest-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-latest-list {
        grid-template-columns: 1fr;
    }
} 