.truth-container {
  background: white;
  color: #14102f;

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 15px;
  line-height: 20px;

  max-width: min(100%, 894px);

  padding: 24px;

  border-radius: 12px;

  --resize-handle-width: 24px;
}

.dark-mode > .truth-container {
  background: #08051b;
  color: #fbfafb;
}


.truth-container .truth-header {
  display: flex;
  align-items: center;

  margin-bottom: 16px;
}

.truth-container .truth-header.small-header {
  margin-bottom: -8px;
}

.truth-container .truth-header .avatar {
  display: block;

  width: 42px;
  height: 42px;

  border-radius: 9999px;

  object-fit: cover;
}

.truth-container .truth-header .truth-user-info {
  font-size: 14px;

  max-width: 472px;

  margin-left: 12px;

  white-space: nowrap;
  overflow: hidden;
}

.truth-container .truth-header .truth-user-name-info {
  display: flex;
  align-items: center;

  font-weight: 600;
}

.truth-container .truth-header .truth-user-name {
  flex-shrink: 1;

  min-width: 0;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truth-container .truth-header .truth-verified-icon {
  display: flex;

  margin-left: 4px;

  vertical-align: middle;
}

.truth-container .truth-header .truth-verified-icon > svg {
  width: 16px;
}

.truth-container .truth-header .truth-user-handle-info {
  display: flex;
  align-items: center;
  gap: 4px;

  color: #656175;
}

.dark-mode > .truth-container .truth-header .truth-user-handle-info {
  color: #868393;
}

.truth-container .truth-header .truth-user-handle {
  flex-shrink: 1;

  min-width: 0;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.truth-container .truth-replying-to {
  color: #656175;

  font-size: 14px;

  margin-top: 16px;
  margin-bottom: -8px;
}

.dark-mode > .truth-container .truth-replying-to {
  color: #868393;
}


.truth-container .truth-content {
  font-size: 18px;
  line-height: 28px;

  margin-top: 16px;

  overflow-wrap: break-word;
  white-space: pre-wrap;
}

.truth-container .truth-content p {
  margin: 0;
  margin-bottom: 16px;

  white-space: pre-wrap;
}

.truth-container .truth-content p:last-child {
  margin-bottom: 0;
}

.truth-container .truth-content a,
.truth-container .truth-replying-to a {
  color: #4338ca;

  text-decoration: none;
}

.dark-mode > .truth-container .truth-content a,
.dark-mode > .truth-container .truth-replying-to a {
  color: #35ccf0;
}


.truth-container .truth-media-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-gap: 4px;

  margin-top: 16px;

  aspect-ratio: 16/9;
}

/* has exactly 1 child */
.truth-container .truth-media-container.has-exactly-one-child {
  aspect-ratio: auto;
}
/*LINK ../scripts/themes.js#firefox-has*/

.hide-media > .truth-container .truth-media-container {
  display: none;
}

.truth-container .truth-media-container .truth-media {
  display: block;

  width: 100%;
  height: 100%;

  border-radius: 10px;

  object-fit: cover;
}

/*LINK ../themes/toot.css#media-collage*/

/* 1st of 1 child */
.truth-container .truth-media-container .truth-media:nth-child(1):nth-last-child(1) {
  grid-row: 1 / 3;
  grid-column: 1 / 3;
}

/* 1st of 2 children */
.truth-container .truth-media-container .truth-media:nth-child(1):nth-last-child(2),
/* 1st of 3 children */
.truth-container .truth-media-container .truth-media:nth-child(1):nth-last-child(3) {
  grid-row: 1 / 3;
}

/* 2nd of 2 children */
.truth-container .truth-media-container .truth-media:nth-child(2):nth-last-child(1) {
  grid-row: 1 / 3;
}

/* the 5th (or more) child */
.truth-container .truth-media-container .truth-media:nth-child(n + 5) {
  display: none;
}


.truth-container .truth-quote-container {
  margin-top: 16px;
  padding: 16px;

  border: 1px solid #ededef;
  border-radius: 8px;
}

.dark-mode > .truth-container .truth-quote-container {
  border-color: #201c3c;
}


.truth-container .truth-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  color: #656175;

  font-size: 14px;

  padding: 12px 0 0;

  white-space: pre-wrap;
}

.dark-mode > .truth-container .truth-footer {
  color: #868393;
}

.truth-container .truth-footer > div {
  flex-basis: max-content;
}


.truth-container .watermark {
  flex-basis: 100% !important;
}

.truth-container img.emoji {
  display: inline-block;

	width: 16px;
	height: 16px;

  margin-bottom: 0.2ex;
  margin-top: -0.2ex;

  vertical-align: middle;

  object-fit: contain;
}

.truth-container .truth-content img.emoji {
  width: 20px;
  height: 20px;

  margin: 0;
}

.truth-container .truth-content.big-emoji img.emoji {
  width: 28px;
  height: 28px;

  padding: 4px;

  box-sizing: content-box; /* HACK Yuck */
}

/* "Faint" letters in post */
.preview.faint-letters > .truth-container .pelican-letter.hidden {
	opacity: 0.135;
  color: black;
}

.preview.faint-letters.dark-mode > .truth-container .pelican-letter.hidden {
	opacity: 0.135;
  color: white;
}