.award-banner {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  z-index: 10;
  box-sizing: border-box;
  gap: 20px;
}

.award-icon {
  height: 80px;
  flex-shrink: 0;
}

.award-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 700px;
}

.award-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
  color: #fff;
}

.award-subtitle {
  font-size: 1.1rem;
  margin: 8px 0 0;
  color: #fff;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .award-icon {
    height: 120px;
  }

  .award-banner {
    height: 110px;
  }

  .award-title {
    font-size: 1.7rem;
  }

  .award-subtitle {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 600px) {
  .award-banner {
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
    gap: 10px;
  }

  .award-icon {
    height: 60px;
  }

  .award-text {
    max-width: 100%;
  }

  .award-title {
    font-size: 1.3rem;
  }

  .award-subtitle {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .award-banner {
    display: none;
  }
}
