@import "https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700,900&subset=latin-ext");
.artistas h3{
    color: #333;
    font-size: 1.5em;
    margin-bottom: 50px;
}

.listas {
    padding: 0;
}


.listas img {
    width: 100%;
    vertical-align: middle;
}

.lista-item img {
    display: block;
}

.lista-item a {
    display: flex;
    padding: 25px 50px;
    overflow: hidden;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    color: #333;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    border-radius: 6px;
    /*margin-bottom: 50px;*/
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.lista-item a:hover {
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.lista-item .icon {
    width: 20%;
    object-fit: cover;
    margin-right: 50px;
    border-radius: 20px 0;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(72, 77, 2, 0.6);
    background-image: linear-gradient(147deg, #fff 0%, #000 74%);
}
.lista-item .icon img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(147deg, #c8d41f 0%, #000 74%);
    border-radius: 20px 0;
    opacity: 0.5;
}

.lista-item .content {
    width: 70%;
}

.lista-item .content .title {
    font-size: 18px;
    /*text-transform: capitalize;*/
    color: #8d9700;
    font-weight: 600;
    font-family: "Lato", sans-serif;
}
.lista-item .content p {
    font-weight: bold;
    font-style: italic;
}
.lista-item .content p b {
    padding: 0 5px;
    color: #d83088;
}
.lista-item .content p span {
    font-size: 12px;
}

.lista-item .content .title .lista-date {
    font-size: 18px;
    margin-left: 20px;
    color: #d83088; /*#737373 */
    font-family: "Lato", sans-serif;
}

/*.lista-item .content .title .lista-date:before {
  content: "|";
  color: #c8d41f;
  font-size: 25px;
  top: auto;
  position: relative;
  margin-right: 10px;
}*/
.lista-item .content .title .lista-date::after {
    content: "|";
    color: #c8d41f;
    font-size: 25px;
    top: auto;
    position: relative;
    margin: 0 6px;
}

.lista-item .content .rounded {
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.lista-item .item-arrow {
    height: 20px;
    width: 10%;
    position: relative;
    text-align: center;
    font-size: 35px;
    left: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.lista-item a:hover > .item-arrow {
    /*padding-left: 40px;*/
    color: #d72c85;
    left: 30px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.rounded {
    width: 70px;
    height: 5px;
    border-radius: 6px;
    background-image: linear-gradient(to right, #ec81b9, #d72c85);
    /* background: #2bb769; */
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .lista-item .content {
        width: 100%;
        margin-top: 35px;
    }

    .lista-item .content .title {
        font-size: 18px;
    }

    .lista-item .item-arrow {
        margin: auto;
    }

    .lista-item .icon {
        width: 100%;
    }

    .lista-item .icon img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .lista-item {
        width: 92%;
        margin: auto;
    }

    .lista-item a {
        display: block;
        padding: 30px;
    }
}