.topics-section {
  background: var(--dark-indigo);

  .topics-title {
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    max-width: 800px;
    margin: auto;
  }

  .trending-topics-list {
    max-width: 1000px;
    margin: auto;
    list-style: none;
    padding: 0;

    li {
      display: flex;
      align-items: center;
      font-size: 18px;
      font-weight: 700;
      padding: 18px 10px;
      border-bottom: 1px solid white;
      position: relative;
      line-height: 22px;
      list-style: none;

      .plus-item-icon {
        width: 15px;
        height: 15px;
        margin-right: 10px;
      }
    }
  }

  @media (max-width: 991px) {
    h2 {
      font-size: 38px;
      line-height: 40px;
    }

    .topics-title {
      max-width: 300px;
      margin: auto;
    }
  }
}
