:root {
    --v11-red: #e30613;
    --v11-dark: #1a1a1a;
    --v11-gray: #777;
    --v11-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v11-news-section {
    padding: 80px 0;
    background: #fff;
}

.v11-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.v11-main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--v11-dark);
}

/* КАТЕГОРИИ */
.v11-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.v11-cat-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid #eee;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--v11-transition);
    color: var(--v11-gray);
}

.v11-cat-btn:hover, .v11-cat-btn.active {
    background: var(--v11-red);
    color: #fff;
    border-color: var(--v11-red);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.2);
}

.v11-count {
    opacity: 0.6;
    margin-left: 5px;
}

/* СЕТКА НОВОСТЕЙ */
.v11-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.v11-news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    transition: var(--v11-transition);
    position: relative;
}

.v11-card-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    margin-bottom: 24px;
}

.v11-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v11-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.v11-card-meta {
    margin-bottom: 12px;
}

.v11-date {
    font-size: 13px;
    color: var(--v11-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v11-card-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--v11-dark);
    transition: color 0.3s;
}

.v11-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.v11-card-more {
    text-decoration: none;
    color: var(--v11-dark);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--v11-transition);
}

.v11-arrow { transition: transform 0.3s ease; }

/* HOVER ЭФФЕКТЫ */
.v11-news-card:hover .v11-card-img {
    transform: scale(1.08);
}

.v11-news-card:hover .v11-card-title {
    color: var(--v11-red);
}

.v11-news-card:hover .v11-card-more {
    color: var(--v11-red);
}

.v11-news-card:hover .v11-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .v11-news-grid { grid-template-columns: 1fr; }
    .v11-main-title { font-size: 32px; }
}