.athlos-podcast-widget {
    margin: 0;
    padding: 0;
}

.athlos-podcast-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.athlos-podcast-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.athlos-podcast-item:last-child {
    margin-bottom: 0;
}

.podcast-header {
    margin-bottom: 10px;
}

.podcast-title {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.podcast-match {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.podcast-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}

.podcast-player {
    margin-bottom: 10px;
}

.athlos-audio-player {
    width: 100%;
    height: 40px;
    outline: none;
}

.podcast-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.podcast-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.podcast-meta .dashicon {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 600px) {
    .athlos-podcast-item {
        padding: 12px;
    }

    .podcast-title {
        font-size: 14px;
    }

    .podcast-meta {
        font-size: 11px;
        gap: 10px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .athlos-podcast-item {
        background: #1e1e1e;
        border-color: #333;
    }

    .podcast-title {
        color: #fff;
    }

    .podcast-match,
    .podcast-description {
        color: #ccc;
    }

    .podcast-meta {
        color: #888;
    }
}
