.epaw-podcast-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    background-color: #f9f9f9; /* Default background, can be overridden via style controls */
    border-radius: 10px;
}

.epaw-left-container {
    flex: 0 0 200px; /* Fixed width, adjustable via widget controls */
    max-width: 200px;
}

.epaw-podcast-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px; /* Adjustable via widget controls */
    display: block;
}

.epaw-right-container {
    flex: 1; /* Take up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0; /* Prevent overflow */
}

.epaw-podcast-title {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    color: #333333; /* Default color, can be overridden via style controls */
}

.epaw-audio-player {
    /* Ensure audio player stays at the bottom */
    margin-top: auto; /* Adjustable via widget controls */
}

.epaw-audio-player audio {
    width: 100%; /* Default width, can be overridden via style controls */
}

@media (max-width: 768px) {
    .epaw-podcast-container {
        flex-direction: column;
        align-items: stretch;
    }

    .epaw-left-container,
    .epaw-right-container {
        max-width: 100%;
        flex: none;
    }

    .epaw-podcast-title {
        font-size: 1.2em;
    }

    .epaw-audio-player {
        margin-top: 10px;
    }

    .epaw-audio-player audio {
        width: 100%; /* Ensure audio player fits on smaller screens */
    }
}