.podcast-links-section {
    max-width: 800px;
    margin-top: 20px;
    margin-bottom: 30px;
    background: transparent;
    border-top: 1px solid #e2e8f0;
}

.post-content h2 {
    font-size: 32px;
    padding-bottom: 15px;
}

.podcast-listen {
    font-size: 24px;
    margin-bottom: 15px;
}

.link-container {
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.podcast-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.podcast-links li {
    flex: 0 1 auto;
}

.podcast-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
    height: 60px;
}

.podcast-link:hover {
    background: #fff;
    border-color: #cbd5e1;
    transform: scale(1.05);
}

.podcast-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}