.timeline-slider-saumon-2 {
	/* .arrow-left {
		@apply inline-block;
    	transform: translate(-2px, 1.5px);
	}
	.arrow-right {
		@apply inline-block;
    	transform: translate(1px, 0);
	} */

    .timeline-wrapper {
        &::before {
            content: '';
            @apply bg-primary-500 h-px w-full absolute top-1/2 left-0 transform -translate-y-1/2;
        }
    }

    .splide__pagination > li {
        & > .splide__pagination__page {
            @apply w-3.5 h-3.5 bg-white border-2 border-solid border-current;

            &.was-active,
            &.is-active {
                @apply w-3.5 h-3.5 bg-current;
            }

            &.is-active {
                @apply filter blur-sm;
            }
        }
    }

    .slider-dots {
        @apply justify-between;
    }

    .content-wrapper  {
        @apply px-6 md:px-12 lg:px-40;
        .date-label {
            @apply h3 text-primary-500;
        }
        .card-content-list {
            @apply flex flex-col gap-10;
            .card-content {
                @apply flex flex-col md:flex-row gap-6;
                .image {
                    @apply relative ;
                    height: 200px;
                    border-radius: 20px;
                    overflow: hidden;
                    @media (min-width:768px) {
                        width: 200px;
                    }

                    & img {
                        @apply absolute w-full h-full top-0 left-0 object-cover;
                    }
                }
                .text-content {
                    @media (min-width:768px) {
                        width: calc(100% - 200px - 24px);
                    }
                    .label {
                        @apply h5;
                    }

                }
            }
        }
    }

    .btn_show_more  {
        height: 150px;
        background: linear-gradient(0deg, rgba(255,255,255,1) 45%, rgba(0,0,0,0) 100%);
        position: absolute;
        bottom: 0;

        .show_more {
            transform: rotate(90deg);
        }
    }

}
