/* 抽屉样式 */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 700px;
  height: 100vh;
  background-color: #50001c;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 101;
  display: flex;
  flex-direction: column;
}

.drawer.active {
  transform: translateX(0);
}

.drawer-header {
  margin-top: 30px;
  margin-left: 610px;
  height: 60px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-content {
  max-width: 610px;
  flex: 1;
  padding: 0px 20px;
  overflow-y: auto;
  /* 隐藏滚动条 - WebKit浏览器 (Chrome, Safari) */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 和 Edge */
}

/* 隐藏滚动条 - Chrome, Safari 和 Opera */
.drawer-content::-webkit-scrollbar {
  display: none;
}

.about-section {
  margin-bottom: 20px;
}

.about-section h3 {
  font-size: 24px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0em;
  margin-bottom: 15px;
  color: #f03d4e;
  margin: 0px;
}

.about-section p {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #f03d4e;
  margin: 0px;
}
.awards-section {
  margin-top: 20px;
}

.awards-title {
  max-width: 610px;
  font-size: 24px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0em;
  color: #f03d4e;
  border-bottom: 1px solid #f03d4e;
}
.about-section.en h3 {
  font-family: "Roboto Flex";
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0em;
  color: #f03d4e;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #f03d4e;
}

.social-icon {
  width: 32px;
  height: 51px;
  display: flex;
}

.awards-grid {
  margin-top: 20px;
  margin-bottom: 10px;
  max-width: 610px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.award-item {
  color: #f03d4e;
  padding: 10px 15px;
  font-size: 18px;
  text-align: center;
  border-radius: 8px;
  opacity: 1;
  box-sizing: border-box;
  border: 1px solid #f03d4e;
  display: inline-block;
}
