.forum-items {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 4%;
    width: 860px;
    max-width: 100%;
    margin: 60px auto;
}

.forum-item {
    display: flex;
    width: 48%;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .forum-item {
        width: 100%;
        justify-content: center;
    }
}

.forum-image img {
    width: 106px;
    height: 106px;
    object-fit: cover;
    object-position: center;
    min-width: 106px;
    border-radius: 8px;
}

.forum-title {
    font-family: 'DM Sans';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 10px;
}

.forum-description {
    color: rgba(26, 25, 30, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; 
    margin-bottom: 10px;
}

.forum-action {
    display: flex;
}