.decretos {
    margin: 0;
    padding: 0;
    padding-inline: 10%;

    .anexo {
        display: flex;

        height: 60px;


        &:nth-child(even) a {
            background: #D9D9D9;
        }

        a {
            all: unset;

            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: justify;
            box-sizing: border-box;

            height: 100%;
            width: 100%;

            position: relative;
            left: 0;

            padding-inline: 70px;

            color: var(--verde-escuro);
            background: #F6F5F5;

            transition: 250ms;
            cursor: pointer;

            &::before {
                content: '';
                height: 0;
                width: 2px;

                position: absolute;
                left: 0;

                background-color: var(--verde-escuro);
                transition: 250ms;
            }

            &:hover,
            &:focus-visible,
            &:focus {
                .icone-link-externo {
                    margin-left: 10px;
                    opacity: 1;
                }
            }

            &:hover,
            &:focus-visible {
                left: 10px;
                text-decoration: none;
            }

            &:hover::before,
            &:focus-visible::before {
                content: '';
                height: 100%;
            }

            .icone-link-externo {
                width: 10px;
                opacity: 0;
                transition: 250ms;
            }
        }

        p {
            margin: 0px;
            font-size: 1.2rem;

            overflow: hidden;
            text-overflow: ellipsis;
            text-wrap-mode: nowrap;

            color: var(--verde-escuro);
        }
    }
}

@media (max-width: 425px) {
    .decretos {
        padding-inline: 30px;

        .anexo {
            a {
                padding-inline: 20px;
                
                p{
                    font-size: 1rem;
                }
                span{
                    display: none;
                }
            }
        }
    }
}