/*
Theme Name:  Listeo ChildTheme
Theme URI: http://listeo.pro
Author: Purethemes
Author URI: http://themeforest.net/user/purethemes
Description: Directory WordPress Theme by Purethemes
Version: 1.0
License: ThemeForest
License URI: http://themeforest.net/licenses
Text Domain: listeo
Domain Path: /languages/
Tags: light, responsive-layout, post-formats, theme-options, translation-ready, two-columns
Template:  listeo
*/

.d-none {
    display: none !important;
}

#footer ul.menu {
    width: 100%;
}

.button-alternate {
    background-color: #f7af1c !important;
}

.info-box-professionals {
    background-color: #f7af1c !important;
    color: #f7af1c !important;
    border-top: 2px solid #f7af1c !important;
}

.ap-ultimas-preguntas {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.ap-pregunta-tarjeta {
    flex: 1 1 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ap-pregunta-tarjeta:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.15); */
}

.ap-titulo a {
    text-decoration: none;
}

.ap-fecha {
    color: #555;
    display: block;
    margin-bottom: 10px;
}

.ap-excerpt {
    margin: 10px 0;
}

.ap-categorias a {
    text-decoration: none;
    color: #80a51b;
}

.ap-categorias {
    color: #777;
}

.lf-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.lf-card {
    flex: 1 1 30%;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    background: #fff;
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
    transition: all 0.2s ease;
    text-align: center;
}

.lf-card:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.15); */
}

.lf-icon {
    background-color: rgba(122, 156, 45, 0.07);
    color: #7a9c2d;
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 38px;
    border-radius: 50%;
    margin: 10px auto;
}

.lf-title a {
    text-decoration: none;
    margin: 4px 0;
    line-height: 26px;
    font-size: 19px;
    font-weight: 500;    
}

.lf-description {
    margin-top: 10px;
    font-size: 0.9em;
    line-height: 1.8em;
    color: #777;
    text-align: left;
}

.lf-description p {
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Listas dentro de la descripción */
.lf-description ul {
    padding-left: 10px;
    margin: 10px 0;
    list-style: none; /* Quita los bullets por defecto */
}

/* Bullets personalizados */
.lf-description ul li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 18px;
}

/* Punto verde grande */
.lf-description ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #7a9c2d; /* Verde */
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px; /* Ajusta verticalmente si quieres */
}

@media (max-width: 768px) {

    .lf-card {
        flex: 1 1 100%;
    }

}