/* css/news-section.css */

.news-section {
    padding: 4rem 0;
    position: relative;
}

.news-section-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}
.news-section-header .heading-sm{
    margin-bottom: 0;
}
.news-navigation {
    display: flex;
    gap: 2rem;
}

.news-slider {
    position: relative;
    padding: 0 2rem; /* Space for navigation arrows */
}

.news-item {
    width: 414px;
    height: auto;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;

}
.news-image-content-wrapper{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.news-date {
    color: #000;
    white-space: nowrap;
    margin-right: 15px;
}

.header-line {
    flex-grow: 1;
    height: 2px;
    background-color: #000;
}

.news-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.news-content {
    padding-top: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-headline {
    font-family: 'Archivo', sans-serif;
    color: #000;
    margin-bottom: 0.5rem;
}

.news-description {
    margin-bottom: 0.5rem;
}

.news-button-wrapper {
    margin-top: auto;
}


/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    position: static;
    margin: 0;
    width: 44px;
    height: 44px;
    color: white;
    background-color: #000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: '';
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.swiper-button-prev:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M12 19l-7-7 7-7'/%3E%3C/svg%3E");
}

.swiper-button-next:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #515666;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    
    
}

@media (max-width: 768px) {
 
    .news-item {
        width: 300px;
    }
    .news-image {
        height: 400px;
    }
    .swiper-button-next,
.swiper-button-prev {
    
    height: 32px;
    width: 32px;
    
}

.swiper-button-next:after,
.swiper-button-prev:after {
    width: 16px;
    height: 16px;
}
}
@media (max-width: 576px) {
    .news-section-header,
    .news-slider {
        padding: 0 1rem;
    }
    .news-item {
        width: 250px;
    }
    .news-image {
        height: 300px;
    }
    .news-navigation {
        gap: 1rem;
    }
}
