.formulate-modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    row-gap: 30px;
}

.formulate-module-item {
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
}

.formulate-module-item .item-media {
    display: block;
}

.formulate-module-item .item-media img {
    width: 100%;
    height: auto;
    display: block;
}

.formulate-module-item .item-content {
    padding: 15px;
}

.formulate-module-item .item-title {
    font-size: 1.35em;
    font-weight: bold;
    color: #0d3f75;
}

.formulate-module-item a.item-download-link {
    color: #0d3f75;
    font-weight: bold;
    text-transform: uppercase;
}
.formulate-module-item a.item-download-link:hover,
.formulate-module-item a.item-download-link:focus {
    opacity: 0.85;
}