.news-section {
    background-color: var(--safety-light-gray);
    padding: 0px 0 60px 0;
}

.news-title {
    color: var(--safety-blue);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--safety-orange);
    border-radius: 2px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 220px);
}

.news-card-title {
    color: var(--safety-blue);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 0;
}

.news-description {
    color: var(--safety-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.news-date {
    color: var(--safety-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: var(--safety-orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--safety-blue);
    text-decoration: none;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-image {
        height: 200px;
    }
}