/*Legal Results*/
#legal-items {
    margin: 5em 0;
}
.legal-item {
    margin-bottom: 30px;
}
.legal-item:last-child {
    margin-bottom: 0;
}
.legal-item a {
    display: flex;
    align-items: flex-end;
    line-height: 1;
    color: #0ad;
    font-size: 25px;
}
.legal-item a::after {
    content: "";
    border-top: 2px dashed;
    flex: 1;
    margin-left: 5px;
    opacity: 0.6;
}
.legal-item a:hover {
    color: #000;
}
/*Legal Publish*/
.term-text p {
    letter-spacing: 0;
}
.term-text img {
    vertical-align: text-top;
    position: relative;
    width: 260px;
}
/*Responsive*/
@media only screen and (max-width:1300px) {
    /*Legal Publish*/
    .term-text img {
        width: 230px;
    }
}
@media only screen and (max-width:769px) {
    /*Legal Results*/
    #legal-items {
        margin: 2em 0;
    }
    .legal-item {
        margin-bottom: 2em;
    }
    .legal-item:last-child {
        margin-bottom: 0;
    }
    .legal-item a {
        font-size: 18px;
    }
    /*Legal Publish*/
    .term-text img {
        width: 205px;
    }
}