.golden-gavel-award-section {
  position: relative;
  padding: 100px 0;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.award-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.9) 0%,
    rgba(17, 17, 17, 0.6) 100%
  );
  z-index: 1;
}

.golden-gavel-award-section .container {
  position: relative;
  z-index: 2;
}

.award-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.award-heading {
  font-family: "Libre Baskerville", serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 700;
}

.award-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #d4af37 0%, rgba(212, 175, 55, 0) 100%);
  margin-bottom: 30px;
}

.award-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.award-description p {
  margin-bottom: 1.5em;
}

.award-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.award-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  color: #d4af37;
}

.diamond-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.award-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-badge {
  position: absolute;
  top: -40px;
  right: 0;
  width: 160px;
  z-index: 10;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  animation: floating 3s ease-in-out infinite;
}

.award-logo-img {
  width: 100%;
  height: auto;
}

.award-winner-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.winner-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.award-winner-wrapper:hover .winner-image {
  transform: scale(1.05);
}

.award-footer {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-title {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .award-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .award-heading {
    font-size: 32px;
  }

  .award-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 20px;
    width: 120px;
  }

  .award-visual-col {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .golden-gavel-award-section {
    padding: 60px 0;
  }

  .footer-title {
    font-size: 16px;
    letter-spacing: 3px;
  }
}
