/* -------------------------- Grid for [downloads] -------------------------- */
.dlm-downloads.dlm-grid {
    display: grid;
    list-style: none;
    gap: 1em;
    grid-template-columns: repeat(var(--dlm-grid-items, 3), 1fr);
    padding: 0;
}

.dlm-downloads.dlm-grid li {
    list-style: none;
}

@media (max-width: 992px) {
    .dlm-downloads.dlm-grid {
        --dlm-grid-items: 2 !important;
    }
}

@media (max-width: 600px) {
    .dlm-downloads.dlm-grid {
        --dlm-grid-items: 1 !important;
    }
}

/* ------------------------ End Grid for [downloads] ------------------------ */
/* --------------------------- Simple Download Box -------------------------- */
.simple-download-box {
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.15s ease-in-out;
    box-shadow: none;
}

.simple-download-box:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sdb-content {
    padding: 10px 20px;
    text-align: center;
}

.sdb-title {
    font-size: 1.5em;
    line-height: 1.15;
    font-weight: 500;
    margin: 0 0 0.5em;
}

.sdb-dwnld-btn {
    background: #18939F;
    color: #fff;
    font-size: 1.25em;
    font-weight: 500;
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0.35em 0;
    display: inline-block;
    text-align: center;
    transition: transform 0.25s ease-in-out;
}

.sdb-dwnld-btn:focus,
.sdb-dwnld-btn:hover {
    background: #0D3D62;
    color: #fff;
    text-decoration: none;
}

.sdb-dwnld-btn .dlm-xhr-progress {
    text-align: left;
    min-width: unset;
}

/* ------------------------- End Simple Download Box ------------------------ */