.latcom-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-around;
}

.latcom-container-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 32%;
    border-radius: 6px;
    background-color: var(--listing-background-color);
    overflow: hidden;
}

.latcom-container-item-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 100%;
    position: relative;
}

.latcom-container-item-header a {
    width: 100%;
    display: flex;
    justify-content: center;
}

.latcom-container-item-header img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.latcom-container-item-header a {
    text-decoration: none;
}

.latcom-container-item-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    height: 100%;
}

.latcom-container-item-body-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.latcom-container-item-body-title a {
    cursor: pointer;
    color: var(--body-font-color);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    white-space: wrap;
    text-transform: uppercase;
    word-break: break-word;
}

.latcom-container-item-body-text {
    flex-grow: 1;
    font-size: 14px;
    line-height: 17px;
    text-transform: lowercase;
    padding-bottom: 12px;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
    max-height: 69px;
}

.latcom-container-item-body-text a {
    cursor: pointer;
    color: var(--info-field-color);
}

.latcom-img-listing-title {
    width: 100%;
    height: 100%;
    padding: 50px 20px 0 40px;
    color:  rgba(255, 255, 255, 0.9);
    z-index: 1;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
}

.latcom-img-listing-title h2 {
    font-size: 1rem;
    font-weight: 600;
    width: 75%;
}

.latcom-date {
    font-size: 0.8rem;
    color: #949494;
}

.latcom-container-item-footer {
    width:  100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.latcom-container-item-footer-comments a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--info-field-color);
    font-size: 0.875em;
}

@media screen and (max-width: 768px) {
    .latcom-container-item {
        width: 100%;
    }

}