.project-devices-widget {
  padding: 0;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.devices-title {
  font-size: 30px;
  font-weight: 500;
  color: #22282B;
  margin-bottom: 24px;
  text-align: left;
  max-width: 45%;
    margin-block-start: 0em;
    margin-block-end: 0em;
	margin-bottom:24px;
}

.devices-slider {
  width: 100%;
  overflow: hidden;
}

.devices-slider .swiper-wrapper {
  display: flex;
}

.devices-slider .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.swiper-slide:last-child {
  margin-right: 0;
}

.device-card {
  background-color: #fff;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.device-top{
	border-radius: 16px;
	border: 1px solid #DDD;
	background: #FFF;
	height: 200px;
	display: inline-grid;
}
.device-logo img {
  max-height: 100%;
  margin-bottom: 0px;
  margin-left: 10px;
}

.device-image {
  text-align: center;
}

.device-image img {
  max-width: 80%;
  height: auto;
  object-fit: contain;
}

.device-description-title {
  color: #000;
  margin-bottom: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  max-width: 85%;
  margin-top: 16px;
}

.device-description-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #474747;
  max-width: 90%;
}

.slider-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 20px;
  z-index: 10;
}

.slider-nav .prev-btn,
.slider-nav .next-btn {
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #DDD;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
	width: 42px;
	height: 42px;
	padding: 10px 8px;
}

.slider-nav .next-btn {
  border-color: #BF3131;
}

.slider-nav img {
  width: 20px;
  height: 20px;
}

.slider-pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
}

.slider-pagination .swiper-pagination-bullet,
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #D9D9D9;
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.3s;
}

.slider-pagination .swiper-pagination-bullet-active,
.swiper-pagination-bullet-active {
  background-color: #BF3131;
}

@media (max-width: 1023px) {
  .devices-slider .swiper-slide {
    width: calc((100% - 24px) / 2);
  }

  .devices-title {
	font-size: 24px;
    max-width: 100%;
  }
  .slider-nav {
    display: none; 
  }
}

@media (max-width: 767px) {
  .devices-title {
    font-size: 24px;
    text-align: left;
    max-width: 100%;
  }

	.device-top .device-logo{
		    text-align: left;
	}
  .devices-slider .swiper-slide {
    width: 100%;
    margin-right: 0;
  }

  .device-top {
    grid-template-columns: 1fr;
    height: 200px;
    text-align: center;
  }
  .slider-nav {
    display: none; 
  }
	
	.slider-pagination {
    margin-top: 30px;
	}
}
