.mr-customfooter {
    display: grid;
    grid-template-columns: repeat(var(--mr-cols, 5), minmax(0, 1fr));
    gap: 24px;
    padding: 24px 10px;
}

@media (max-width: 991px) {
    .mr-customfooter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .mr-customfooter {
        grid-template-columns: 1fr;
    }
}

.mr-customfooter__col {
    min-width: 0;
}

.mr-customfooter__title {
    color: #bf1c2f;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mr-customfooter__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mr-customfooter__item {
    margin-bottom: 6px;
}

.mr-customfooter__link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s ease-in-out;
}

.mr-customfooter__link:hover,
.mr-customfooter__link:focus {
    opacity: 0.75;
    text-decoration: underline;
}
