.columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.columns__left {
	display: grid;
	gap: 1rem;
}

.none-on-mobile {
	display: block;
}

.none-on-desktop {
	display: none;
}

.columns__left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Mobile */
@media only screen and (max-width: 768px) {
	.none-on-mobile {
		display: none;
	}
	.none-on-desktop {
		display: block;
	}
	.columns {
		grid-template-columns: 1fr;
	}
}

/* Tablet (portrait) */
@media only screen and (min-width: 768px) and (max-width: 1025px) {
	.none-on-mobile {
		display: none;
	}
	.none-on-desktop {
		display: block;
	}
	.columns {
		grid-template-columns: 1fr;
	}
}
