.acp-podcast-container {
    direction: rtl;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.acp-podcast-container * {
    box-sizing: border-box;
}
.acp-podcast-card {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border: 1px solid #E7BDB8;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    align-items: center;
    width: 100%;
}
.acp-podcast-media-side {
    flex-shrink: 0;
    margin-left: 16px;
}
.acp-podcast-img {
    width: 130px;
    height: 130px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}
.acp-podcast-content-side {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.acp-podcast-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #8a8a8a;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.acp-category {
    background: #9600090f;
    color: #960009;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}
.acp-duration-label {
    font-weight: 600;
    color: #5D3F3C;
}
.acp-podcast-title {
    font-size: 18px;
    color: #111111;
    margin: 0 0 6px 0;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.acp-podcast-excerpt {
    font-size: 13px;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.acp-player-wrapper {
    width: 100%;
}
.acp-audio-element {
    display: none;
}
.acp-player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f9f9;
    padding: 8px 12px;
    border-radius: 10px;
    width: 100%;
}
.acp-play-btn {
    background: #960009;
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    padding: 0;
}
.acp-play-btn:hover {
    background: #222222;
}
.acp-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}
.acp-progress-container {
    flex-grow: 1;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    touch-action: none;
}
.acp-progress-bar {
    height: 100%;
    background: #000000;
    border-radius: 3px;
    width: 0%;
    pointer-events: none;
}
.acp-player-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.acp-skip-btn, .acp-speed-btn {
    background: transparent;
    border: none;
    color: #444444;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}
.acp-skip-btn:hover, .acp-speed-btn:hover {
    background: #eeeeee;
}
.acp-speed-btn {
    gap: 2px;
    font-size: 11px;
    font-weight: 600;
}
.acp-download-link {
    color: #444444;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 4px;
}
.acp-download-link:hover {
    background: #eeeeee;
}
.acp-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.acp-page-btn {
    border: 1px solid #dddddd;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
      width: 40px;
    height: 40px;
    background: transparent !important;
    border: 1px solid #e7bdb8 !important;
    color: #5D3F3C !important;
}
.acp-page-btn.active, .acp-page-btn:hover {
    background: #960009;
    color: #ffffff;
    border-color: #000000;
    border: unset !important;
}
@media (max-width: 600px) {
    .acp-podcast-card {
        padding: 10px;
    }
    .acp-podcast-media-side {
        margin-left: 10px;
    }
    .acp-podcast-img {
        width: 90px;
        height: 90px;
    }
    .acp-podcast-title {
        font-size: 15px;
    }
    .acp-podcast-excerpt {
        font-size: 12px;
        margin-bottom: 8px;
        -webkit-line-clamp: 1;
    }
    .acp-player-controls {
        gap: 8px;
        padding: 6px 8px;
    }
    .acp-play-btn {
        width: 30px;
        height: 30px;
    }
    .acp-icon {
        width: 14px;
        height: 14px;
    }
    .acp-speed-btn {
        font-size: 10px;
    }
    .acp-player-actions {
        gap: 4px;
    }
}