.awards-showcase {
  position: relative;
  padding: 80px 0;
  color: var(--white);
  overflow: hidden;
  width: 100%;
}

.awards-showcase__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.awards-showcase .container {
  position: relative;
  z-index: 2;
}

.awards-showcase__content {
  text-align: center;
  margin: 0 auto;
}

.awards-showcase__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.awards-showcase__text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.awards-showcase__text p:last-child {
  margin-bottom: 0;
}

.awards-showcase__images {
  margin-bottom: 48px;
  overflow: hidden;
}

.awards-showcase__images-container {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Horizontal scroll on smaller screens */
@media (max-width: 1200px) {
  .awards-showcase__images-container {
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 30px;
  }
  
  .awards-showcase__images {
    position: relative;
  }
  
  .awards-showcase__images::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(90deg, transparent 0%, transparent 85%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
  }
}

.awards-showcase__image-item {
  flex-shrink: 0;
  width: 220px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 10px;
  transition: transform 0.3s ease;
  border: none;
}

.awards-showcase__image-item:hover {
  transform: translateY(-5px) scale(1.05);
}

.awards-showcase__image-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.1);
}

.awards-showcase__cta {
  margin-top: 24px;
}

.awards-showcase__button {
  display: inline-block;
  background: var(--accent-red);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: none;
}

.awards-showcase__button:hover,
.awards-showcase__button:focus {
  background: #c62828;
  color: var(--white);
  transform: translateY(-2px);
}

/* Light background adjustments */
.awards-showcase[style*="background-color: #fff"],
.awards-showcase[style*="background-color: #ffffff"],
.awards-showcase[style*="background-color: white"] {
  color: var(--text);
}

.awards-showcase[style*="background-color: #fff"] .awards-showcase__title,
.awards-showcase[style*="background-color: #ffffff"] .awards-showcase__title,
.awards-showcase[style*="background-color: white"] .awards-showcase__title {
  color: var(--text);
}

.awards-showcase[style*="background-color: #fff"] .awards-showcase__text,
.awards-showcase[style*="background-color: #ffffff"] .awards-showcase__text,
.awards-showcase[style*="background-color: white"] .awards-showcase__text {
  color: var(--muted);
}

.awards-showcase[style*="background-color: #fff"] .awards-showcase__image-item,
.awards-showcase[style*="background-color: #ffffff"] .awards-showcase__image-item,
.awards-showcase[style*="background-color: white"] .awards-showcase__image-item {
  background: transparent;
  border-color: transparent;
}

.awards-showcase[style*="background-color: #fff"] .awards-showcase__image-item:hover,
.awards-showcase[style*="background-color: #ffffff"] .awards-showcase__image-item:hover,
.awards-showcase[style*="background-color: white"] .awards-showcase__image-item:hover {
  background: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .awards-showcase {
    padding: 60px 0;
  }
  
  .awards-showcase__text {
    font-size: 1.1rem;
    margin-bottom: 36px;
  }
  
  .awards-showcase__images {
    margin-bottom: 36px;
  }
  
  .awards-showcase__images-container {
    gap: 24px;
    padding: 15px 0;
  }
  
  .awards-showcase__image-item {
    width: auto;
    height: 140px;
    padding: 8px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .awards-showcase {
    padding: 60px 0;
  }

  .awards-showcase__title {
    font-size: 2rem;
  }

  .awards-showcase__text {
    font-size: 1.1rem;
    margin-bottom: 36px;
  }

  .awards-showcase__images {
    margin-bottom: 36px;
  }

  .awards-showcase__images-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow-x: visible;
    flex-wrap: wrap;
  }

  .awards-showcase__image-item {
    width: 100%;
    max-width: 280px;
  }

  .awards-showcase__image-item img {
    max-height: 180px;
  }
}

@media (max-width: 576px) {
  .awards-showcase {
    padding: 50px 0;
  }

  .awards-showcase__title {
    font-size: 1.8rem;
  }

  .awards-showcase__text {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .awards-showcase__images {
    margin-bottom: 32px;
  }

  .awards-showcase__images-container {
    gap: 20px;
    padding: 16px 0;
  }

  .awards-showcase__image-item {
    padding: 8px;
    max-width: 240px;
  }

  .awards-showcase__image-item img {
    max-height: 150px;
  }

  .awards-showcase__button {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}