/*
|--------------------------------------------------------------------------
| OLISTA MÚSICA — SINGLE MUSIC
| Visual profissional da página individual
|--------------------------------------------------------------------------
*/

/* =========================================================
   BASE
========================================================= */

.single-olista_music {
    background: #f7f7f7;
}

.single-olista_music .site-content {
    padding-top: 30px;
    padding-bottom: 50px;
}

.single-olista_music .content-area {
    width: 100%;
}


/* =========================================================
   CONTAINER PRINCIPAL
========================================================= */

.olista-single-music {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 18px;
    box-sizing: border-box;
}


/* =========================================================
   CAPA
========================================================= */

.olista-single-cover {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 24px;
    text-align: center;
}

.olista-single-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 16px;
}


/* =========================================================
   TÍTULO E ARTISTA
========================================================= */

.olista-single-info {
    width: 100%;
    text-align: center;
}

.olista-single-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: .65;
}

.olista-single-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    word-break: break-word;
}

.olista-single-artist {
    margin-top: 7px;
    font-size: 17px;
    font-weight: 500;
    opacity: .68;
}


/* =========================================================
   PLAYER
========================================================= */

.olista-single-info .olista-music-player {
    width: 100%;
    margin-top: 24px;
    text-align: left;
}


/* =========================================================
   INFORMAÇÕES DA MÚSICA
========================================================= */

.olista-single-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 24px;
    text-align: left;
}

.olista-single-meta-item {
    min-width: 0;
    padding: 16px;
    background: #f8f8f8;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    box-sizing: border-box;
}

.olista-single-meta-label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: .55;
}

.olista-single-meta-item strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    word-break: break-word;
}


/* =========================================================
   SOBRE ESTA MÚSICA
========================================================= */

.olista-single-description {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid #eeeeee;
    text-align: left;
}

.olista-single-description h2 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
}

.olista-single-description-content {
    font-size: 16px;
    line-height: 1.75;
    color: #444444;
}

.olista-single-description-content p {
    margin: 0 0 15px;
}

.olista-single-description-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   VÍDEO
========================================================= */

.olista-single-youtube {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid #eeeeee;
    text-align: left;
}

.olista-single-youtube h2 {
    margin: 0 0 15px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
}


/* =========================================================
   BOTÃO VER VÍDEO NO YOUTUBE
========================================================= */

.olista-youtube-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    width: 100%;
    min-height: 56px;

    padding: 14px 20px;
    box-sizing: border-box;

    background: #111111;
    color: #ffffff !important;

    border-radius: 12px;

    text-decoration: none !important;

    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;

    transition:
        transform .2s ease,
        opacity .2s ease,
        box-shadow .2s ease;
}

.olista-youtube-button:hover {
    color: #ffffff !important;
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

.olista-youtube-button:active {
    transform: translateY(0);
}


/* =========================================================
   ÍCONE PLAY DO YOUTUBE
========================================================= */

.olista-youtube-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #ffffff;
    color: #111111;

    font-size: 12px;
    line-height: 1;
}


/* =========================================================
   FOCO / ACESSIBILIDADE
========================================================= */

.olista-youtube-button:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 3px;
}


/* =========================================================
   GENERATEPRESS — EVITAR ESPAÇOS EXTRAS
========================================================= */

.single-olista_music .entry-content {
    margin-top: 0;
}

.single-olista_music .entry-content > *:first-child {
    margin-top: 0;
}

.single-olista_music .entry-content > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .single-olista_music .site-content {
        padding-top: 20px;
        padding-bottom: 35px;
    }

    .olista-single-music {
        max-width: 100%;
        padding: 20px;
        border-radius: 14px;
    }

    .olista-single-cover {
        max-width: 430px;
        margin-bottom: 20px;
    }

    .olista-single-title {
        font-size: 27px;
    }

    .olista-single-artist {
        font-size: 16px;
    }

    .olista-single-meta {
        gap: 10px;
        margin-top: 20px;
    }

    .olista-single-meta-item {
        padding: 14px;
    }

    .olista-single-description {
        margin-top: 25px;
        padding-top: 22px;
    }

    .olista-single-youtube {
        margin-top: 25px;
        padding-top: 22px;
    }
}


