.page-winners-gallery {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, main body padding-top handled by shared.css */
}

.page-winners-gallery__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-winners-gallery__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-winners-gallery__hero-content {
  position: relative; /* Changed from absolute to relative to be below the image */
  max-width: 1200px;
  margin: -100px auto 0 auto; /* Pull up slightly over the image, but not covering text */
  padding: 20px;
  text-align: center;
  background-color: rgba(10, 10, 10, 0.8); /* Semi-transparent background for readability */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-winners-gallery__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: #FFD36B;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-winners-gallery__hero-description {
  font-size: clamp(1em, 1.8vw, 1.2em);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-winners-gallery__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-winners-gallery__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-winners-gallery__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-winners-gallery__introduction-section,
.page-winners-gallery__recent-winners-section,
.page-winners-gallery__testimonials-section,
.page-winners-gallery__cta-section,
.page-winners-gallery__faq-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.page-winners-gallery__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
}

.page-winners-gallery__winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-winners-gallery__winner-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.page-winners-gallery__winner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-winners-gallery__winner-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-winners-gallery__winner-name {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-winners-gallery__win-details,
.page-winners-gallery__win-date {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 8px;
}

.page-winners-gallery__win-details span {
  font-weight: bold;
  color: #F2C14E;
}

.page-winners-gallery__card-button {
  display: inline-block;
  padding: 8px 15px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-winners-gallery__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-winners-gallery__view-all-button-container {
  text-align: center;
  margin-top: 50px;
}

.page-winners-gallery__testimonials-section {
  background-color: #111111;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
}

.page-winners-gallery__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-winners-gallery__testimonial-card {
  background-color: #0A0A0A;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-winners-gallery__testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  color: #E5E5E5;
}

.page-winners-gallery__testimonial-author {
  font-weight: bold;
  color: #F2C14E;
  text-align: right;
}

.page-winners-gallery__cta-buttons {
  text-align: center;
  margin-top: 30px;
}

.page-winners-gallery__cta-button--primary {
  margin-right: 20px;
}

.page-winners-gallery__cta-button--secondary {
  background: none;
  border: 2px solid #F2C14E;
  color: #F2C14E;
  padding: 10px 25px;
}

.page-winners-gallery__cta-button--secondary:hover {
  background-color: #F2C14E;
  color: #111111;
}

.page-winners-gallery__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-winners-gallery__faq-question {
  font-size: 1.2em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-winners-gallery__faq-answer {
  font-size: 1em;
  color: #FFF6D6;
}

@media (max-width: 768px) {
  .page-winners-gallery__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

  .page-winners-gallery__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-winners-gallery__hero-description {
    font-size: clamp(0.9em, 2.5vw, 1.1em);
  }

  .page-winners-gallery__cta-button {
    padding: 10px 20px;
  }

  .page-winners-gallery__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
  }

  .page-winners-gallery__winners-grid,
  .page-winners-gallery__testimonial-grid {
    grid-template-columns: 1fr;
  }

  .page-winners-gallery__introduction-section,
  .page-winners-gallery__recent-winners-section,
  .page-winners-gallery__testimonials-section,
  .page-winners-gallery__cta-section,
  .page-winners-gallery__faq-section {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .page-winners-gallery__cta-buttons {
    flex-direction: column;
  }

  .page-winners-gallery__cta-button--primary {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-winners-gallery__hero-section img,
  .page-winners-gallery__winner-card img,
  .page-winners-gallery__testimonials-section img,
  .page-winners-gallery__cta-section img,
  .page-winners-gallery__faq-section img,
  .page-winners-gallery img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-winners-gallery img {
    min-width: 200px;
    min-height: 200px;
  }
}