/* AW Sidebar Widgets - Frontend Styles
 * Estos son estilos base. Personaliza desde el tema del cliente.
 */

.aw-sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aw-sw-widget {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.aw-sw-widget__title {
    margin: 0;
    padding: 14px 16px 10px;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #f3f4f6;
}

.aw-sw-widget__image {
    line-height: 0;
}

.aw-sw-widget__image img {
    width: 100%;
    height: auto;
    display: block;
}

.aw-sw-widget__content {
    padding: 12px 16px;
    font-size: .9rem;
    line-height: 1.6;
    color: #374151;
}

.aw-sw-widget__content p:last-child {
    margin-bottom: 0;
}

.aw-sw-widget__footer {
    padding: 0 16px 14px;
}

.aw-sw-widget__link {
    display: inline-block;
    padding: 7px 16px;
    background: #2271b1;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    transition: background .15s;
}

.aw-sw-widget__link:hover {
    background: #135e96;
    color: #fff;
}
