/*
Plugin: Ultimi Aggiornamenti Home
Stile frontend
*/


.uah-wrapper {
    width: 100%;
}


.uah-title {
    display: block;
    width: 100%;
    margin: 0 0 20px;
    padding: 10px 15px;
    background: #008b8b;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: inherit;
    text-transform: none;
    line-height: 1.3;
    border-left: 5px solid #006b6b;
    box-sizing: border-box;
}

.uah-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}



.uah-card {

    background: #ffffff;

    border: 1px solid #e7e7e7;

    border-radius: 14px;

    padding: 22px;

    transition: all .25s ease;

}



.uah-card:hover {

    transform: translateY(-3px);

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

}



.uah-card-title {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    font-size: 18px;

    font-weight: 700;

}



.uah-card-title a {

    color: #222;

    text-decoration: none;

}



.uah-card-title a:hover {

    color: #0066cc;

}



.uah-icon {

    font-size: 20px;

}




.uah-badge {

    display: inline-block;

    padding: 4px 10px;

    color: #fff;

    font-size: 11px;

    line-height: 1;

    font-weight: 700;

    border-radius: 20px;

    letter-spacing: .5px;

}



.uah-date {

    margin-top: 10px;

    font-size: 14px;

    color: #777;

}



.uah-excerpt {

    margin-top: 14px;

    font-size: 15px;

    line-height: 1.6;

    color: #444;

}



.uah-link {

    display: inline-block;

    margin-top: 15px;

    font-weight: 600;

    color: #0066cc;

    text-decoration: none;

}



.uah-link:hover {

    text-decoration: underline;

}



.uah-empty {

    padding: 20px;

    background: #f7f7f7;

    border-radius: 10px;

    color: #666;

}



/* Smartphone */

@media(max-width:768px) {


    .uah-card {

        padding: 16px;

    }


    .uah-title {

        font-size: 22px;

    }


    .uah-card-title {

        font-size: 16px;

    }


}