.agenda-vislun {
    font-family: inherit;
}

.item-agenda {
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
}

.agenda-data {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
    text-transform: lowercase;
}

.agenda-titulo {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.4;
}

.agenda-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.agenda-link {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    transition: 0.3s;
}

.agenda-link:hover {
    color: #e8bf43;
}

.agenda-seta {
    color: #444;
    margin-right: 6px;
}


/* MOBILE */
@media (max-width: 768px) {

    .agenda-meta {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    /* REMOVER A ÚLTIMA LINHA NO MOBILE */
    .agenda-vislun .item-agenda:last-child {
        border-bottom: none;
    }

}

/* VERSÃO WEB - 3 COLUNAS */
   @media (min-width: 1024px) {

    .agenda-vislun {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 40px auto;
        position: relative;
    }

    .item-agenda {
        padding: 20px 30px;
        position: relative;
        border: none !important;
    }

    /* 🔹 LINHA HORIZONTAL */
    .agenda-vislun::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 1px;
        background: #ddd;
    }

    /* 🔹 LINHAS VERTICAIS */
    .item-agenda:nth-child(3n+2)::before,
    .item-agenda:nth-child(3n+3)::before {
        content: "";
        position: absolute;
        left: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: #ddd;
    }

}
