.news-title {
font-family: Open Sans;
font-weight: 700;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
text-transform: uppercase;
color: #887BBE;
}

/* ===== Основной контейнер ===== */
.news-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* ===== Карточка ===== */
.news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ===== Тело карточки ===== */
.news-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ===== АНОНС (ПРЕВЬЮ ТЕКСТ) ===== */
.news-preview-text {
	font-family: Open Sans;
	font-weight: 500;
	font-style: Medium;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0%;
}


/* ===== Адаптив для мобильных ===== */
@media (max-width: 767.98px) {
    .news-grid-container {
        padding: 15px 10px;
    }
    
    .news-card-image {
        height: 200px;
    }
    
    .news-title {
        font-size: 20px;
    }
    
    .news-preview-text {
        font-size: 15px;
    }
    
    .news-card-body {
        padding: 15px;
    }
}
