﻿@media (min-width: 1024px) {
    .moaiery-top {
        margin-top: 6rem !important
    }
}

.concert-poster {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #000;
}

    .concert-poster img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: translate(-50%, -50%);
    }

.news-hero {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.news-hero-box {
    position: relative;
    background: linear-gradient(135deg, #f6f7fb, #ffffff);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border: 1px solid #e6e8f0;
}

    .news-hero-box::before {
        content: "";
        position: absolute;
        top: -40%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(110, 66, 193, 0.15), transparent 70%);
    }

.news-hero-content {
    z-index: 2;
}

.news-hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(110, 66, 193, 0.1);
    color: #6f42c1;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.news-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 1rem;
}

.news-hero-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
}

.news-hero-icon {
    font-size: 5rem;
    color: rgba(110, 66, 193, 0.15);
    z-index: 1;
}

@media (max-width: 768px) {
    .news-hero-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .news-hero-icon {
        margin-top: 1.5rem;
        font-size: 4rem;
    }
}
.archive-pagination {
    margin-top: 3rem;
}

    .archive-pagination .pagination {
        gap: .6rem;
    }

    .archive-pagination .page-link {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        border: 1px solid #e8e5fb;
        background: #f6f7fb;
        color: #5f2ded;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        transition: .25s;
        box-shadow: 0 3px 10px rgba(95,45,237,.08);
    }

        .archive-pagination .page-link:hover {
            background: #5f2ded;
            color: #fff;
            transform: translateY(-2px);
        }

    .archive-pagination .page-item.active .page-link {
        background: #5f2ded;
        border-color: #5f2ded;
        color: #fff;
        box-shadow: 0 10px 25px rgba(95,45,237,.28);
    }

    .archive-pagination .page-link:focus {
        box-shadow: 0 0 0 .2rem rgba(95,45,237,.18);
    }

    .archive-pagination .page-item.disabled .page-link {
        opacity: .45;
        pointer-events: none;
    }