﻿.sf-home-footer {
    display: inline !important;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 1rem;
    gap: 1rem;
}

    .container div {
        padding: 0 1rem;
    }

    .container p {
        margin: 1rem 0;
        text-align: start;
    }

    .container h3 {
        font-size: clamp(2rem, 4vw, 2.75rem);
    }

    .container h2 {
        font-size: clamp(2.5rem, 5vw, 3rem);
    }

    .container a {
        color: var(--clr-footer-link-text);
        line-height: 2rem;
    }

    .container ul {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        list-style: none; 
        display: grid;
        gap: 1rem;
        padding: 0 1rem;
        text-align: start;
    }

.credit-card-section-wrapper {
    position: unset;
    justify-self: center;
    align-self: center;
    margin: unset;
    height:120px;
    box-shadow: unset !important;
}

.credit-card-logos {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer-info-warapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

    .footer-info-warapper > img {
        width: 20px;
        height: 20px;
    }

.container a:hover {
    text-decoration: underline;
    color: var(--sf-gold);
    font-weight: bold;
}

@media (min-width: 768px) {
    .container ul {
        align-items: flex-end;
    }
}
