/* News Page Styles */

.news-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-header-container {
    position: relative;
    z-index: 2;
}

.news-header-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.news-header-desc {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.news-header-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(224, 138, 46, 0.1);
    border-radius: 50%;
}

.news-grid-section {
    padding: 100px 0;
    background: var(--bg-accent);
}

.news-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-img-wrapper {
    height: 230px;
    position: relative;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 13px;
}

.news-content {
    padding: 30px;
}

.news-title {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.news-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.news-link:hover {
    gap: 12px;
}