/* ===== BASE ===== */
.page-wrap {
    width: 100%;
    display: block;
}

.news-block {
    padding: 20px 0px;
}

.news-block .container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.news-big .big-content {
    position: absolute;
    bottom: 5px;
    left: 30px;
    right: 30px;
    display: block;
	z-index: 2;
}

/* ===== TITLE ===== */
.pageh2 {
    font-weight: 900;
    font-size: 48px;
    margin-bottom: 30px;
}

/* ===== GRID ===== */
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* ===== BIG ===== */
.news-big {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

.news-big .image {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
	transition: transform 0.6s ease;
}
.news-big:hover .image {
    transform: scale(1.02);
}
.news-big {
    overflow: hidden;
}

.news-big .title {
    font-size: 28px;
    font-weight: 800;
    margin: 10px 0;
    line-height: 1.2;
    max-width: 500px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ===== BUTTON ===== */
.news-big .btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.news-big .btn:hover {
    background: rgba(255,255,255,0.1);
}
.news-big .excerpt {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 6px;
    max-width: 500px;
	margin-bottom:20px;
}
.news-block .date {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 4px;
}
.news-block a {
    color: #fff;
    text-decoration: none;
}

/* ===== LIST ===== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ===== ROW ===== */
.news-row {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
}

/* картинка */
.news-row .thumb {
    width: 140px;
    height: 90px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
	transition: transform 0.5s ease;
}
.news-row:hover .thumb {
    transform: scale(1.08);
}
.news-row .thumb {
    overflow: hidden;
}

/* текст */
.news-row .title {
    font-size: 14px;
    line-height: 1.3;
	font-weight: 700;
}

/* ===== TAG ===== */
.news-block .tag {
    display: inline-block;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
    color: #fff;
}

/* цвета */
.tag-promotion {
    background: rgba(255,0,120,0.4);
}

.tag-event {
    background: rgba(0,255,150,0.4);
}

.tag-news {
    background: rgba(0,150,255,0.4);
}

.tag-announcement {
    background: rgba(255,180,0,0.4);
}

/* ===== LINK FIX ===== */
.news-block a {
    color: #fff;
    text-decoration: none;
}

/* ===== HOVER ===== */
.news-row:hover .title {
    opacity: 0.7;
}

/* новый overlay */
.news-big .overlay-page {
    position: absolute;
    inset: 0;

    /* затемнение только снизу */
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.5) 30%,
        rgba(0,0,0,0.2) 55%,
        rgba(0,0,0,0) 80%
    );

    z-index: 1;
}
/* дата */
.news-big .date {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 6px;
}

/* заголовок */
.news-big .title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;

    transition: 0.3s ease;
}
.news-big:hover .title {
    text-shadow:
        0 0 8px rgba(255,255,255,0.6),
        0 0 16px rgba(255,255,255,0.4),
        0 0 30px rgba(255,255,255,0.2);
}

/* описание */
.news-big .excerpt {
    font-size: 14px;
    opacity: 0.85;
    max-width: 500px;
	line-height:161%;
}
.news-big .tag-top {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
	z-index: 3;
}

@media (max-width: 768px) {
.info {padding:20px;}
    /* grid → список */
    .news-grid {
        display: block;
    }

    .news-list {
        gap: 15px;
    }

    /* ===== ОБЩИЙ СТИЛЬ КАРТОЧЕК ===== */
    .news-row,
    .news-big {
        display: block;
        background: rgba(255,255,255,0.03);
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.06);
        margin-bottom: 15px;
        transition: 0.25s ease;
    }

    /* ===== КАРТИНКА ===== */
    .news-row .thumb,
    .news-big .image {
        width: 100%;
        height: 160px;
        border-radius: 0;
        transform: none !important;
    }

    /* убираем абсолютку */
    .news-big .big-content {
        position: static;
        padding: 12px;
    }

    /* overlay больше не нужен */
    .news-big .overlay-page {
        display: none;
    }

    /* ===== ТЕКСТ ===== */
    .news-big .title,
    .news-row .title {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 6px;
        text-shadow: none;
    }

    .news-big .excerpt {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .news-block .date {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .news-block .tag {
        font-size: 10px;
        padding: 4px 8px;
        margin-bottom: 8px;
    }

    /* кнопка компактная */
    .news-big .btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* hover эффекты убираем */
    .news-big:hover .image {
        transform: none;
    }
}
@media (max-width: 480px) {

    .news-row .thumb,
    .news-big .image {
        height: 140px;
    }

    .news-big .title,
    .news-row .title {
        font-size: 13px;
    }
}