/* WRITING/NOTES PAGES (page.html) */

.text-col {
  display: flex;
  gap: 1.5rem;
  width: 100%;
}

.metadata {
  width: 15rem;
  flex-shrink: 0;
  padding: 48px 0em;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 1em;
  padding-right: 32px;
  height: fit-content;
}

.metadata > * {
  line-height: 1.3em;
  font-size: 0.85em;
}

.research-tag {
  font-weight: 600;
  text-transform: uppercase;
}

.date {
  border: solid 1px var(--theme);
  padding: 0.5em 1em;
  width: fit-content;
  line-height: 1.8em;
  display: inline-flex;
  color: var(--theme);
}

.mobile-meta {
  display: none;
}

@media (max-width: 1000px) {
  .metadata {
    display: none;
  }

  .mobile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 750px) {
  .content {
    padding: 24px;
  }
}
