/**
 * Avawa Core Widgets
 * Styles for custom widgets
 */

/* Common Widget Styles */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ff5c00;
}


/* Responsive Styles */
@media (max-width: 767px) {
    .widget {
        margin-bottom: 30px;
    }
    
    .widget-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .about-logo img {
        max-width: 150px;
    }
    
    .social-media-widget .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}
