


.news-read-more,
.load-more-btn,
.modal-close,
.mobile-menu-btn,
.cta-btn {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 100;
}


.news-card,
.news-content,
.news-actions {
    position: relative;
    z-index: 1;
}


.modal:not(.show) {
    pointer-events: none !important;
    z-index: -1 !important;
}


.news-hero {
    background: linear-gradient(135deg, #2c1810 0%, #3e2723 30%, #5d4037 70%, #8d6e63 100%);
    color: #f5f5dc;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(245,245,220,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.news-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(210, 105, 30, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.news-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d2691e;
    text-shadow: 0 2px 10px rgba(210, 105, 30, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.news-section {
    padding: 6rem 0;
    background: #faf9f7;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #3e2723;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: #5d4e37;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
    margin-bottom: 3rem;
    justify-items: start; 
}


.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%; 
    max-width: 400px; 
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(139, 69, 19, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
}

.news-date, .news-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i, .news-author i {
    color: #8B4513;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.news-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-read-more {
    color: #d2691e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: #8B4513;
    transform: translateX(5px);
}

.news-read-more i {
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(3px);
}

.news-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.news-tag {
    background: #f5f5f5;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}


.news-footer {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: linear-gradient(135deg, #d2691e 0%, #8B4513 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: rotate(90deg);
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-primary {
    background: linear-gradient(135deg, #d2691e 0%, #8B4513 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4);
}

.cta-secondary {
    background: rgba(245, 245, 220, 0.2);
    color: #f5f5dc;
    border: 2px solid rgba(245, 245, 220, 0.3);
}

.cta-secondary:hover {
    background: rgba(245, 245, 220, 0.3);
    border-color: rgba(245, 245, 220, 0.5);
    transform: translateY(-3px);
}




@media (min-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .news-container {
        max-width: 1600px;
    }
}


@media (max-width: 1199px) and (min-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .news-hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}


@media (max-width: 991px) and (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .news-container {
        padding: 0 1.5rem;
    }
}


@media (max-width: 767px) and (min-width: 576px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem;
    }
    
    .news-card {
        max-width: none; 
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    
    .news-hero {
        min-height: 75vh;
        padding: 6rem 0 4rem;
    }
    
    .news-hero h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: space-around;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    
    .news-section {
        padding: 4rem 0;
    }
    
    .news-container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}


@media (max-width: 575px) {
    .news-grid {
        grid-template-columns: 1fr; 
        gap: 1rem;
    }
    
    .news-card {
        border-radius: 16px;
        max-width: none;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .news-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .news-tags {
        align-self: flex-end;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .news-excerpt {
        font-size: 0.9rem;
    }
    
    .load-more-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .news-hero h1 {
        font-size: 2rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .news-container {
        padding: 0 0.5rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
}


@media (max-width: 360px) {
    .news-image {
        height: 160px;
    }
    
    .news-content {
        padding: 0.8rem;
    }
    
    .news-title {
        font-size: 0.95rem;
    }
    
    .news-excerpt {
        font-size: 0.8rem;
    }
}


@media (max-height: 500px) and (orientation: landscape) {
    .news-hero {
        min-height: 90vh;
        padding: 4rem 0 2rem;
    }
    
    .news-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .stat-item {
        background: none;
        min-width: auto;
        padding: 0;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .news-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}


@media (prefers-reduced-motion: reduce) {
    .news-card,
    .news-read-more,
    .load-more-btn,
    .fade-in {
        transition: none;
    }
    
    .news-card:hover {
        transform: none;
    }
    
    .news-card:hover .news-image img {
        transform: none;
    }
    
    .hero-stats .stat-item {
        animation: none;
    }
}


@media print {
    .news-hero,
    .news-modal,
    .load-more-btn,
    .news-read-more {
        display: none;
    }
    
    .news-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 8px;
    background: #8b4513;
    border: none;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.news-read-more:hover {
    background: #d2691e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
}

.news-read-more:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.3);
}

.news-read-more:active {
    transform: translateY(0);
}

.news-read-more i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.news-read-more:hover i {
    transform: translateX(2px);
}