/* استایل‌های صفحات پادکست */
.podcast-player {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.podcast-player .podcast-thumbnail {
    margin-bottom: 15px;
    text-align: center;
}

.podcast-player .podcast-thumbnail img {
    max-width: 300px;
    height: auto;
    border-radius: 4px;
}

.podcast-player .podcast-title {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.podcast-player .audio-player audio {
    border-radius: 4px;
}

.podcast-player .podcast-meta {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

/* صفحه آرشیو پادکست‌ها */
.archive-podcast .podcast-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.archive-podcast .podcast-thumbnail {
    flex: 0 0 200px;
    margin-right: 20px;
}

.archive-podcast .podcast-content {
    flex: 1;
}

.archive-podcast .podcast-title {
    margin-top: 0;
    margin-bottom: 10px;
}

.archive-podcast .podcast-excerpt {
    margin-bottom: 15px;
}

.archive-podcast .podcast-meta {
    color: #666;
    font-size: 14px;
}

.archive-podcast .podcast-meta span {
    margin-left: 15px;
}

.archive-podcast .podcast-meta span:first-child {
    margin-left: 0;
}

/* پخش کننده سفارشی */
.custom-audio-player {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.custom-audio-player .player-controls {
    display: flex;
    align-items: center;
    padding: 15px;
}

.custom-audio-player .play-btn {
    background: #0073aa;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    margin-right: 15px;
}

.custom-audio-player .progress-bar {
    flex: 1;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.custom-audio-player .progress {
    position: absolute;
    height: 100%;
    background: #0073aa;
    border-radius: 2px;
}

.custom-audio-player .time-display {
    margin-left: 15px;
    font-size: 14px;
    color: #666;
}

/* ویجت پادکست */
.widget_podcast_recent ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_podcast_recent li {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.widget_podcast_recent li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget_podcast_recent .widget-thumbnail {
    flex: 0 0 60px;
    margin-right: 10px;
}

.widget_podcast_recent .widget-thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.widget_podcast_recent .widget-content {
    flex: 1;
}

.widget_podcast_recent .widget-title {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.widget_podcast_recent .widget-meta {
    font-size: 12px;
    color: #999;
}

/* صفحه تک پادکست */
.single-podcast .entry-header {
    margin-bottom: 30px;
}

.single-podcast .podcast-featured-image {
    margin-bottom: 20px;
}

.single-podcast .podcast-meta {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.single-podcast .meta-row {
    display: flex;
    margin-bottom: 8px;
}

.single-podcast .meta-label {
    flex: 0 0 120px;
    font-weight: bold;
    color: #333;
}

.single-podcast .meta-value {
    flex: 1;
    color: #666;
}

/* واکنش‌گرا */
@media (max-width: 768px) {
    .archive-podcast .podcast-item {
        flex-direction: column;
    }
    
    .archive-podcast .podcast-thumbnail {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .custom-audio-player .player-controls {
        flex-wrap: wrap;
    }
    
    .custom-audio-player .time-display {
        margin-top: 10px;
        width: 100%;
    }
}
/* استایل‌های صفحه پادکست */
.single-podcast-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.podcast-header {
    margin-bottom: 30px;
    text-align: center;
}

.podcast-featured-image {
    margin-bottom: 20px;
}

.podcast-featured-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.podcast-title-section {
    padding: 20px 0;
}

.podcast-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.podcast-meta-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.season-badge,
.episode-badge,
.duration-badge,
.publish-date {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.season-badge {
    background: #0073aa;
    color: white;
}

.episode-badge {
    background: #28a745;
    color: white;
}

.duration-badge {
    background: #17a2b8;
    color: white;
}

.section-title {
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-title h3 {
    font-size: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.podcast-player-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    color: white;
}

.podcast-player-section .section-title h3 {
    color: white;
}

.audio-player-wrapper {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

audio {
    border-radius: 5px;
}

audio::-webkit-media-controls-panel {
    background-color: rgba(255,255,255,0.9);
}

.player-actions {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn {
    background: white;
    color: #0073aa;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #0073aa;
    color: white;
    transform: translateY(-2px);
}

.file-size {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.podcast-description {
    margin: 30px 0;
}

.description-content {
    line-height: 1.8;
    font-size: 16px;
    color: #444;
}

.description-content p {
    margin-bottom: 15px;
}

.podcast-taxonomies {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.taxonomy-section {
    margin-bottom: 20px;
}

.taxonomy-section:last-child {
    margin-bottom: 0;
}

.taxonomy-section h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tags-list,
.podcasters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: white;
    border: 1px solid #dee2e6;
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    color: #495057;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.podcaster {
    background: white;
    border: 2px solid #e9ecef;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    display: inline-block;
    transition: all 0.3s ease;
}

.podcaster:hover {
    border-color: #0073aa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,115,170,0.1);
}

.related-podcasts {
    margin: 40px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.related-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-thumbnail {
    display: block;
    height: 150px;
    overflow: hidden;
}

.related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-item:hover .related-thumbnail img {
    transform: scale(1.05);
}

.related-content {
    padding: 15px;
}

.related-content h4 {
    margin: 0 0 10px 0;
}

.related-content h4 a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
}

.related-content h4 a:hover {
    color: #0073aa;
}

.related-duration {
    font-size: 13px;
    color: #666;
    background: #f8f9fa;
    padding: 3px 10px;
    border-radius: 3px;
}

.podcast-footer {
    border-top: 1px solid #dee2e6;
    padding-top: 20px;
    margin-top: 30px;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-buttons h4 {
    margin: 0;
    color: #666;
}

.share-btn {
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-btn.telegram {
    background: #0088cc;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* سایدبار */
.sidebar .widget {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.widget-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
}

.recent-podcasts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-podcasts-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.recent-podcasts-list li:last-child {
    border-bottom: none;
}

.recent-podcasts-list li a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
}

.recent-podcasts-list li a:hover .podcast-title {
    color: #0073aa;
}

.recent-podcasts-list .duration {
    font-size: 12px;
    color: #666;
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 3px;
}

.categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.categories-list li {
    padding: 8px 0;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
}

.categories-list li a:hover {
    color: #0073aa;
}

.categories-list .count {
    background: #0073aa;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

/* واکنش‌گرایی */
@media (max-width: 991px) {
    .podcast-meta-info {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .single-podcast-content {
        padding: 20px;
    }
    
    .podcast-title {
        font-size: 24px;
    }
    
    .podcast-player-section {
        padding: 20px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* استایل‌های نظرات */
.podcast-comments {
    margin-top: 40px;
     border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comment-respond {
    margin-top: 30px;
}