.ws-post-rec-card {
    display: flex;
    gap: 16px;
    margin: 18px 0;
}

.ws-post-rec-card .ws-post-rec-image {
    width: 132px;
    height: 88px;
    object-fit: cover;
    flex: 0 0 auto;
}

.ws-post-rec-content h4 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.3;
}

.ws-post-rec-content p {
    margin: 0;
}

.ws-post-cluster-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin: 34px 0 50px;
    width: 100%;
}

.ws-post-cluster-card {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(28, 31, 35, 0.07);
}

.ws-post-cluster-link {
    display: grid;
    grid-template-columns: minmax(320px, 38%) minmax(0, 1fr);
    min-height: 300px;
    color: inherit;
    text-decoration: none !important;
}

.ws-post-cluster-link *,
.ws-post-cluster-link:hover *,
.ws-post-cluster-link:focus * {
    text-decoration: none !important;
}

.ws-post-cluster-card .ws-post-rec-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    background: #f4f1eb;
    transition: transform 180ms ease;
}

.ws-post-cluster-link:hover .ws-post-rec-image,
.ws-post-cluster-link:focus .ws-post-rec-image {
    transform: scale(1.02);
}

.ws-post-cluster-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 42px 44px;
}

.ws-post-cluster-prefix {
    min-height: 1em;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #253143;
}

.ws-post-cluster-title {
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    color: #07111f;
    transition: color 160ms ease;
}

.ws-post-cluster-link:hover .ws-post-cluster-title,
.ws-post-cluster-link:focus .ws-post-cluster-title {
    color: var(--theme-link-hover-color, #8a5d2e);
}

.ws-post-cluster-desc {
    font-size: 20px;
    line-height: 1.55;
    color: #28364a;
}

@media (max-width: 760px) {
    .ws-post-rec-card {
        display: block;
    }

    .ws-post-rec-card .ws-post-rec-image {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .ws-post-cluster-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ws-post-cluster-link {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .ws-post-cluster-card .ws-post-rec-image {
        aspect-ratio: 16 / 9;
        height: auto;
        min-height: 0;
    }

    .ws-post-cluster-body {
        gap: 10px;
        padding: 18px;
    }

    .ws-post-cluster-prefix {
        font-size: 12px;
    }

    .ws-post-cluster-title {
        font-size: 19px;
    }

    .ws-post-cluster-desc {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ws-post-cluster-link {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .ws-post-cluster-card .ws-post-rec-image {
        min-height: 0;
    }

    .ws-post-cluster-body {
        padding: 16px;
    }
}
