/**
 *  Images trio - Paragraph
 */

.image-trio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-trio__full img,
.image-trio__half img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.image-trio__half-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-trio__half {
  flex: 1;
}

@media (min-width: 560px) {
  .image-trio__half-wrapper {
    flex-direction: row;
  }
}

