.podcast-box {
    background: #EFE5D5;
    padding: 30px;
    margin-bottom: 15px;
    border-radius: 12px;
    display: flex;
    /* This brings the two main sections toward the center */
    justify-content: center;
    align-items: center;
    /* Adjust this to bring left and right closer or further */
    gap: 540px;
}

.podcast-content-left {
    display: flex;
    align-items: center;
    gap: 175px;
}

.podcast-image img {
    width: 110px; /* Slightly larger image */
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
}

.podcast-title {
    margin: 0;
    font-size: 26px;
    font-family: Arial, Helvetica, sans-serif; /* Matches the "Aidone" style */
    color: #191A1A;
}

.podcast-subtitle {
    margin: 2px 0;
    font-size: 18px;
    font-weight: bold;
    color: #191A1A;
}

.podcast-author {
    margin: 0;
    font-size: 14px;
    color: #191A1A;
}

/* Container for Player + Durata */
.player-inline-group {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between player and the word "durata" */
}

audio.custom-audio {
    height: 50px; /* Bigger player */
    width: 300px; /* Wider player */
    filter: sepia(100%) saturate(300%) hue-rotate(320deg) brightness(90%); /* Hack to try and force an orange-ish tint */
}

.podcast-duration {
    margin: 0;
    font-size: 13px;
    color: #191A1A;
    text-transform: uppercase;
    white-space: nowrap;
    padding-bottom: 0px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .podcast-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .podcast-content-left {
        flex-direction: column;
    }
    .player-inline-group {
        flex-direction: column;
    }
}