@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
/*  FOOTER BASE  */
.ad-astra-footer {
    background-color: #700D17;
    color: #F5EFE6;
    padding: 50px 20px 40px 20px;
    font-family: 'Poppins', sans-serif;
}
/*  GRID LAYOUT  */
.ad-astra-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
/*  COLUMNS  */
.ad-astra-footer .footer-col-left {
    text-align: left;
}
.ad-astra-footer .footer-col-center {
    text-align: center;
}
.ad-astra-footer .footer-col-right {
    text-align: right;
}
/*  TEXT  */
.ad-astra-footer p,
.ad-astra-footer strong,
.ad-astra-footer b {
    color: #E8F4F3;
    margin: 0;
}
.ad-astra-footer .footer-text {
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}
.ad-astra-footer .footer-text strong,
.ad-astra-footer .footer-text b {
    font-weight: 600;
}
.ad-astra-footer .copyright-line {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin-top: 12px;
}
/* LINK  */
.ad-astra-footer a {
    text-decoration: none;
    color: inherit;
}
.ad-astra-footer .logo-link {
    display: inline-block;
}
/* IMAGES  */
.ad-astra-footer .footer-logo {
    width: 90px;
    height: auto;
}
.ad-astra-footer .footer-icon {
    width: 15px;
    margin-left: 5px;
    vertical-align: baseline;
}
.ad-astra-footer .footer-icon:hover {
    opacity: 0.7;
}
/*  RESPONSIVE  */
@media (max-width: 991px) {
    .ad-astra-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ad-astra-footer .footer-col-left,
    .ad-astra-footer .footer-col-right {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ad-astra-footer {
        padding: 35px 15px 25px 15px;
    }
    .ad-astra-footer .footer-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    .ad-astra-footer .footer-logo {
        width: 70px;
    }
    .ad-astra-footer .footer-icon {
        width: 13px;
    }
}