body {
    margin: 0;
    font-family: Aptos Light, sans-serif;
    color: #222;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
	align-items: stretch;
}

@media (max-width: 1200) {
    .container {
        grid-template-columns: 1fr; /* stack left and right */
    }
}

.left-side {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: stretch;
}

.left-side .text {
	color: #7d7d7d;
	padding-left: 3rem;
	display: flex;
    flex-direction: column;
    justify-content: left;
}

.left-side .image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps proportions, fills space */
}

.right-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
	height: 100%;
}

/* Make first tile full width */
.right-side .tile:first-child {
    grid-column: 1 / -1;
}

@media (max-width: 1200) {
    .right-side {
        grid-template-columns: 1fr; /* stack vertically */
    }
}

.tile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 2rem;
}

.tile span {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 2rem;
}

.tile--blue { background: #1a3d7c; }
.tile--lightblue { background: #48a9c5}
.tile--gray { background: #f5f5f5; color: #1a3d7c; }
.tile--red { background: #c0392b; }

