﻿.template-library-carousel {
    display: flex;
    flex-direction: column;
    gap: 60px;
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}

.template-library-carousel .innerContent {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.template-library-carousel .innerContent a {
	color: #172327;
}

.template-library-carousel .innerContent a:hover {
	color: #00aa45;
}

.template-library-carousel .innerContent h2 {
    font-size: 48px;
    line-height: 1.2em;
    letter-spacing: -1px;
    margin: 0;
    font-family: 'Eina01', 'Beatrice', 'Roboto', sans-serif
}

.template-library-carousel .innerContent p {
    font-size: 20px;
    line-height: 1.4em;
    color: rgb(107, 107, 107);
    font-family: 'Eina01', 'Beatrice', 'Roboto', sans-serif
}

.template-library-carousel .sliderPart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.template-library-carousel .sliderPart .templateSlider {
    pointer-events: none;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}

.template-library-carousel .sliderPart .templateSlider .splide__list {
    display: flex;
    gap: 20px;
    pointer-events: none;
}

.template-library-carousel .sliderPart .templateSlider .splide__list .splide__slide {
    width: 100%;
    aspect-ratio: 260/160;
    list-style-type: none;
}

.template-library-carousel .sliderPart .templateSlider .splide__list .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}