.pod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.pod-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.pod-thumbnail {
    position: relative;
    overflow: hidden;
}
.pod-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.pod-date-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
}
.pod-cat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0073aa;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
}
.pod-thumbnail.no-image {
    background: #f5f5f5;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 15px;
    gap: 8px;
}
.pod-thumbnail.no-image .pod-cat-badge,
.pod-thumbnail.no-image .pod-date-badge {
    position: static;
}
.pod-thumbnail.no-image .pod-date-badge {
    background: #e0e0e0;
    color: #333;
}
.pod-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.pod-title {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}
.pod-title a { text-decoration: none; color: #333; }
.pod-title a:hover { color: #0073aa; }
.pod-excerpt { font-size: 0.95rem; line-height: 1.4; color: #555; margin-bottom: 15px; }
.pod-button-wrapper {
    margin-top: auto; 
    padding-top: 15px;
    margin-left: -15px; 
    margin-right: -15px; 
    margin-bottom: -15px; 
}
.pod-button {
    display: block; 
    background-color: #0073aa; 
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s ease;
}
.pod-button:hover {
    background-color: #005177; 
    color: #fff;
}
.pod-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 30px 0;
}
.pod-pagination .page-numbers {
    padding: 8px 14px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
}
.pod-pagination .page-numbers.current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
.pod-pagination .page-numbers:hover:not(.current) {
    background-color: #f5f5f5;
}