﻿.covorking-slider {
  position: relative;
  width: 98%;
  height: 450px;
/*  margin: auto;*/
  display: flex;
  align-items: center;
  gap: 16px;
}

.cov-slide {
  height: 100%;
  flex-shrink: 0;
  transition: width 0.5s ease;
  border-radius: 6px;
  overflow: hidden;

  position: relative;
}

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


.cov-slide.active {
  width: 60%;
  z-index: 1;
}

.cov-slide.inactive {
  width: 20%;
  z-index: 1;
}

.cov-slide.inactive::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
}

/* Кнопки управления внутри активного слайда */
.arrows-slider-container {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 16px;
  z-index: 10;
}

.cov-title-container {
  position: absolute;
  top: 26.5px;
  left: 24px;
  bottom: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  z-index: 15;
}

@media(max-width: 1600px) {
  .covorking-slider {
    width: 98%;
  }
}

@media(max-width: 1440px) {
  .covorking-slider {
    width: 95%;
  }
}

@media (max-width: 600px) {
  .covorking-slider {
    position: relative;
    width: 95%;
    height: 200px;
    margin: unset;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .cov-slide.inactive .cov-title-container {
    opacity: 0;
  }

  .cov-title-container {
    opacity: 1;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
  }

  .arrows-slider-container {
    position: absolute;
    top: auto;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 16px;
    z-index: 10;
  }
}
