/* Contact us page */

.contact-page {
  display: flex;
  flex-direction: column;
  background: url("/static/images/main_bg.webp") no-repeat top center / 100% auto;
  width: 100%;
  min-height: 100dvh;
}

.contact-page .page-main {
  padding: 30px 0 60px;
  gap: 30px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.breadcrumb {
  margin: 0;
  font-size: 18px;
  font-family: PingFang SC, sans-serif;
  font-weight: 400;
  line-height: 24px;
}

.breadcrumb a {
  color: var(--text-primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-primary-500);
}

.breadcrumb__current {
  color: var(--text-secondary);
}

.contact-panel {
  width: 100%;
  padding: 60px 219px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 60px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  box-sizing: border-box;
}

.contact-panel__section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.contact-panel__title {
  margin: 0;
  width: 100%;
  text-align: center;
  color: var(--text-primary);
  font-size: 24px;
  font-family: PingFang SC, sans-serif;
  font-weight: 400;
  line-height: 32px;
}

.contact-channels {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-channel {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}

.contact-channel__icon-wrap {
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  border-radius: 9999px;
  display: inline-flex;
}

.contact-channel__icon {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
}

.contact-channel__label {
  color: var(--text-primary);
  font-size: 24px;
  font-family: PingFang SC, sans-serif;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}

.contact-channel:hover .contact-channel__label {
  color: var(--color-primary-500);
}

@media (max-width: 1280px) {
  .contact-panel {
    padding: 48px 48px;
    border-radius: 32px;
  }

  .contact-channels {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .contact-page {
    background: none;
    min-height: auto;
  }

  .contact-page .page-main {
    padding: 12px 0 0;
    gap: 0;
  }

  .contact-content.layout-section {
    gap: 18px;
    padding-left: var(--layout-padding-x);
    padding-right: var(--layout-padding-x);
    padding-bottom: 12px;
    box-sizing: border-box;
  }

  .breadcrumb {
    font-size: 12px;
    line-height: 18px;
  }

  .contact-panel {
    padding: 24px 20px;
    background: #fff;
    border-radius: 18px;
    border: none;
    outline: 1px solid var(--color-black-alpha-10);
    outline-offset: -1px;
    backdrop-filter: none;
    gap: 18px;
    overflow: hidden;
  }

  .contact-panel__section {
    width: 100%;
    max-width: 303px;
    align-items: flex-start;
    gap: 12px;
  }

  .contact-panel__title {
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }

  .contact-channels {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
  }

  .contact-channel {
    gap: 12px;
    flex: 0 0 auto;
  }

  .contact-channel__icon-wrap {
    padding: 11px;
  }

  .contact-channel__icon {
    width: 22px;
    height: 22px;
  }

  .contact-channel__label {
    font-size: 12px;
    line-height: 18px;
  }
}
