/* Footer Styling */
.group-53.footer-section { 
    width: 100%;
    background-color: var(--common-footer-bg);
    padding: 20px 40px; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    color: var(--common-text-color-light); /* Assuming text in footer is light on dark bg */
}

.awawlogo-79-2231.footer-logo { 
    width: 88px; /* Or maintain aspect ratio */
    height: 56px;
    margin-bottom: 10px;
}

.text-79-2232, 
.text-79-2227 { 
    font-family: var(--pc-font-11-747-family);
    font-size: var(--pc-font-11-747-size); 
    font-weight: var(--pc-font-11-747-style);
    color: var(--pc-paint-11-735); /* gray text */
    margin: 5px 0;
}

.text-79-2232 { /* Copyright text */
    /* any specific styles */
}

.text-79-2227 { /* Links text */
    /* any specific styles, e.g., for links if they become actual <a> tags */
    text-decoration: none;
}

/* Media Queries for Footer */
@media (max-width: 768px) {
    .group-53.footer-section { /* Mobile Footer */
        padding: 20px;
    }

    .awawlogo-79-2231.footer-logo { /* Mobile Footer Logo */
        /* Adjust size if needed */
        /* width: 70px; */
        /* height: 44px; */
    }

    .text-79-2232, 
    .text-79-2227 { /* Mobile Footer Text */
        font-size: calc(var(--pc-font-11-747-size) * 0.9); /* Slightly smaller text */
    }
}

@media (max-width: 480px) {
    .text-79-2232, 
    .text-79-2227 { 
        font-size: calc(var(--pc-font-11-747-size) * 0.85); /* Even smaller text */
    }
} 