/* News Page Styles */
.news-hero {
    margin-top: 60px;
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #8B7355 0%, #6B5845 50%, #4A3D2F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1505935428862-770b6f24f629?w=1200&q=80') center/cover;
    opacity: 0.3;
}

.news-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.news-title {
    font-size: 36px;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.news-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: 1px;
}

/* News Section */
.news-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-olive) 0%, var(--darker-olive) 100%);
    min-height: 60vh;
    opacity: 1 !important;
    transform: none !important;
    position: relative;
    z-index: 1;
}

.news-section .container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.news-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
}

.news-card {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    flex-direction: column;
    opacity: 1 !important;
    visibility: visible !important;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

.news-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-image {
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
    background: var(--dark-olive);
}

.news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
}

.news-image.placeholder i {
    font-size: 48px;
    color: rgba(212, 175, 55, 0.5);
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: var(--gold);
    font-size: 11px;
}

.news-card-title {
    font-size: 20px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
}

.news-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    flex: 1;
}

.news-read-more {
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
    margin-top: auto;
}

.news-read-more:hover {
    gap: 12px;
    color: var(--light-gold);
}

.news-read-more i {
    transition: transform 0.3s;
}

.news-read-more:hover i {
    transform: translateX(5px);
}

.no-news {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.no-news i {
    font-size: 64px;
    color: rgba(212, 175, 55, 0.5);
    margin-bottom: 20px;
}

.no-news h2 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
}

.no-news p {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-hero {
        height: 250px;
        margin-top: 60px;
    }

    .news-title {
        font-size: 28px;
    }

    .news-subtitle {
        font-size: 16px;
    }

    .news-section {
        padding: 40px 15px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .news-hero {
        height: 200px;
    }

    .news-title {
        font-size: 24px;
    }
}
