.home-latest-posts__container .posts .item {
    margin-bottom: 1rem;
}

.home-latest-posts__container .posts .item .image {
    height: 170px;
    margin-bottom: 0.5rem;
}

.home-latest-posts__container .posts .item .image>a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 100%;
    background-size: cover;
    text-decoration: none;
    position: relative;
}

.home-latest-posts__container .posts .item .image .video-icon {
    fill: white;
    display: none;
}

.home-latest-posts__container .posts .item.video .image .video-icon {
    display: block;
}

.home-latest-posts__container .posts .item .image .category {
    background-color: #333333;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.2rem 0.3rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

.home-latest-posts__container .posts .item .item-content .item-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
    line-height: 1.3;
    display: block;
}

.home-latest-posts__container .posts .item .item-title:hover {
    color: var(--e-global-color-primary);
}

.home-latest-posts__container .posts .item .date {
    font-size: 0.875rem;
    color: #999999;
    display: flex;
    align-items: center;
}

.home-latest-posts__container .posts .item .date svg {
    margin-right: 0.3rem;
}

.home-latest-posts__container .posts .item .content {
    font-size: 0.875rem;
    font-style: italic;
    max-height: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: none;
}

@media (min-width: 630px) {
    .home-latest-posts__container .posts .item {
        display: grid;
        gap: 1.5rem;
        grid-template-columns: 250px 1fr;
    }

    .home-latest-posts__container .posts .item .image {
        margin-bottom: 0;
        width: 250px;
    }

    .home-latest-posts__container .posts .item .date {
        margin-bottom: 0.5rem;
    }

    .home-latest-posts__container .posts .item .content {
        display: block;
    }

    .home-latest-posts__container .posts .item .item-content {
        display: grid;
    }

    .home-latest-posts__container .posts .item .item-content .item-title {
        word-break: break-all;
        max-width: 470px;
        min-height: auto;
    }
}