  .backgrounded {
    background-image: url(/theology-department/images/theo-background.jpg);
}

.three-col-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 16px;
	grid-row-gap: 0px;
}

.three-col-row .col1 { grid-area: 1 / 1 / 2 / 2; }
.three-col-row .col2 { grid-area: 1 / 2 / 2 / 3; }
.three-col-row .col3 { grid-area: 1 / 3 / 2 / 4; }

.one-two-row {
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: 1fr;
grid-column-gap: 16px;
grid-row-gap: 0px;
}

.one-two-row .col1 { grid-area: 1 / 1 / 2 / 2; }
.one-two-row .col2 { grid-area: 1 / 2 / 2 / 3; }