/* =========================================================
   TELEMÓVEL
========================================================= */

@media (max-width: 520px) {

    .single-olista_music {
        background: #ffffff;
    }

    .single-olista_music .site-content {
        padding: 0;
    }

    .olista-single-music {
        padding: 16px;
        border-radius: 0;
    }

    .olista-single-cover {
        max-width: 100%;
        margin-bottom: 18px;
    }

    .olista-single-cover img {
        border-radius: 12px;
    }

    .olista-single-label {
        margin-bottom: 6px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .olista-single-title {
        font-size: 24px;
        line-height: 1.25;
    }

    .olista-single-artist {
        margin-top: 5px;
        font-size: 15px;
    }

    .olista-single-info .olista-music-player {
        margin-top: 18px;
    }

    .olista-single-meta {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 18px;
    }

    .olista-single-meta-item {
        padding: 12px;
        border-radius: 10px;
    }

    .olista-single-meta-label {
        margin-bottom: 4px;
        font-size: 10px;
    }

    .olista-single-meta-item strong {
        font-size: 14px;
    }

    .olista-single-description {
        margin-top: 22px;
        padding-top: 20px;
    }

    .olista-single-description h2 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .olista-single-description-content {
        font-size: 15px;
        line-height: 1.65;
    }

    .olista-single-youtube {
        margin-top: 22px;
        padding-top: 20px;
    }

    .olista-single-youtube h2 {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .olista-youtube-button {
        min-height: 52px;
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 14px;
    }

    .olista-youtube-play {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}
/* =========================================================
   OLISTA MÚSICA — CARDS DE MÚSICAS RELACIONADAS
========================================================= */

.olista-related-music {
    width: 100%;
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
}

.olista-related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.olista-related-label {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: .5;
}

.olista-related-heading h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

.olista-related-see-all {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
}


/* =========================================================
   LISTA
========================================================= */

.olista-related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =========================================================
   CARD
========================================================= */

.olista-related-list .olista-music-player {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 86px;

    margin: 0;
    padding: 10px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 15px;

    overflow: hidden;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.olista-related-list .olista-music-player:hover {
    transform: translateY(-2px);

    border-color: #dddddd;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, .08);
}


/* =========================================================
   CAPA — ESQUERDA
========================================================= */

.olista-related-list .olista-player-cover {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 66px;

    width: 66px;
    height: 66px;

    margin: 0;

    overflow: hidden;

    border-radius: 11px;

    background: #eeeeee;

    text-decoration: none;
}

.olista-related-list .olista-player-cover img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.olista-related-list .olista-player-no-cover {
    font-size: 25px;
}


/* =========================================================
   INFORMAÇÕES — CENTRO
========================================================= */

.olista-related-list .olista-player-info {
    flex: 1 1 auto;

    min-width: 0;

    margin-left: 13px;
    margin-right: 10px;
}

.olista-related-list .olista-player-title {
    display: block;

    margin: 0;

    overflow: hidden;

    font-size: 15px;
    line-height: 1.35;
    font-weight: 750;

    white-space: nowrap;
    text-overflow: ellipsis;

    text-decoration: none !important;
}

.olista-related-list .olista-player-artist {
    display: block;

    margin-top: 4px;

    overflow: hidden;

    font-size: 13px;
    line-height: 1.3;

    opacity: .58;

    white-space: nowrap;
    text-overflow: ellipsis;

    text-decoration: none !important;
}


/* =========================================================
   CONTROLES — DIREITA
========================================================= */

.olista-related-list .olista-player-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex: 0 0 auto;

    gap: 7px;
}


/* =========================================================
   PLAY
========================================================= */

.olista-related-list .olista-player-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #111111;
    color: #ffffff;

    font-size: 13px;
    line-height: 1;

    cursor: pointer;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.olista-related-list .olista-player-play:hover {
    transform: scale(1.06);
    opacity: .88;
}


/* =========================================================
   DOWNLOAD
========================================================= */

.olista-related-list .olista-player-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    padding: 0;

    border-radius: 50%;

    background: #f2f2f2;

    text-decoration: none !important;

    transition:
        transform .2s ease,
        background .2s ease;
}

.olista-related-list .olista-player-download:hover {
    transform: scale(1.06);
    background: #e8e8e8;
}

.olista-related-list .olista-download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.olista-related-list .olista-download-icon svg {
    display: block;

    width: 20px;
    height: 20px;
}


/* =========================================================
   DURAÇÃO
========================================================= */

.olista-related-list .olista-player-duration {
    min-width: 42px;

    font-size: 12px;
    font-weight: 600;

    text-align: right;

    opacity: .55;
    white-space: nowrap;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .olista-related-music {
        margin-top: 34px;
        padding-top: 25px;
    }

    .olista-related-heading {
        align-items: center;
        margin-bottom: 16px;
    }

    .olista-related-heading h2 {
        font-size: 21px;
    }

    .olista-related-see-all {
        font-size: 13px;
    }

    .olista-related-list {
        gap: 9px;
    }

    .olista-related-list .olista-music-player {
        min-height: 76px;
        padding: 8px;
        border-radius: 13px;
    }

    .olista-related-list .olista-player-cover {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
        border-radius: 9px;
    }

    .olista-related-list .olista-player-info {
        margin-left: 10px;
        margin-right: 5px;
    }

    .olista-related-list .olista-player-title {
        font-size: 14px;
    }

    .olista-related-list .olista-player-artist {
        font-size: 12px;
    }

    .olista-related-list .olista-player-controls {
        gap: 5px;
    }

    .olista-related-list .olista-player-play,
    .olista-related-list .olista-player-download {
        width: 34px;
        height: 34px;
    }

    .olista-related-list .olista-player-play {
        font-size: 11px;
    }

    .olista-related-list .olista-download-icon svg {
        width: 18px;
        height: 18px;
    }

    .olista-related-list .olista-player-duration {
        display: none;
    }
}


/* =========================================================
   MOBILE MUITO PEQUENO
========================================================= */

@media (max-width: 380px) {

    .olista-related-list .olista-player-cover {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
    }

    .olista-related-list .olista-player-info {
        margin-left: 8px;
    }

    .olista-related-list .olista-player-title {
        font-size: 13px;
    }

    .olista-related-list .olista-player-artist {
        font-size: 11px;
    }

    .olista-related-list .olista-player-play,
    .olista-related-list .olista-player-download {
        width: 31px;
        height: 31px;
    }

    .olista-related-list .olista-download-icon svg {
        width: 16px;
        height: 16px;
    }
}
/* =========================================================
   OLISTA MÚSICA — MÚSICAS RELACIONADAS PREMIUM
========================================================= */

.olista-related-music {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #e9e9e9;
}

.olista-related-heading {
    margin-bottom: 18px;
}

.olista-related-heading h2 {
    margin: 0;

    font-size: 23px;
    line-height: 1.3;
    font-weight: 800;

    color: #111111;
}


/* =========================================================
   LISTA
========================================================= */

.olista-related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* =========================================================
   CARD
========================================================= */

.olista-related-list .olista-music-player {
    display: flex;
    align-items: center;

    min-height: 82px;

    padding: 9px 11px;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 14px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, .035);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.olista-related-list .olista-music-player:hover {
    transform: translateY(-2px);

    border-color: #dedede;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, .08);
}


/* =========================================================
   CARD EM REPRODUÇÃO
========================================================= */

.olista-related-list .olista-music-player.is-playing {
    border-color: #111111;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .10);
}

.olista-related-list .olista-music-player.is-playing
.olista-player-title {
    font-weight: 800;
}


/* =========================================================
   CAPA
========================================================= */

.olista-related-list .olista-player-cover {
    position: relative;

    flex: 0 0 64px;

    width: 64px;
    height: 64px;

    overflow: hidden;

    border-radius: 10px;

    background: #eeeeee;
}

.olista-related-list .olista-player-cover img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}

.olista-related-list .olista-music-player:hover
.olista-player-cover img {
    transform: scale(1.05);
}


/* =========================================================
   INFORMAÇÕES
========================================================= */

.olista-related-list .olista-player-info {
    flex: 1;

    min-width: 0;

    margin-left: 13px;
    margin-right: 10px;
}

.olista-related-list .olista-player-title {
    display: block;

    overflow: hidden;

    color: #111111;

    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;

    white-space: nowrap;
    text-overflow: ellipsis;

    text-decoration: none !important;
}

.olista-related-list .olista-player-artist {
    display: block;

    margin-top: 4px;

    overflow: hidden;

    color: #111111;

    font-size: 12px;
    line-height: 1.3;

    opacity: .55;

    white-space: nowrap;
    text-overflow: ellipsis;

    text-decoration: none !important;
}


/* =========================================================
   CONTROLES
========================================================= */

.olista-related-list .olista-player-controls {
    display: flex;
    align-items: center;

    gap: 7px;

    flex-shrink: 0;
}


/* =========================================================
   PLAY
========================================================= */

.olista-related-list .olista-player-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #111111;
    color: #ffffff;

    font-size: 12px;

    cursor: pointer;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.olista-related-list .olista-player-play:hover {
    transform: scale(1.07);

    opacity: .88;
}


/* =========================================================
   DOWNLOAD
========================================================= */

.olista-related-list .olista-player-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    padding: 0;

    border-radius: 50%;

    background: #f1f1f1;

    text-decoration: none !important;

    transition:
        transform .2s ease,
        background .2s ease;
}

