.dd-grid-wrapper.threecol-1x2x2 h3 {
    color: white;
}

.dd-grid-wrapper {
    display: grid;
	grid-gap: 4px;
	padding: 10px;
}

.dd-grid-wrapper.threecol-1x2x2 {
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
}

.dd-grid-wrapper.threecol-1x2x2 p {
	margin: 6px 0;
}

.dd-grid-wrapper.threecol-1x2x2 h3 {
	line-height: 1.1em;
}

.dd-grid-item {
	overflow: hidden;
	display: flex;
	position: relative;
	border-radius: 10px;
}
.dd-grid-wrapper .dd-grid-content {
	margin: 0 0 0 20px;
	position: absolute;
	bottom: 60px;
	height: 40px;
	color: white;
}

.dd-grid-img a.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	bottom: 0;
	transition: 0.3s;
	background-color: rgba(0, 0, 0, 0.70);
	opacity: 100%;
}
.dd-grid-img a.overlay:hover {
	opacity: 30%;
}
.dd-grid-img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.dd-grid-wrapper .dd-grid-item .dd-grid-img img {
	width: 100%;
	object-fit: cover;
	height: 100%;
	display: block;
}
.dd-grid-item:nth-child(1)  {
	grid-column: span 2;
	grid-row: span 2;
	height: 400px;
}
.dd-grid-item:nth-child(2) {
	grid-column: span 1;
	grid-row: span 1;
}
.dd-grid-item:nth-child(3) {
	grid-column: span 1;
	grid-row: span 1;
}
.dd-grid-item:nth-child(4) {
	grid-column: span 1;
	grid-row: span 1;
}

.dd-grid-item:nth-child(5) {
	grid-column: span 1;
	grid-row: span 1;
}

@media screen and (max-width: 700px) {

    .dd-grid-wrapper.threecol-1x2x2 {
	grid-template-columns: repeat(1, 1fr);
}
    
    .dd-grid-item {
    	grid-column: span 1;
    	grid-row: span 1;
    	height: 400px;
    }

	
}