/* News Section - Modern Image Overlay Style */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.news-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.news-card a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.9;
}

.news-card:hover .card-image img {
    transform: scale(1.1);
    opacity: 0.7;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 70px;
    height: 70px;
    background: rgba(255, 153, 51, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.4);
}

.play-overlay i {
    color: #fff;
    font-size: 2rem;
    margin-left: 4px;
}

.news-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 153, 51, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 51, 0);
    }
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7) 50%, transparent);
    z-index: 1;
    transform: translateY(15px);
    transition: transform 0.3s ease;
}

.news-card:hover .card-content {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(93, 58, 26, 0.95), rgba(0, 0, 0, 0.6) 80%, transparent);
}

.news-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.watch-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-card:hover .watch-link {
    opacity: 1;
    transform: translateY(0);
}