.mmcw-news {
    font-family: inherit;
    line-height: 1.5;
}

.mmcw-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}
.mmcw-item:last-child {
    border-bottom: none;
}

.mmcw-image {
    flex-shrink: 0;
    width: 80px;
}
.mmcw-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.mmcw-content {
    flex: 1;
}

.mmcw-title {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 600;
}
.mmcw-title a {
    color: #333;
    text-decoration: none;
}
.mmcw-title a:hover {
    color: #0073aa;
}

.mmcw-desc {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: #555;
}

/* Вертикальная ориентация — картинка над текстом */
.mmcw-vertical .mmcw-item {
    flex-direction: column;
    align-items: stretch;
}
.mmcw-vertical .mmcw-image {
    width: 100%;
    margin-bottom: 10px;
}

/* Горизонтальная ориентация — блоки в строку */
.mmcw-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.mmcw-horizontal .mmcw-item {
    flex: 1 1 200px;
    border-bottom: none;
    padding: 0;
    flex-direction: column; /* внутри каждой ячейки картинка сверху */
}