/*
CTC Separate Stylesheet
Updated: 2026-03-31 16:03:12
Theme Name: LMI | La Misión Informa Child Theme
Template: newsmunch
Author: Carolina Lallana
Author URI: https://carolinalallana.com.ar/
Version: 1.1.4.1774983792
*/

/*Custom Plugin de recent posts en footer*/
.custom-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recent-post-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.recent-post-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.recent-post-item span {
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}


/*Custom Plugin de categories as tags en footer*/
.custom-categories-widget {
    display: flex;
    flex-wrap: wrap;
}

.category-tag {
    display: inline-block;
    padding: 6px 10px;
    margin: 5px; /* 👈 clave */
    background-color: transparent;
    color: #40A534;
    font-size: 13px;
    border: 1px solid #40A534;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Hover */
.category-tag:hover {
    background-color: #40A534;
    color: #fff;
}