<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header {
  background-color: #ef8137;
  display: flex;
  align-items: center;
  padding: 12px 8px 8px;
  /* border-bottom: rgb(210, 210, 210) 1.5px solid; */
  position: relative;
  position: sticky;
  top: 0;
  z-index: 10;

  .items-link {
    position: absolute;

    .chevron-left {
      color: #fff;
      font-size: 24px;

      &amp;:hover {
        opacity: 0.7;
        cursor: pointer;
      }
    }
  }

  .header-title {
    font-weight: bold;
    margin: 0 auto;
    text-decoration: none;
    color: #fff;

    &amp;:hover,
    &amp;:focus {
      text-decoration: underline;
    }
  }
}

.tags {
  font-size: 16px;
  overflow: hidden;
  display: grid;
  row-gap: 2rem;
  column-gap: 2rem;

  @media (min-width: 450px) {
    max-width: 1024px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  @media (max-width: 449px) {
    grid-template-columns: 1fr 1fr;
    padding: 0 0.5rem;
  }

  .tag-group {
    display: flex;
    flex-direction: column;

    .hashtag-link {
      display: contents;
      text-decoration: none;

      .tag {
        color: #378bf0;
        /* white-space: nowrap; */
        padding-top: 0.25rem;

        &amp;:hover {
          color: rgb(117, 163, 231);
        }
      }
    }
  }
}
</pre></body></html>