/* SmarterBettor Footer Styles */

footer {
    width: 100%;
    clear: both;
}

.smarterb-footer {
    background-color: hsl(210 25% 20%);
    color: #ffffff;
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid hsl(210 15% 25%);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    padding: 60px 0 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Branding Section */
.footer-branding {
    max-width: 300px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    max-width: 620px;
    width: 100%;
}

.brand-logo img {
    width: auto;
    height: 32px;
}

.brand-description {
    font-size: 16px;
    color: #b3b3b3;
    line-height: 1.5;
    margin: 0;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px !important;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #404040;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #b3b3b3;
    font-size: 14px;
    margin: 0;
}

.disclaimer-badge {
    background-color: hsl(0deg 75% 60% / 20%);
    color: hsl(0 75% 60%);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-branding {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-branding {
        grid-column: 1;
        text-align: center;
    }
    
    .brand-logo {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-main {
        padding: 30px 0 20px 0;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .brand-description {
        font-size: 14px;
    }
    
    .column-title {
        font-size: 15px;
    }
    
    .footer-column a {
        font-size: 14px;
    }
}


