.podcast-buttons {
    display: flex;
    flex-direction: column;
    gap: 0px; /* 20px; */
}

.podcast-buttons .podcast-row.heading {
    justify-content: center;
}

.podcast-buttons .podcast-row.embed {
    justify-content: center;
}

.podcast-buttons .podcast-row.buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
	
	margin-top: 20px;
	margin-bottom: 20px;
}

.podcast-buttons .podcast-row.buttons .button {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    background-color: white;
    color: #386ACE;
    border: 2px solid #386ACE;
    cursor: pointer;
}

.podcast-buttons .podcast-row.buttons .button i,
.podcast-buttons .podcast-row.buttons .button svg,
.podcast-buttons .podcast-row.buttons .button img {
    margin-right: 8px;
    fill: #386ACE;
    color: #386ACE;
}

.podcast-buttons .podcast-row.buttons .button:hover {
    background-color: #386ACE;
    color: white!important;
}

.podcast-buttons .podcast-row.buttons .button:hover i,
.podcast-buttons .podcast-row.buttons .button:hover svg,
.podcast-buttons .podcast-row.buttons .button:hover img {
    filter: brightness(0) invert(1);
}

.podcast-buttons .podcast-row.buttons .transcript.disabled {
    background-color: white;
    color: #386ACE;
    border: 2px solid #386ACE;
    opacity: 0.5;
    cursor: not-allowed;
}

.podcast-buttons .podcast-row.buttons .transcript.disabled i {
    color: #386ACE;
    fill: #386ACE;
}

@media (max-width: 600px) {
    .podcast-buttons .podcast-row.buttons {
        flex-direction: column;
        gap: 8px;
    }

    .podcast-buttons .podcast-row.buttons .button,
    .podcast-buttons .podcast-row.buttons .transcript.disabled {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
