html, body {
  background: #131313;
  color: #efefef;
}

* { box-sizing: border-box; }

.embed {
  display: flex;
  flex-direction: column;
  background: #262626;
  max-width: 500px;
  padding: 16px;
  border-radius: 8px;
}

.embed > * { margin-top: 4px; }
.embed-author span, .embed-footer span {
  vertical-align: middle;
}
.embed-author span { font-weight: bold; }

.embed-author img, .embed-footer img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
}

.embed-images {
  display: grid;
  width: 100%;
  height: auto;
  grid-gap: 8px;
}

.eimg-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 400px;
}
.eimg-2 {
  grid-template-rows: 400px;
  grid-template-columns: repeat(2, 1fr);
}
.eimg-3, .eimg-4 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
}

.eimg-3 :nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.embed-images img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.showcase {
  width: 1024px;
  background: #070707;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  grid-gap: 8px;
}
