/*
Theme Name: Newsup Child
Theme URI: https://yourwebsite.com
Description: Child theme for Newsup
Author: Your Name
Template: newsup
Version: 1.0
*/

/* Yaha aap custom CSS bhi likh sakte ho */

.post-whatsapp-share {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}


/* ===== NEWSUP FOOTER LEFT RIGHT FIX ===== */

/* Footer bottom container */
.footer-bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT : Copyright text */
.footer-bottom-area .site-info {
    color: #ffffff !important;
    font-size: 14px;
    text-align: left;
}

/* RIGHT : Footer menu */
.footer-bottom-area nav {
    margin-left: auto;
}

/* Footer menu inline */
.footer-bottom-area nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Footer links color */
.footer-bottom-area nav ul li a {
    color: #ffffff !important;
    font-size: 14px;
    text-decoration: none;
}

/* Hover */
.footer-bottom-area nav ul li a:hover {
    color: #dddddd !important;
}

/* Mobile view */
@media (max-width: 768px) {
    .footer-bottom-area {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom-area nav {
        margin-left: 0;
    }
}