.ep-talks-listing {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ep-talk-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ep-talk-image {
    width: 220px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    background: #e5e7eb;
}

.ep-talk-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ep-talk-body {
    flex: 1;
}

.ep-talk-speaker {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
    color: #111827;
}

.ep-talk-topic {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 10px;
    color: #111827;
}

.ep-talk-topic-label {
    font-weight: 600;
    font-style: italic;
}

.ep-talk-description {
    color: #374151;
    line-height: 1.5;
}

.ep-talk-description p {
    margin: 0 0 1em;
}

.ep-talk-description p:last-child {
    margin-bottom: 0;
}

.ep-talks-empty {
    padding: 16px;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    color: #6b7280;
    font-style: italic;
}

@media (max-width: 768px) {
    .ep-talk-card {
        flex-direction: column;
    }

    .ep-talk-image {
        width: 100%;
    }
}
