:root {
  --almost-black: #111;
}

:root {
  --almost-black: #111;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  display: grid;
  width: calc(100% - 60px);
  max-width: 1280px;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 640px) {
  .content {
    grid-template-columns: 1fr 1fr;
  }
}
.content img,
.content iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.content iframe {
  height: 100%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
@media screen and (max-width: 640px) {
  .content iframe {
    min-height: 66vw;
  }
}

.text-wrapper {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  width: calc(100% - 60px);
}
.text-wrapper .text {
  font-size: 0.8em;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .text-wrapper .text {
    max-width: calc(50% - 10px);
  }
}
.text-wrapper .text p {
  margin: 0;
}