.other-projects {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: auto;
}
.other-projects__title {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 29px;
    color: #54565A;
    text-transform: uppercase;
}
.other-projects__slider {
    margin-top: 15px;
    display: flex;
    transition: transform 0.3s ease;
}
.other-projects__item {
    display: block;
    min-width: 281px;
    height: 281px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 9px;
    margin-right: 24px;
}
.other-projects__item:last-child {
    margin-right: 0; /* Убираем отступ у последнего слайда */
}
.other-projects__item-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}
.other-projects__control {
    background-color: #4F5665;
    border-radius: 3px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}
.other-projects__control svg {
    fill: #ffffff;
}
.other-projects__control:hover {
    opacity: 0.8;
}
.other-projects__control--prev {
    transform: rotate(180deg);
}
.other-projects__control--next {
    margin-left: auto;
    margin-right: 0;
}
.other-projects__slider-nav {
	display: flex;
	column-gap: 11px;
	justify-content: flex-end;
	margin-top: 20px;
}
.other-projects__prev-button, .other-projects__next-button {
	background: #C10230;
	border: none;
	cursor: pointer;
	font-size: 24px;
	padding: 10px;
	width: 32px;
	height: 32px;
	border-radius: 3px;
	color: #ffffff;
	position: relative;
	transition: all 0.5s;
}
.other-projects__prev-button:hover, .other-projects__next-button:hover {
	background: #E60A3F;
}
.other-projects__prev-button:active, .other-projects__next-button:active {
	background: radial-gradient(104.21% 102.35% at 50.25% 57.08%, #E60A3F 0%, #C10230 100%);
}
.other-projects__prev-button:after, .other-projects__next-button:after {
	content: '';
	background-image: url('./images/arrow.svg');
	width: 14px;
	height: 10px;
	display: block;
}
.other-projects__prev-button:after {
	transform: rotate(180deg);
}
@media (min-width: 768px) {
    .other-projects {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin: auto;
    }
    .other-projects__slider {
        margin-top: 33px;
        display: flex;
        transition: transform 0.3s ease;
    }
    .other-projects__item {
        display: block;
        min-width: 274px;
        height: 219px;
        position: relative;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 17px;
        margin-right: 24px;
    }
}
@media (min-width: 1320px) {
    .other-projects__title {
        font-weight: 700;
        font-size: 24px;
        line-height: 31px;
        text-transform: unset;
    }
}