.custom-menu-2 {
  width: 33.3%;
  --padding-pc: 16px;
}

/* PC 端样式 */
.custom-menu-2__desktop {
  display: flex;
  padding: 0 var(--padding-pc);
}

.custom-menu-2__section {
  flex: 1;
  padding-right: var(--padding-pc);
}

.custom-menu-2__title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

.custom-menu-2__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.428;

  li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;

    a {
      color: #fff;

      &:hover {
        color: #f9ca65;
      }
    }
  }
}

/* 移动端样式 */
.custom-menu-2__mobile {
  padding: 0 20px;
}

.custom-menu-2__mobile-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-menu-2__mobile-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.custom-menu-2__mobile-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.custom-menu-2__mobile-button[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.custom-menu-2__mobile-list {
  display: none;
  padding: 0 0 20px 20px;
}

.custom-menu-2__mobile-list:not([hidden]) {
  display: block;
}

.custom-menu-2__mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  text-decoration: none;
  opacity: 0.8;
}

.custom-menu-2__mobile-link:hover {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .custom-menu-2 {
    width: 100%;
    padding-bottom: 20px;
  }

  .custom-menu-2__desktop {
    padding: 0;
  }

  .custom-menu-2__title {
    font-size: 20px !important;
  }
} 