/* News Menu Styles */
.news-menu {
    background: transparent;
    border: none;
    border-radius: 15px;
    padding: 30px;
    margin: 60px 0 25px 0;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.news-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.news-menu__header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #d4af37;
    position: relative;
    z-index: 1;
}

.news-menu__header h2 {
    color: #ffd700;
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-menu__header h2 i {
    font-size: 2rem;
    color: #d4af37;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.news-menu__empty {
    text-align: center;
    padding: 40px 20px;
    color: #ccc;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.news-list__item {
    margin-bottom: 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.news-list__item:hover {
    transform: translateY(-5px);
}

.news-list__link {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.news-list__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.news-list__link:hover::before {
    left: 100%;
}

.news-list__link:hover {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.1));
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.news-list__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.news-list__icon i {
    font-size: 1.5rem;
    color: #000;
}

.news-list__content {
    flex: 1;
    min-width: 0;
}

.news-list__title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffd700;
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.news-list__meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news-list__date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 500;
}

.news-list__date i {
    font-size: 0.8rem;
}

.news-list__summary {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.4;
    margin-top: 5px;
}

.news-list__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.news-list__arrow i {
    font-size: 1.2rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.news-list__link:hover .news-list__arrow {
    background: rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.news-list__link:hover .news-list__arrow i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-menu {
        padding: 20px;
        margin: 15px 0;
        border-width: 2px;
    }
    
    .news-menu__header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .news-list__link {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .news-list__icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .news-list__arrow {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .news-list__title {
        font-size: 1.1rem;
    }
    
    .news-list__meta {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .news-menu {
        padding: 15px;
        border-radius: 10px;
    }
    
    .news-menu__header h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .news-list__item {
        margin-bottom: 15px;
    }
    
    .news-list__link {
        padding: 12px;
    }
    
    .news-list__icon {
        width: 40px;
        height: 40px;
    }
    
    .news-list__icon i {
        font-size: 1.2rem;
    }
}