/* css/history-section.css */

/* History Section Styles */
.history-section.news-section {
    padding: 4rem 0;
}

/* History Item Styles */
.history-item.swiper-slide.news-item {
    width: 800px;
    background: #fff;
    padding-right: 2rem;
}

/* Header Styles */
.history-header.news-header {
    display: flex;
    align-items: flex-start;
    padding: 0;
    margin-bottom: 2rem;
}

.history-date-group {
    display: flex;
    flex-direction: column;
    margin-right: 4rem;
}

.history-months {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.history-year {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: bold;
}

.history-header .header-line {
    flex-grow: 1;
    height: 2px;
    background-color: #000;
    margin-top: 1.5rem;
}

/* Content Styles */
.history-image-content-wrapper {
    display: flex;
    flex-direction: column;
}

.history-image {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
}

.history-image.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.history-content.news-content{
    padding: 0;
}

.history-big-headline {
    margin-bottom: 8rem;
}
.history-small-headline {
    margin-bottom: 0.5rem;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .history-item.swiper-slide.news-item {
        width: 600px;
    }
    .history-image.news-image {
        height: 350px;
    }
    .history-image.news-image img{
        height: 350px;
    }
}

@media (max-width: 768px) {
    .history-item.swiper-slide.news-item {
        width: 500px;
    }
    .history-image.news-image {
        height: 300px;
    }
    .history-image.news-image img{
        height: 300px;
    }
    .history-year {
        font-size: 2rem;
    }
    .history-big-headline {
        margin-bottom: 4rem;
    }
    .history-small-headline {
        margin-bottom: 0;
    }
    .history-date-group {
        margin-right: 2rem;
    }
    .history-item.swiper-slide.news-item {
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .history-item.swiper-slide.news-item {
        width: 350px;
    }
    .history-image.news-image {
        height: 250px;
    }
    .history-image.news-image img{
        height: 250px;
    }
    
    .history-year {
        font-size: 1.75rem;
    }

}

@media (max-width: 376px) {
    .history-item.swiper-slide.news-item {
        width: 330px;
    }
}