.layout__awards {
  background-color: #ffffff !important;
  padding: 0 5% 60px 5%;
  position: relative;
  font-family: 'Inter', 'Poppins', sans-serif;
  margin-top: 0rem;
}

.awards-modern__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.mySwiperAwardsModern {
  width: 100%;
  overflow: hidden;
  padding-bottom: 20px;
}

.awards-modern__slide {
  height: auto;
  display: flex;
}

.awards-modern__card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 4px 24px 0px #4b3cff1a;
  border: 1px solid #f0f0f0;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.awards-modern__card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px 0px rgba(75, 60, 255, 0.15);
}

.awards-modern__logo-container {
  height: 100px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.awards-modern__logo-container img {
  max-height: 100%;
  max-width: 250px;
  object-fit: contain;
}

.awards-modern__text-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.awards-modern__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A192F;
  margin-bottom: 12px;
  line-height: 1.4;
}

.awards-modern__subtitle {
  font-size: 1rem;
  color: #4B5563;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Controls */
.awards-modern__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.awards-modern__progress-wrapper {
  flex-grow: 1;
  max-width: 400px;
  position: relative;
  height: 4px;
  background: #E5E7EB;
  border-radius: 2px;
  margin-right: 40px;
}

.swiper-pagination-awards-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-pagination-awards-modern .swiper-pagination-progressbar-fill {
  background: #1A55DF;
  border-radius: 2px;
}

.awards-modern__nav {
  display: flex;
  gap: 12px;
}

.awards-modern__nav-prev,
.awards-modern__nav-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4B5563;
  transition: all 0.2s ease;
}

.awards-modern__nav-prev:hover,
.awards-modern__nav-next:hover {
  background: transparent;
  color: #0B54B7;
}

.awards-modern__nav-prev.swiper-button-disabled,
.awards-modern__nav-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Mobile specific */
@media (max-width: 768px) {
  .awards-modern__controls {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  
  .awards-modern__progress-wrapper {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
  
  .awards-modern__nav {
    align-self: flex-end;
  }
}
