.cpt-project-module {
    padding: 80px 60px;
}

.cpt-project-title{
	text-transform: uppercase;
	margin: 2px 0;
}
.cpt-project-description{
	margin: 2px   0 30px;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
}

.project-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
	aspect-ratio: 2.50 / 1;
}

.project-image img {
    width: 100%;
	height: 100%;
    display: block;
	object-fit: cover;
}

.cpt-project-slide-text {
    padding:  24px 5% 0;
    margin: 0;
	text-align: center;
}
.cpt-project-slide-text  >*{
	margin: 0 0 16px;
}
.cpt-project-slide-text .project-title{
	text-transform: uppercase;
}
.cpt-project-slide-text .project-description,.cpt-project-description{
	font-weight: 500;
}

.cpt-project-controls {
    border-top: 1px solid var(--color-primary);
    padding-top: 16px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cpt-project-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
    counter-reset: hl-page;
}

.cpt-project-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}

.cpt-project-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cpt-project-pagination .swiper-pagination-bullet::before {
    counter-increment: hl-page;
    content: counter(hl-page, decimal-leading-zero) '.';
    font-family: var(--typo-title-2-regular-font);
    font-size: var(--typo-title-2-size-regular);
    font-weight: var(--typo-title-2-regular-fw);
    line-height: var(--typo-title-2-regular-lh);
    letter-spacing: var(--typo-title-2-regular-ls);
    color: var(--color-neutral-beige-dark);
    transition: all 0.3s ease;
}

.cpt-project-pagination .swiper-pagination-bullet-active::before {
    color: var(--color-primary);
    font-weight: 700;
}
.cpt-project-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cpt-project-nav-prev,
.cpt-project-nav-next {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cpt-project-nav-prev svg,
.cpt-project-nav-next svg {
    display: block;
    width: 15px;
    height: 24px;
    transition: transform 0.3s ease;
}

.cpt-project-nav-prev svg path,
.cpt-project-nav-next svg path {
    stroke: var(--color-primary);
}

.cpt-project-nav-prev svg {
    transform: rotate(90deg);
}

.cpt-project-nav-next svg {
    transform: rotate(270deg);
}

.cpt-project-nav-prev.swiper-button-disabled svg,
.cpt-project-nav-next.swiper-button-disabled svg {
    opacity: 0.5;
}

.cpt-project-nav-prev.swiper-button-disabled,
.cpt-project-nav-next.swiper-button-disabled {
    cursor: default;
}  

@media (max-width: 992px) {
    .cpt-project-module {
        padding: 40px 20px;
    }

    
}