.featured-column-button-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.featured-column-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid #232833;
  border-radius: 24px;
  background-color: transparent;
  color: #232833;
  font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.16px;
  text-decoration: none;
  text-transform: capitalize;
  white-space: nowrap;
  cursor: pointer;
  height: 48px;
}

.featured-column-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.featured-column-button__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.featured-column-button__text {
  line-height: 1;
}

/* PC端 - 较大字体 */
@media screen and (min-width: 960px) {
  .featured-column-button {
    font-size: 16px;
    width: 154px;
  }
}

/* 移动端 - 较小字体 */
@media screen and (max-width: 959px) {
  .featured-column-button {
    font-size: 14px;
    padding: 10px 20px;
    height: 40px;
    width: auto;
  }
}


