:root {
    --primary-color: #f72585;
    --secondary-color: #ffd700;
    --dark-color: #000000;
    --light-color: #ffffff;
    --ash-white-color: #f4f4f4;
}

/* --- Archive Page --- */
.venda-podcast-list {
    display: grid;
    gap: 30px;
}
.venda-podcast-list.venda-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.venda-podcast-item {
    background: var(--light-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.venda-podcast-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.venda-item-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}
.venda-item-content {
    padding: 20px;
}
.venda-item-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25rem;
}
.venda-item-title a {
    text-decoration: none;
    color: var(--dark-color);
}
.venda-item-title a:hover {
    color: var(--primary-color);
}
.venda-item-excerpt {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}
.venda-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.venda-button:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}
.venda-pagination {
    margin-top: 40px;
    text-align: center;
}

/* --- Elementor Widget Styles --- */
.venda-podcast-player-wrapper iframe {
    width: 100%;
    height: auto;
    min-height: 450px;
    border-radius: 8px;
}
.venda-podcast-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.venda-podcast-link-item {
    display: flex;
    align-items: center;
    background: var(--ash-white-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: bold;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.venda-podcast-link-item:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
}
.venda-podcast-link-item .icon {
    margin-right: 10px;
    font-size: 1.5rem;
}
/* --- Related Podcasts Widget --- */
.venda-related-podcasts-wrapper {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.venda-related-podcasts-wrapper .related-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}
/* --- Filter Bar Styles --- */
.venda-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--ash-white-color);
    border-radius: 8px;
}
.venda-filters .filter-item {
    flex-grow: 1;
    min-width: 250px;
}
.venda-filters input[type="search"],
.venda-filters select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--light-color);
}
.venda-filters input[type="search"]:focus,
.venda-filters select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(247, 37, 133, 0.2);
}

.venda-no-results {
    width: 100%;
    text-align: center;
    padding: 40px;
    font-size: 1.1rem;
    color: #555;
}
/* --- Duration Info --- */
.venda-item-duration {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
}
/* --- List Layout Styles --- */
.venda-podcast-list.venda-list .venda-podcast-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.venda-podcast-list.venda-list .venda-item-thumbnail {
    flex-basis: 200px; /* Fixed width for the image */
    flex-shrink: 0;
}

.venda-podcast-list.venda-list .venda-item-content {
    flex-grow: 1;
}

@media (max-width: 600px) {
    .venda-podcast-list.venda-list .venda-podcast-item {
        flex-direction: column; /* Stack on mobile */
        align-items: flex-start;
    }
    .venda-podcast-list.venda-list .venda-item-thumbnail {
       width: 100%;
       flex-basis: auto;
    }
}
/* --- Podcast Category Tabs Widget Styles --- */
.venda-cat-filters {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: center;
}

.venda-cat-filters li {
    display: inline-block;
    padding: 10px 25px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.venda-cat-filters li:hover {
    background-color: var(--ash-white-color);
    border-color: #ccc;
}

.venda-cat-filters li.active {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.venda-posts-grid {
    display: grid;
    gap: 20px;
}