.article-content .sec-title{
    font-size: 24px;
    font-weight: 600;
}

.blog-banner {
    width: 100%;
    height: 728px;
    position: relative;
}

.blog-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.79) 0%, rgba(0, 0, 0, 0.00) 70%);
}

.blog-banner .bg-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-banner .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-event {
    margin-top: -260px;
}

.blog-title {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.box-event {
    display: flex;
    align-items: center;
    height: 100%;
}

.box-event .box-image {
    flex: 0 0 50%;
    border-radius: 20px;
}

.box-event .image-cover {
    padding-top: 60%;
}

.box-event .post-title {
    color: #FFF;
}

.box-event .box-text {
    flex: auto;
    height: 100%;
    background-color: #000;
    padding: 30px;
    border-radius: 0px 8px 8px 0px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.box-event .btn-viewmore {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 80% */
}

.box-event .post-title:hover, .box-event .btn-viewmore:hover {
    color: var(--primary-light-color);
}

.blog-event {
    position: relative;
}

.event-post .swiper-button-prev {
    left: auto;
    right: 0;
    top: 0;
    transform: translate(calc(-100% - 15px), 60%);
}

.event-post .swiper-button-next {
    left: auto;
    right: 0;
    top: 0;
    transform: translateY(60%);
}

@media screen and (max-width: 767px) {
    .blog-banner {
        height: 225px;
    }

    .box-event {
        flex-direction: column;
    }

    .blog-event {
        margin-top: -110px;
    }

    .box-event .image-cover {
        padding-top: 55%;
    }

    .box-event .box-image {
        width: 100%;
    }

    .box-event .box-text {
        border-radius: 10px; 
        border-radius: 10px;
        margin-top: -20px;
        padding: 40px 15px 15px 15px;
    }

    .event-post .swiper-button-prev, .event-post .swiper-button-next {
        top: 10px;
        right: 10px;
    }
}