.olista-related-list .olista-player-download:hover {
    transform: scale(1.07);

    background: #e5e5e5;
}


/* =========================================================
   ÍCONE DOWNLOAD
========================================================= */

.olista-related-list .olista-download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.olista-related-list .olista-download-icon svg {
    display: block;

    width: 19px;
    height: 19px;
}


/* =========================================================
   DURAÇÃO
========================================================= */

.olista-related-list .olista-player-duration {
    min-width: 40px;

    font-size: 11px;
    font-weight: 600;

    text-align: right;

    opacity: .5;

    white-space: nowrap;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .olista-related-music {
        margin-top: 35px;
        padding-top: 25px;
    }

    .olista-related-heading h2 {
        font-size: 21px;
    }

    .olista-related-list {
        gap: 8px;
    }

    .olista-related-list .olista-music-player {
        min-height: 72px;

        padding: 8px;

        border-radius: 12px;
    }

    .olista-related-list .olista-player-cover {
        flex-basis: 55px;

        width: 55px;
        height: 55px;

        border-radius: 9px;
    }

    .olista-related-list .olista-player-info {
        margin-left: 10px;
        margin-right: 5px;
    }

    .olista-related-list .olista-player-title {
        font-size: 13px;
    }

    .olista-related-list .olista-player-artist {
        font-size: 11px;
    }

    .olista-related-list .olista-player-controls {
        gap: 5px;
    }

    .olista-related-list .olista-player-play,
    .olista-related-list .olista-player-download {
        width: 34px;
        height: 34px;
    }

    .olista-related-list .olista-player-duration {
        display: none;
    }

    .olista-related-list .olista-download-icon svg {
        width: 17px;
        height: 17px;
    }
}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 380px) {

    .olista-related-list .olista-player-cover {
        flex-basis: 50px;

        width: 50px;
        height: 50px;
    }

    .olista-related-list .olista-player-info {
        margin-left: 8px;
    }

    .olista-related-list .olista-player-title {
        font-size: 12px;
    }

    .olista-related-list .olista-player-artist {
        font-size: 10px;
    }

    .olista-related-list .olista-player-play,
    .olista-related-list .olista-player-download {
        width: 31px;
        height: 31px;
    }

    .olista-related-list .olista-download-icon svg {
        width: 16px;
        height: 16px;
    }
}