* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
  gap: 2rem;
}

.full-img {
  width: 100%;
}

.grid-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
  }
}
