.footer{
    background: var(--light-bg);
    color: var(--text-clr);
}

.footer a{
    color: var(--text-clr);
}

.footer .f-icon i{
    color: var(--primary-color);
}

.footer-subscribe-box{
    padding: 12px;
    border: 1px solid rgba(19, 59, 92, 0.16);
    border-radius: 10px;
    background: #ffffff;
}

.footer-subscribe-form{
    display: flex;
    gap: 8px;
}

.footer-subscribe-form .form-control{
    min-height: 38px;
    border: 1px solid rgba(19, 59, 92, 0.25);
}

.footer-subscribe-form .btn{
    white-space: nowrap;
}

.subscribe-modal-content{
    border: 0;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.16);
}

.subscribe-popup-form .form-control{
    min-height: 44px;
    border: 1px solid rgba(19, 59, 92, 0.25);
}

.subscribe-toast-wrap .toast{
    min-width: 280px;
}

.future-ad-slot{
    position: fixed;
    top: 40px;
    display: block;
    width: 170px;
    padding: 8px;
    border: 1px solid #d9e2ee;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
    z-index: 997;
    align-items: stretch;
}

.future-ad-hidden{
    display: none !important;
}

.future-ad-left{
    left: 5px;
}

.future-ad-right{
    right: 5px;
}

.future-ad-link,
.future-ad-popup-link{
    text-decoration: none;
    color: #1d2c3f;
    display: block;
}

.future-ad-tag{
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    color: #ffffff;
    background: #133B5C;
    border-radius: 999px;
    padding: 4px 7px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
    display: none;
}

.future-ad-slot img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e6edf7;
}

.future-ad-size{
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #61718a;
    text-align: center;
    display: none;
}

.future-ad-close{
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border: 1px solid #ccd8ea;
    border-radius: 999px;
    background: #ffffff;
    color: #4d5d76;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
}

.future-ad-popup{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1095;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.future-ad-popup.is-visible{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.future-ad-popup-card{
    width: min(340px, calc(100vw - 30px));
    background: #ffffff;
    border: 1px solid #d9e2ee;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
    padding: 10px;
    position: relative;
}

.future-ad-popup-card img{
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e6edf7;
}

.future-ad-popup-close{
    position: absolute;
    right: 6px;
    top: 6px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 575.98px){
    .footer-subscribe-form{
        flex-direction: column;
    }

    .footer-subscribe-form .btn{
        width: 100%;
    }

    .future-ad-popup{
        right: 10px;
        bottom: 10px;
    }

    .future-ad-popup-card{
        width: calc(100vw - 20px);
    }
}

@media (max-width: 1399.98px){
    .future-ad-slot{
        display: none !important;
    }
}
