/* News Common Styles */

.news-meta {
    font-size: 0.9rem;
    color: var(--text-muted, var(--neutral-500));
    margin-bottom: 0.5rem;
}

.news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.news-card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-img-wrapper img {
    transform: scale(1.05);
}

/* Навигация по ленте одного дня */
.daily-news-navigation {
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hover-bg-light:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateX(5px);
}

.hover-primary {
    transition: color 0.3s ease;
}

.hover-primary:hover {
    color: var(--primary-color, var(--primary-color)) !important;
}

.active-item-news {
    background: rgba(255, 255, 255, 0.03);
}

.news-day-link {
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
