.box-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.box-content img {
  width: 200px;
  height: auto;
  flex-shrink: 0;
  image-rendering: pixelated;
}

.text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.text-content h2,
.text-content p {
  margin: 0;
}

.mclink {
  color: var(--text);
}

.mclink:hover {
  color: var(--text-link);
}

@media (max-width: 600px) {
  .box-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .box-content img {
    width: 100px;
    height: 100px;
  }

  .text-content {
    width: 100%;
  }
}

