.coc-latest-posts {
    background: linear-gradient(180deg, #fffdf5 0%, #f4efe2 100%);
    border: 1px solid #e7dcc4;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(72, 52, 24, 0.08);
    padding: 24px;
}

.coc-latest-posts__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.coc-latest-posts__item + .coc-latest-posts__item {
    border-top: 1px solid rgba(135, 105, 58, 0.18);
    margin-top: 16px;
    padding-top: 16px;
}

.coc-latest-posts__item {
    align-items: flex-start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
}

.coc-latest-posts__image-link {
    border-radius: 14px;
    display: block;
    overflow: hidden;
}

.coc-latest-posts__image {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
    width: 100%;
}

.coc-latest-posts__image-link:hover .coc-latest-posts__image,
.coc-latest-posts__image-link:focus .coc-latest-posts__image {
    transform: scale(1.04);
}

.coc-latest-posts__content {
    min-width: 0;
}

.coc-latest-posts__link {
    color: #1f3c31;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.coc-latest-posts__link:hover,
.coc-latest-posts__link:focus {
    color: #8c5a2b;
}

.coc-latest-posts__meta {
    color: #6e6254;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.92rem;
    gap: 10px;
    margin-top: 8px;
}

.coc-latest-posts__date,
.coc-latest-posts__categories {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    padding: 4px 10px;
}

.coc-latest-posts__excerpt {
    color: #4f4a42;
    line-height: 1.65;
    margin: 12px 0 0;
}

@media (max-width: 640px) {
    .coc-latest-posts__item {
        grid-template-columns: 1fr;
    }

    .coc-latest-posts {
        padding: 18px;
    }

    .coc-latest-posts__link {
        font-size: 1rem;
    }
}