.lzb-articulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
    width: 100%;
}

.lzb-articulo-card {
    background: #fff;
    border: 1px solid #e0e6ed; /* Borde suave azulado/gris */
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.lzb-articulo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #d0d7e0;
}

.lzb-articulo-num {
    font-size: 3rem;
    font-weight: 700;
    color: #fbb03b; /* Naranja/Amarillo fuerte similar a la imagen */
    margin-bottom: 15px;
    line-height: 1;
}

.lzb-articulo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #004e64; /* Azul oscuro petrolero */
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.lzb-articulo-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.lzb-articulo-title a:hover {
    color: #fbb03b;
}

.lzb-articulo-meta {
    width: 100%;
    margin-bottom: 25px;
    text-align: left; /* Alineación a la izquierda según imagen */
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1; /* Empuja el footer hacia abajo */
}

.lzb-meta-item {
    margin-bottom: 8px;
    line-height: 1.4;
}

.lzb-meta-label {
    font-weight: 700;
    color: #444;
}

.lzb-articulo-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.lzb-btn-ver {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background-color: #004e64; /* Azul oscuro */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px; /* Redondeado completo */
    transition: background-color 0.3s ease;
    gap: 8px;
    font-size: 0.95rem;
}

.lzb-btn-ver:hover {
    background-color: #003747;
    color: #fff;
}

.lzb-btn-ver svg {
    transition: transform 0.2s ease;
}

.lzb-btn-ver:hover svg {
    transform: translateX(3px);
}
