/* sigle */
.jasa-podcast-single{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 90vw;
    max-width: 1920px;
}

.jasa-podcast-banner{
    width: 100%;
    height: 300px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.jasa-podcast-header{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 1em;
    gap: 1em;
}

.jasa-podcast-thumbnail{
    width: 260px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
    margin: auto;
    margin-top:-130px;
    overflow: hidden;
    flex: 0 0 260px;
}
.jasa-podcast-thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
    margin: auto;
}
.jasa-podcast-thumbnail img:hover{
    transform: scale(1.1);
}

.jasa-podcast-title{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1 1 260px;
}

.jasa-podcast-origem{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.jasa-podcast-subtitle{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.5rem;
    font-weight: 600;
    color: #383838;
    margin: 0;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

.jasa-podcast-navigation-buttons{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1em;
    gap: 1em;
    flex-wrap: wrap;
    margin-bottom: 2em;
}
.jasa-podcast-navigation-buttons .button {
    display: inline-block;
    margin: 0 0.5em;
    padding: 0.75em 1.5em;
    font-size: 1em;
    color: #fff;
    background-color: #0073aa; /* Cor azul padrão do WordPress */
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.jasa-podcast-navigation-buttons .button:hover {
    background-color: #005177; /* Azul mais escuro no hover */
}

.jasa-podcast-navigation-buttons .back-button {
    background-color: #ccc; /* Cinza para o botão de voltar */
    color: #000;
}

.jasa-podcast-navigation-buttons .back-button:hover {
    background-color: #aaa; /* Cinza mais escuro no hover */
}

@media screen and (max-width: 576px) {
    .jasa-podcast-header{
        height: auto;
    }
    .jasa-podcast-thumbnail{
        flex: 1 0 260px;
    }
    .jasa-podcast-thumbnail{
        margin: -130px 5vw auto 5vw;
    }
}