.news-main {
    background-image: url('../images/bg_news.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}


.margin-top-60 {
    margin-top: 60px;
}


.banner {
    min-height: 100vh;
    position: relative;
    width: 100%;
}

.banner>img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.title_banner {
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translateY(-50%);
}

h1 {
    font-size: 120px;
    color: #FFC800;
}

.news-list-cop {
    width: 100%;
    padding: 60px 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
}

.events {
    color: #fff;
}

.events-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.event-card {
    width: 100%;
    background: transparent;
    color: #fff;
}

.event-img {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
}

.event-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.event-content {
    margin-top: 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.event-name {
    height:40px;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.event-location {
    height: 89px;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
    opacity: 0.85;
}

.event-meta {
    font-size: 15px;
    font-weight: lighter;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    opacity: 0.9;
    margin-top: auto;
}

.no-data-box {
    width: 100%;
    background-color: var(--bg-body);
    padding: 1.25rem;
    text-align: center;
    grid-column: span 3;
}

.icon-no {
    font-size: 80px;
    margin-bottom: 24px;
}

.no-data-content {
    color: #fff;
    font-size: 16px;
    font-style: italic;
}

@media (max-width: 767px) {
    .events-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .banner {
        min-height: auto;
    }

    .banner>img {
        height: auto;
        max-height: 400px;
    }

    .title_banner>h1 {
        font-size: 50px;
    }

    .events-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 28px;
    }
}