.news-body {
    color: #fff;
    padding: 20px;
    margin: 0;
    background: transparent;
}

.news-container {
    width: 100%;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-carousel {
    position: relative;
    height: 500px;
    width: 100%;
    margin: 0;
    perspective: 1000px;
}

.news-card {
    position: absolute;
    width: 100%;
    height: 300px;
    background: #121212;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
}

.news-card.card-visible {
    opacity: 1;
    pointer-events: auto;
}

.news-image {
    width: 35%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-content {
    width: 65%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.news-title {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
    padding: 0;
    color: #fff;
    line-height: 1.3;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    flex-grow: 1;
    font-size: 0.9rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0;
    padding: 0;
}

.news-date {
    color: #fa5503;
    font-size: 0.85rem;
    margin-top: 15px;
    display: block;
    padding: 0;
}

.card-position-main {
    z-index: 30;
    top: 100px;
    left: 0;
    opacity: 1;
    transform: scale(1);
    width: 100%;
    height: 300px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.card-position-main:hover {
    transform: scale(1.02);
}

.card-position-top {
    z-index: 20;
    top: 0;
    left: 5%;
    width: 90%;
    height: 50%;
    opacity: 0.7;
    transform: scale(0.9) translateY(-20%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%);
}

.card-position-top:hover {
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 60%);
}

.card-position-bottom {
    z-index: 20;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 50%;
    opacity: 0.7;
    transform: scale(0.9) translateY(20%);
    mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%);
}

.card-position-bottom:hover {
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 60%);
}

@media (max-width: 768px) {
    .news-container {
        padding: 0;
        min-height: auto;
    }

    .news-card {
        flex-direction: column;
        height: 300px;
    }

    .news-image {
        width: 100%;
        height: 38%;
        flex-shrink: 0;
    }

    .news-content {
        width: 100%;
        height: 62%;
        padding: 15px 10px;
        flex-shrink: 0;
    }

    .news-title {
        font-size: 1.0rem;
    }

    .news-carousel {
        height: 600px;
    }

    .card-position-main {
        height: 300px;
        top: 125px;
    }

    .card-position-top {
        height: 30%;
        transform: scale(0.9) translateY(10%);
    }

    .card-position-bottom {
        height: 30%;
        transform: scale(0.9) translateY(-10%);
    }
}