.awardsSection {
  padding: 45px 0;
}

.awardsSection__container {
  text-align: left;
}

.awardsSection__title {
  margin-bottom: 50px;
  text-align: left;
}

.awardsSection__heading {
  font-weight: 600;
  margin: 0;
  color: #000;
  text-align: left;
}

.awardsSection__cards {
  margin-bottom: 0;
}

.awardsSection__cardsGrid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.awardsSection__row {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.awardsSection__card {
  flex: 1;
  min-width: 300px;
  max-width: calc(33.333% - 20px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.awardsSection__card:hover {
  transform: translateY(-5px);
  background-color: #D9DAE3;
}

.awardsSection__card:hover .awardsSection__cardArrow {
  width: 40px;
}

.awardsSection__cardLink {
  text-decoration: none;
  color: inherit;
  display: block;
}

.awardsSection__cardContent {
  background-color: #FFCF00;
  border-radius: 15px 15px 0px 0px;
  padding: 25px 20px;
  text-align: center;
  margin-bottom: 15px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awardsSection__cardTitle {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin: 0;
  width: 300px;
  font-family: 'Pastiche Grotesque', 'Open Sans', sans-serif;
}

.awardsSection__cardDescription {
  text-align: left;
  padding: 20px 15px;
}

.awardsSection__cardSubtext {
  font-size: 1.5rem;
  color: #000;
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: 'Pastiche Grotesque', 'Open Sans', sans-serif;
}

.awardsSection__cardArrow {
  color: #000;
  display: inline-block;
  transition: width 0.5s ease;
}

/* Text color variants */
.awardsSection--text-dark .awardsSection__heading,
.awardsSection--text-dark .awardsSection__cardTitle,
.awardsSection--text-dark .awardsSection__cardSubtext,
.awardsSection--text-dark .awardsSection__cardArrow {
  color: #000;
}

.awardsSection--text-light .awardsSection__heading,
.awardsSection--text-light .awardsSection__cardTitle,
.awardsSection--text-light .awardsSection__cardSubtext,
.awardsSection--text-light .awardsSection__cardArrow {
  color: #fff;
}

/* Padding variants */
.awardsSection--padding-top-small {
  padding-top: 15px;
}

.awardsSection--padding-top-medium {
  padding-top: 30px;
}

.awardsSection--padding-top-large {
  padding-top: 45px;
}

.awardsSection--padding-top-none {
  padding-top: 0;
}

.awardsSection--padding-bottom-small {
  padding-bottom: 15px;
}

.awardsSection--padding-bottom-medium {
  padding-bottom: 30px;
}

.awardsSection--padding-bottom-large {
  padding-bottom: 45px;
}

.awardsSection--padding-bottom-none {
  padding-bottom: 0;
}

/* Bottom spacing variants */
.awardsSection--bottom-small {
  margin-bottom: 15px;
}

.awardsSection--bottom-medium {
  margin-bottom: 30px;
}

.awardsSection--bottom-large {
  margin-bottom: 45px;
}

.awardsSection--bottom-xlarge {
  margin-bottom: 75px;
}

.awardsSection--bottom-none {
  margin-bottom: 0;
}

/*--------------------------------------------*/

/* max-width: 1023px */
@media (max-width: 1023px) {
  .awardsSection__row {
    gap: 20px;
  }

  .awardsSection__card {
    min-width: 250px;
    max-width: calc(50% - 10px);
  }

  .awardsSection__cardContent {
    padding: 20px 15px;
    min-height: 120px;
  }

  .awardsSection__cardTitle {
    font-size: 1.5rem;
    width: auto;
  }

  .awardsSection__cardSubtext {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------*/

/* max-width: 767px */
@media (max-width: 767px) {
  .awardsSection {
    padding: 25px 0;
  }

  .awardsSection__title {
    margin-bottom: 30px;
  }

  .awardsSection__cardsGrid {
    gap: 30px;
  }

  .awardsSection__row {
    flex-direction: column;
    gap: 20px;
  }

  .awardsSection__card {
    width: 100%;
    max-width: none;
    min-width: unset;
  }

  .awardsSection__cardContent {
    padding: 20px 15px;
    min-height: 100px;
  }

  .awardsSection__cardTitle {
    font-size: 1.25rem;
    width: auto;
  }

  .awardsSection__cardSubtext {
    font-size: 1rem;
  }

  /* Padding variants for mobile */
  .awardsSection--padding-top-small {
    padding-top: 10px;
  }

  .awardsSection--padding-top-medium {
    padding-top: 20px;
  }

  .awardsSection--padding-top-large {
    padding-top: 25px;
  }

  .awardsSection--padding-bottom-small {
    padding-bottom: 10px;
  }

  .awardsSection--padding-bottom-medium {
    padding-bottom: 20px;
  }

  .awardsSection--padding-bottom-large {
    padding-bottom: 25px;
  }

  /* Bottom spacing variants for mobile */
  .awardsSection--bottom-small {
    margin-bottom: 10px;
  }

  .awardsSection--bottom-medium {
    margin-bottom: 20px;
  }

  .awardsSection--bottom-large {
    margin-bottom: 25px;
  }

  .awardsSection--bottom-xlarge {
    margin-bottom: 40px;
  }
}
