/* News Section Styles */
.news-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

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

.news-header {
    text-align: left;
    margin-bottom: 60px;
}

.news-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.news-badge-text {
    display: inline-block;
    background: rgba(3, 139, 185, 0.09);
    color: #038BB9;
    padding: 15px 20px;
    border-radius: 10px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0.5px;
}

.news-main-title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0C4F7C;
    margin-bottom: 24px;
}

.news-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.news-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.news-category {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.news-category.company {
    background: rgba(3, 139, 185, 0.1);
    color: #038bb9;
}

.news-category.product {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.news-category.award {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.news-card .news-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.news-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.news-date {
    color: #9ca3af;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
}

.news-read-more {
    color: #038bb9;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.news-read-more:hover {
    color: #027a9e;
}

.news-section .news-footer {
    text-align: center;
    border: none;
    padding: 0;
}

.view-all-news-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #038BB9 0%, #1169B5 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(3, 139, 185, 0.2);
    font-family: inherit;
    min-width: 150px;
    transform: translateY(0px) scale(1);
}

.view-all-news-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(3, 139, 185, 0.3);
    text-decoration: none;
    color: white;
}

.view-all-news-btn:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 6px rgba(3, 139, 185, 0.2);
}

.view-all-news-btn .btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.view-all-news-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-main-title {
        font-size: 28px;
    }
    
    .news-title {
        font-size: 2rem;
    }
    
    .news-badge-text {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
    
    .news-subtitle {
        font-size: 1rem;
    }
    
    .news-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card {
        margin: 0 10px;
    }
    
    .news-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}