/**
 * Custom Footer Styles
 *
 * @package Astra Child
 */

/* -----------------------------------------
   Custom Footer
----------------------------------------- */
.bs-footer {
    background-color: #002d88;
    color: #ffffff;
    font-size: 0.95rem;
}

.bs-footer a {
    color: inherit;
    text-decoration: none;
}

.bs-footer a:hover,
.bs-footer a:focus {
    color: #ffdd00;
}

.bs-footer__inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.bs-footer__top {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.bs-footer__title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.bs-footer__list,
.bs-footer__contact-list,
.bs-footer__social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bs-footer__contact-list a,
.bs-footer__list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.bs-footer__contact-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
}

.bs-footer__social-list {
    flex-direction: row;
    gap: 0.75rem;
}

.bs-footer__social-list a svg {
    width: 24px;
    height: 24px;
}

.bs-footer__middle {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: center;
}

.bs-footer__highlight {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.bs-footer__highlight-icon {
    width: 56px;
    height: 56px;
}

.bs-footer__highlight-title {
    font-weight: 600;
    margin: 0;
}

.bs-footer__highlight-text {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: #dfe3e8;
}

.bs-footer__copyright {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    color: #d1d5db;
}

.bs-footer__payments {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bs-footer__payments img {
    max-width: 100%;
    height: auto;
    display: block;
}

