/**
 * grid layout — 4 colonnes avec image, titre et intro en bas
 *
 * @author : Actupro
 * @license http://www.gnu.org/copyleft/lesser.txt GNU Lesser General Public License
*/

.act-thumb {
    min-height: 233px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.act-thumb .act_article,
.act-thumb .act_first {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    background: none;
    text-align: left;
    width: 100%;
}
.act_article h2, .act_une h2 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    margin: 0;
    background: #001c27;
    padding: 8px 10px;
}
.act_article .intro {
    display: block;
    background: #1b4080;
    color: white;
    padding: 6px 10px;
    font-size: 0.88em;
    line-height: 1.4;
}
.act_article a, .act_article h2 a {
    text-decoration: none;
    color: white;
}
.act_une {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.act_une:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    transform: translateY(-3px);
}
.act-second {
    width: 100%;
}
