section {
  box-sizing: border-box;
  height: 100%;
  background-color: var(--color-surface-primary);
  display: flex;
  flex-direction: column;
  gap: var(--scale-800);
  padding-bottom: var(--scale-800);
  h2,
  h3,
  p {
    margin: initial;
  }
  h2 {
    text-transform: capitalize;
    color: var(--color-text-heading);
    font-family: var(--font-family-display);
    font-size: var(--typography-size-display-h3);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--font-letter-spacing-wide);
    line-height: var(--line-height-heading-h3);
  }
  h2.has-image {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    img {
      height: 48px;
      width: 48px;
      align-self: stretch;
    }
  }
  h3 {
    text-transform: capitalize;
    color: var(--color-text-heading);
    font-family: var(--font-family-display);
    font-size: var(--typography-size-display-h4);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--font-letter-spacing-wide);
    line-height: var(--line-height-heading-h4);
  }
  .location {
    margin-top: var(--scale-200);
    color: var(--color-text-information);
    display: flex;
    gap: var(--scale-200);
    align-items: center;

    font-family: var(--font-family-body);
    font-size: var(--typography-size-body-sm);
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-body-sm);
    letter-spacing: var(--font-letter-spacing-default);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    svg {
      display: flex;
      width: 20px;
      height: 20px;
      path {
        fill: var(--color-icon-information);
      }
    }
  }
  .trend-iframe {
    flex-grow: 1;
    iframe {
      height: 100%;
      width: 100%;
      border-radius: var(--border-radius-md);
      border: 1px solid var(--color-border-primary);
    }
  }
  .related-topics {
    display: flex;
    flex-direction: column;
    gap: var(--scale-200) 0px;
    .badges {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: var(--scale-200);
    }
  }
}
