/* Блок "Читайте также" */
.read-also-block {
    margin: 40px 0;
}

.read-also-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.read-also-title {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    color: #302b2c;
}

.read-also-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.read-also-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.read-also-image {
    display: block;
    position: relative;
    overflow: hidden;
    height: 200px;
}

.read-also-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.read-also-image:hover img {
    transform: scale(1.05);
}

.read-also-content {
    flex: 1;
    padding-block: 20px;
}

.read-also-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.read-also-date {
    display: inline-block;
    font-size: 12px;
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-also-category {
    display: inline-block;
    font-size: 12px;
    color: #919191;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-also-category:hover {
    color: #1d1a1a;
    text-decoration: none;
}

.read-also-item-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.read-also-item-title a {
    color: #f05600;
    text-decoration: none;
}

.read-also-item:hover .read-also-item-title a {
    color: #1d1a1a;
    text-decoration: none;
}

/* Адаптивность */
@media (max-width: 1023px) {
    .read-also-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .read-also-content {
        padding-block: 15px;
    }
    
    .read-also-item-title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .read-also-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .read-also-image {
        height: 180px;
    }
    
    .read-also-content {
        padding-block: 15px;
    }
    
    .read-also-item-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .read-also-grid {
        grid-template-columns: 1fr;
    }
    
    .read-also-content {
        padding-block: 12px;
    }
    
    .read-also-item-title {
        font-size: 15px;
    }
    
    .read-also-date,
    .read-also-category {
        font-size: 11px;
    }
}

/* Старые стили для совместимости */
div.news-list img.preview-picture
{
	float:left;
	margin:0 4px 6px 0;
}

p.news-item
{
	margin:0;
	margin-bottom:15px;
}

.news-date-time
{
	font-size:95%;
	display:block;
	color:#82929a;
}
