/*
Theme Name:     Urgence Nature
Description:    Thème pour le site Urgence Nature
Template:       twentytwentyfour
Version:        1.0
License:        GNU General Public License v2 or later
License URI:    https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:    twentytwentyfour-child
*/

/* Afficher les derniers articles de presses */
.articles-presse-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* par défaut : 1 colonne */
    gap: 40px;
    max-width: none;
}

@media screen and (min-width: 768px) {
    .articles-presse-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colonnes dès tablette */
    }

    .articles-presse-grid.two {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes dès tablette */
    }
}

.article-presse {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.article-presse .illustration {
    width: auto;
    height: 265px;
}
.article-presse img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
.article-presse .media {
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.8em;
    color: var(--wp--preset--color--contrast-3);
}
.article-presse .article-excerpt {
    font-size: 0.8em;
    color: var(--wp--preset--color--contrast-3);
}
.article-presse h3 {
    font-size: 1em;
    margin: 5px 0 0;
}
.article-presse a {
    text-decoration: none;
    color: inherit;
}

.email-copy-container {
    background-color: #e1e1e1;
    padding: 5px 10px;
    border-radius: 6px;
    font-family: monospace;
    color: var(--wp--preset--color--contrast-2);
    font-size: 0.8em;
    margin-top: 5px; 
}

.wp-block-post-featured-image :where(img) {
    object-fit: cover!important;
}


