.page {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.honor-page {
  width: 100%;
  background: #fff
}

.honor-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 1px;
}

.honor-title {
  width: fit-content;
  height: 36px;
  overflow-wrap: break-word;
  color: rgba(0, 0, 0, 1);
  font-size: clamp(24px, 3vw, 37px);
  font-family: SourceHanSerifSC-Heavy;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
  line-height: 1.2;
  margin: 80px auto 0;
}

.honor-divider {
  width: 100%;
  max-width: 1319px;
  height: 2px;
  margin: 26px auto 0;
  display: block;
}

.honor-grid {
  width: 100%;
  max-width: 1318px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
  gap: 28px 27px;
  justify-content: center;
  margin: 82px auto 0;
  padding-bottom: 28px;
}

.honor-card {
  height: 345px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 420px;
  min-width: 300px;
  aspect-ratio: 420 / 345;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.honor-card__footer {
  height: 60px;
  background-size: 100% 100%;
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  background: #b2b2b2;
}

.honor-card__text {
  width: fit-content;
  max-width: 100%;
  height: auto;
  overflow-wrap: break-word;
  font-size: clamp(14px, 1.5vw, 21px);
  font-family: SourceHanSerifSC-Medium;
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  line-height: 1.2;
  margin: 0;
  padding: 0 10px;
  color: rgba(52, 52, 52, 1);
}

.honor-card__text--center {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .honor-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .honor-card {
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .honor-content {
    padding: 0 15px;
  }
  
  .honor-title {
    margin: 40px auto 0;
    font-size: clamp(20px, 5vw, 37px);
  }
  
  .honor-grid {
    grid-template-columns: 1fr;
    margin: 40px auto 0;
    gap: 20px;
  }
  
  .honor-card {
    min-width: 100%;
    height: auto;
    aspect-ratio: 420 / 345;
  }
  
  .honor-card__footer {
    height: 50px;
  }
  
  .honor-card__text {
    font-size: clamp(12px, 3vw, 21px);
  }
}

@media (max-width: 480px) {
  .honor-content {
    padding: 0 10px;
  }
  
  .honor-title {
    margin: 30px auto 0;
  }
  
  .honor-divider {
    margin: 15px auto 0;
  }
  
  .honor-grid {
    margin: 30px auto 0;
    gap: 15px;
  }
  
  .honor-card__footer {
    height: 45px;
    padding: 0 10px;
  }
}
