/* =====================================
   NEWSPAPER ROBUST FOOTER WIDGET STYLES
   =====================================
*/

.newspaper-robust-footer {
    background-color: #1a1a1a; /* Default from control */
    color: #cccccc; /* Default from control */
    padding: 40px 20px 20px 20px; /* Default from control */
    font-family: Arial, sans-serif; /* Example font */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.newspaper-robust-footer .footer-top-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px; /* Max width for content */
    margin-bottom: 30px;
}

.newspaper-robust-footer .footer-branding {
    flex: 1;
    min-width: 250px;
    margin: 15px;
    text-align: left;
}

.newspaper-robust-footer .footer-logo img {
    max-height: 50px; /* Default from control */
    margin-bottom: 10px;
}

.newspaper-robust-footer .footer-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.newspaper-robust-footer .footer-subtitle {
    font-size: 14px;
    color: #aaaaaa;
    margin: 0 0 15px 0;
}

.newspaper-robust-footer .footer-nav {
    flex: 1;
    min-width: 150px;
    margin: 15px;
    text-align: left;
}

.newspaper-robust-footer .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newspaper-robust-footer .footer-nav-item {
    margin-bottom: 8px;
}

.newspaper-robust-footer .footer-nav-link {
    color: #ffffff; /* Default from control */
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.newspaper-robust-footer .footer-nav-link:hover {
    color: #cccccc; /* Default from control */
}

.newspaper-robust-footer .footer-social-apps {
    flex: 1;
    min-width: 200px;
    margin: 15px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.newspaper-robust-footer .social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.newspaper-robust-footer .social-link {
    color: #ffffff; /* Default from control */
    font-size: 20px; /* Default from control */
    text-decoration: none;
    transition: color 0.2s ease;
}

.newspaper-robust-footer .social-link:hover {
    color: #cccccc; /* Default from control */
}

.newspaper-robust-footer .app-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newspaper-robust-footer .app-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #333333; /* Default from control */
    color: #ffffff; /* Default from control */
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.newspaper-robust-footer .app-link:hover {
    background-color: #555555; /* Default from control */
}

.newspaper-robust-footer .app-link i {
    font-size: 18px;
}

.newspaper-robust-footer .footer-bottom-section {
    width: 100%;
    max-width: 1200px;
    border-top: 1px solid #333333;
    padding-top: 20px;
    margin-top: 20px;
}

.newspaper-robust-footer .copyright {
    font-size: 13px;
    color: #999999;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newspaper-robust-footer .footer-top-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .newspaper-robust-footer .footer-branding,
    .newspaper-robust-footer .footer-nav,
    .newspaper-robust-footer .footer-social-apps {
        text-align: center;
        align-items: center;
        min-width: unset;
        width: 100%;
        margin: 10px 0;
    }

    .newspaper-robust-footer .footer-social-apps {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .newspaper-robust-footer .footer-title {
        font-size: 20px;
    }
    .newspaper-robust-footer .footer-subtitle {
        font-size: 12px;
    }
    .newspaper-robust-footer .app-links {
        flex-direction: column;
    }
}
