/*
 * News Tag Cloud — "Tìm kiếm nổi bật" pill section.
 * Design source: Figma 407:50783 (desktop), 407:52229 (mobile).
 */

.iw-news-tag-cloud {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
  font-family: inherit;
  color: #181d27;
  -webkit-font-smoothing: antialiased;
}

.iw-news-tag-cloud .iw-news-tag-cloud__inner {
  max-width: var(--iw-container-max);
  margin: 0 auto;
  /* Top divider per Figma — visually separates from the previous section. */
  border-top: 1px solid #e7e7e7;
  padding: 56px var(--iw-container-pad-x) 60px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  box-sizing: border-box;
}

.iw-news-tag-cloud__title {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #181d27;
}

.iw-news-tag-cloud__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.iw-news-tag-cloud__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 6px;
  background: #f7f7f8;
  color: #3d3d3d;
  font-family: inherit;
  font-weight: 510;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.12s, color 0.12s;
}
.iw-news-tag-cloud__pill:hover {
  background: var(--iw-accent-soft, #e9ecf6);
  color: var(--iw-accent, #4564ed);
}

@media (max-width: 991px) {
  .iw-news-tag-cloud .iw-news-tag-cloud__inner {
    padding: 40px var(--iw-container-pad-x);
    gap: 16px;
  }

  .iw-news-tag-cloud__title {
    font-size: 24px;
    line-height: 32px;
  }
}
