.initiatives-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -2em;
	margin-right: -2em;
}
.initiatives-list .initiative {
    flex: 0 0 30%;
    text-align: center;
    padding: 1em;
    background-color: var(--theme-white, #fff);
    margin: 1em;
    border: 2px solid var(--theme-border, #ccc);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-width: 280px;
	transition: all 0.25s ease;
}
.initiatives-list .initiative img {
	width: auto;
    max-width: 100%;
    object-fit: contain;
	transition: all 0.25s ease;
}
.initiatives-list .initiative:hover {
    background: hsl(207, 28%, 92%);
}
.initiatives-list .initiative:hover img {
    transform: scale(1.05);
}
