.crsl-section *,
.crsl-section *::before,
.crsl-section *::after { box-sizing: border-box; }

.crsl-layout {
    display: flex;
    align-items: center;
    gap: 100px;
}

.crsl-col-content { position: relative; width: 48%; }

.crsl-content-viewport { overflow: hidden; }

.crsl-content-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: flex-start;
}

.crsl-content-item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.crsl-label {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.crsl-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #1a1a1a;
    text-stroke: 2px #1a1a1a;
    line-height: 1;
    margin: 0;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.crsl-subtitle {
    font-size: clamp(32px, 2vw, 36px);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.crsl-star-icon { display: flex; align-items: center; }
.crsl-star-icon img { width: 36px; height: 36px; }

.crsl-desc {
    font-size: 13.5px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.crsl-bullets {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.crsl-bullets li {
    font-size: 13.5px;
    color: #444;
    line-height: 1.6;
}

.crsl-col-images {
    position: relative;
	width: 52%;
}


.crsl-img-stage {
    position: relative;
}


.crsl-img-slot--next {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
	margin-top: 25px;
    width: 40%;
}

.crsl-img-slot--main {
    position: relative;
    width: calc(100% - 210px);
    overflow: hidden;
    z-index: 2;
}

.crsl-img-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.crsl-img-cell {
    flex: 0 0 100%;
    min-width: 100%;
	max-height: 540px;
}

.crsl-img-cell img {
	width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
    object-position: top;
}

.crsl-img-slot--next .crsl-img-cell {
    height: 100%;
}
.crsl-img-slot--next .crsl-img-cell img {
    height: 100%;
    object-fit: cover;
}

.crsl-img-bg {
    width: 100%;
    min-height: 420px;
}

/* ── Next button ── */
.crsl-col-images .crsl-btn {
    position: absolute;
    bottom: 8px;
    right: 76px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #222;
    background: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}
crsl-col-images. .crsl-btn:hover { background: #f0f0f0; }
.crsl-btn svg { width: 30px; height: auto; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
	.crsl-layout { flex-direction: column; gap: 40px}
	.crsl-col-content, .crsl-col-images {
		width: 100%;
	}
    .crsl-col-images { order: -1; }
    .crsl-img-slot--main { width: calc(100% - 40%); }
}

@media (max-width: 767px) {
    
    .crsl-title { font-size: 28px; }
    .crsl-btn { width: 40px; height: 40px; right: 40px; }
    .crsl-btn svg { width: 22px; }
    .crsl-img-bg { min-height: 280px; }
}
