.news-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.news-archive h1 {
    font-size: 40px;
    font-weight: 700;   
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.news-archive h1::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #005566;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: #e2e8f0;
}

.news-card-content {
    padding: 20px;
}

.news-card-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-card-content h2 a {
    text-decoration: none;
    color: inherit;
}

.news-card-content h2 a:hover {
    color: #005566;
}

.news-card-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-card-content p a {
    color: #005566;
    font-weight: 500;
    text-decoration: none;
}

.news-card-content p a:hover {
    text-decoration: underline;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: red;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.load-more-btn:hover::before {
    width: 200px;
    height: 200px;
}

.load-more-btn:hover {
    background: radial-gradient(red, #ff0000);
}

.load-more-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    padding: 20px;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-archive h1 {
        font-size: 32px;
    }

    .news-card img {
        height: 200px;
    }

    .news-card-content h2 {
        font-size: 20px;
    }
	.news-card a {
width: 100% ;
	}
}