
.last-news-offset-container .title, .news-column .title {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.last-news-container {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
}

.last-news-container article {
    padding: 0;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.last-news-container article .news-image {
    width: 100%;
    max-height: 300px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    object-fit: cover;
}

.last-news-container article .news-content {
    padding: 0.5rem 1rem;
}

.last-news-container article .news-content :is(p, a) {
    padding-block: 0.4rem;
}

.news-column {
    margin-block: 2rem;
}

.news-column .category {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.news-column .category > h2 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.news-column .news-container {
    display: flex;
    flex-wrap: wrap;
}

.news-column .category article {
    width: 50%;
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    padding: 10px;
    border-radius: 1rem;
    cursor: pointer;
}

.news-column .category article:hover {
    background-color: #eee;
}

.news-column .category img.news-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 8px;
}

.news-column .category .news-content {
    flex: 1;
}

.news-column .category .news-content h3 {
    color: #555;
    margin-bottom: 5px;
}

.news-column .category .news-content p {
    color: #777;
    margin-bottom: 10px;
}

.last-news-container article a, .news-column .category .news-content a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.news-column .category .news-content a:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .last-news-container {
        grid-template-columns: 1fr;
    }

    .news-column .category article {
        width: 100%;
        flex-direction: column;
        padding: 5px;
        gap: 1rem;
    }

    .news-column .category img.news-image {
        width: 100%;
        height: auto;
    }

    .news-column .category > h2 {
        font-size: 1.2rem;
    }
}