.podcast-container_43a2f3ca {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}
.podcast-session-card_43a2f3ca {
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* Modern Row Layout specific rule */
.podcast-layout-list .podcast-session-card_43a2f3ca {
    border-right: 5px solid #e01a4f;
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    border-radius: 4px 12px 12px 4px;
}

.session-header_43a2f3ca {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 16px;
}
.session-main-title_43a2f3ca {
    margin: 0 0 6px 0;
}
.session-subtitle_43a2f3ca {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 500;
}
.session-description_43a2f3ca {
    margin: 0 0 14px 0;
    font-size: 14px;
    line-height: 1.5;
}
.session-meta-group_43a2f3ca {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.session-meta_43a2f3ca {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.session-meta_43a2f3ca svg {
    vertical-align: middle;
}

/* Guest layout overrides based on layout selection */
.session-guests-grid_43a2f3ca {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* For Modern Row Layout - stack guests vertically, one full-width row per guest */
.podcast-layout-list .session-guests-grid_43a2f3ca {
    grid-template-columns: 1fr;
}

.single-guest_43a2f3ca {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.04);
}
.guest-img-wrapper_43a2f3ca {
    flex-shrink: 0;
}
.guest-photo_43a2f3ca {
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.guest-details_43a2f3ca {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.guest-name_43a2f3ca {
    margin: 0 0 4px 0;
    font-weight: 600;
    font-size: 16px;
}
.guest-role_43a2f3ca {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    display: block;
}
.guest-bio_43a2f3ca {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #555;
}
