.history-section {
    position: relative;
    padding: 0 9rem 6rem 9rem;
    font-family: inherit;
}

.history-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
}

.history-head h3 {
    font-size: 4.5rem;
    margin: 0;
    line-height: 1;
}

.history-controls {
    display: flex;
}

.history-cards-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 2rem;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.history-cards-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.history-card {
    min-width: 250px;
    max-width: 320px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.history-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.history-card-year {
    font-size: 4rem;
    color: #ffffff;
    font-family: "StapleExpanded", sans-serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.history-card-texts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.history-card-title {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.7rem !important;
    line-height: 1.4;
}

.history-card-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 1.7rem !important;
}

@media (max-width: 768px) {
    .history-card {
        min-width: 100px;
        max-width: 190px;
        padding: 2.5rem 2rem;
    }

    .history-card-year {
        font-size: 4.5rem;
    }

    .history-head {
        margin-bottom: 4rem;
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .history-head h3 {
        font-size: 3.2rem;
    }

    .history-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}