.featured-column-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

@media screen and (max-width: 959px) {
  .featured-column-text {
    gap: 10px;
  }
}

.featured-column-text__title {
  margin: 0;
  font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.24px;
  color: #232833;
  text-transform: capitalize;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.featured-column-text__description {
  margin: 0;
  font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: #232833;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* 文本对齐 */
.text-align-left {
  text-align: left;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

/* PC端 - 较大字体 */
@media screen and (min-width: 960px) {
  .featured-column-text__title {
    font-size: 24px;
    line-height: 24px;
  }
  
  .featured-column-text__description {
    font-size: 18px;
    line-height: 140%;
  }
}

/* 移动端 - 较小字体 */
@media screen and (max-width: 959px) {
  .featured-column-text__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.16px;
  }
  
  .featured-column-text__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
  }
}


