/* Newspaper Footer Widget */
.newspaper-footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.newspaper-footer .footer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.newspaper-footer .footer-logo img {
    max-height: 60px;
    width: auto;
    margin-right: 20px;
}

.newspaper-footer .footer-info {
    text-align: center;
}

.newspaper-footer .footer-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newspaper-footer .footer-subtitle {
    font-size: 14px;
    color: #999999;
    margin: 0;
    line-height: 1.4;
}

.newspaper-footer .footer-nav {
    text-align: center;
    margin-bottom: 30px;
}

.newspaper-footer .footer-nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.newspaper-footer .footer-nav-item {
    margin: 0;
}

.newspaper-footer .footer-nav-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.newspaper-footer .footer-nav-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.newspaper-footer .footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.newspaper-footer .app-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.newspaper-footer .app-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #1a1a1a;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
}

.newspaper-footer .app-link:hover {
    background: #f8f8f8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.newspaper-footer .app-icon {
    font-size: 16px;
}

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

.newspaper-footer .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.newspaper-footer .social-link {
    color: #cccccc;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.newspaper-footer .social-link:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newspaper-footer {
        padding: 30px 15px 15px;
    }

    .newspaper-footer .footer-main {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .newspaper-footer .footer-logo img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .newspaper-footer .footer-nav-list {
        gap: 20px;
    }

    .newspaper-footer .footer-nav-link {
        font-size: 13px;
    }

    .newspaper-footer .footer-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .newspaper-footer .footer-nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .newspaper-footer .footer-nav-link {
        font-size: 12px;
    }

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

    .newspaper-footer .app-link {
        justify-content: center;
        font-size: 11px;
        padding: 6px 10px;
    }

    .newspaper-footer .social-links {
        gap: 20px;
    }
}