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

.act_article, .act_first {
    padding: 8px 10px;
    position: relative;
    background-color: transparent;
    width: 100%;
    margin-top: -140px;
    text-align: center;
}
.act_article, .act_article a, .act_article h2 a {
    color: #FFF;
}
.act_article h2 {
    background-color: rgba(0, 28, 39, 0.75);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1em;
    padding: 6px 8px;
    border-radius: 0 0 6px 6px;
    margin: 0;
}
.act_article 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%;
}
.act-thumb {
    overflow: hidden;
}
.act-thumb img {
    width: 100%;
    height: auto;
    display: block;
}
