/* News Section Component Styles */
.news-section {
    padding: 60px 0;
    background-color: rgba(248, 245, 235, 1);
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.news-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-thumbnail {
    display: block;
    height: 200px;
    overflow: hidden;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-thumbnail img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
}

.news-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px;
    line-height: 1.4;
}

.news-card-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: var(--primary-color, #2046a1);
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-read-more {
    display: inline-block;
    color: var(--primary-color, #2046a1);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.news-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color, #2046a1);
    transition: width 0.3s ease;
}

.news-read-more:hover::after {
    width: 100%;
}

.view-all-container {
    text-align: right;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color, #2046a1);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    color: var(--secondary-color, #B89B33);
}

.view-all-link:hover svg {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-title {
        font-size: 24px;
    }
    
    .news-description {
        font-size: 15px;
    }
    
    .view-all-container {
        text-align: center;
    }
} 