.horizontal-timeline-scroll-container {
    overflow-x: auto;
    padding-bottom: 20px;
    flex: 1;
}

.horizontal-timeline-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Timeline Scroll Arrow Buttons */
.horizontal-timeline-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.timeline-scroll-arrow {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    background:#CCA942;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    padding: 0;
    z-index: 3;
}

.timeline-scroll-arrow:hover {
    background-color: #CCA942;
    border-color: #051C2C;
    transform: scale(1.2);
}

.timeline-scroll-arrow:active {
    transform: scale(0.95);
}

.timeline-scroll-arrow svg {
    width: 30px;
    height: 30px;
}

.horizontal-timeline-list {
    display: flex;
}

.horizontal-timeline-list.top-list {
    align-items: flex-end;
}

.horizontal-timeline-list.bottom-list {
    align-items: flex-start;
}

.timeline-item {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    transition: .2s;
}

.timeline-item-point {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    margin-top: 36px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.timeline-center-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
    background-color: #efeff1;
    pointer-events: none;
}

.timeline-item-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}

.timeline-item-title {
    margin: 8px 0px;
    font-size: 24px;
    color: #051C2C;
}

.timeline-item-description {
    color: #051C2C;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.year-item {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 1024px) {
    .timeline-item {
        flex: 0 0 calc(100% / 2);
        max-width: calc(100% / 2);
    }
}

@media (max-width: 767px) {
    .timeline-item {
        flex: 0 0 calc(100% / 1);
        max-width: calc(100% / 1);
    }
}