/* Wide: text left (2/3), images stacked on right (1/3) */
.home-columns {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

.home-columns .left {
  flex: 2;
}

.home-columns .right {
  flex: 1;
}

.home-columns .right img {
  width: 100%;
  display: block;
}

/* Narrow: images side-by-side on top, then text below */
@media (max-width: 960px) {
  .home-columns {
    flex-direction: column;
  }

  .home-columns .right {
    order: -1;
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .home-columns .right p {
    flex: 1;
    margin: 0;
  }

  .home-columns .right img {
    width: 100%;
  }
}

/* hide tag/release icon from site header as it makes no sense for now */
.md-source__fact--version {
  display: none;
}
