/*
 * MODULE: List - Simple list block
 * Purpose: Styles for list block component
 * WARNING: Do not override global layout here.
 */

.informe-block-list {
    margin-bottom: 40px;
}

.informe-block-list__items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.informe-block-list__item {
    padding-bottom: 12px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 12px;
}

.informe-block-list__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Estilos para post-title en bloques list */
.informe-block-list .post-title {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.informe-block-list .post-title a {
    font-family: MajritTx, serif;
    font-size: var(--fs-title-sm);     /* 1rem - 16px */
    font-weight: var(--fw-title-base); /* 600 - Estándar El País */
    line-height: var(--lh-title-sm);   /* 1.19 */
    letter-spacing: var(--ls-title-sm);/* -.005625rem */
    color: #000;
    text-decoration: none;
    display: block;
    margin-top: 6px;
}

.informe-block-list .post-title a:hover {
    color: var(--color-title-hover);  /* #444 */
    text-decoration: underline;
}

