.podcast-episode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.podcast-episode__card {
    display: flex;
    flex-direction: column;
    border: 1px solid #D8DFE9;
    border-radius: 12px;
    overflow: hidden;
}
.podcast-episode__image {
    aspect-ratio: 273 / 164;
    border-bottom: 1px solid #D8DFE9;
}
.podcast-episode__image img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.podcast-episode__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 274 / 294;
    padding: 25px 15px;
}
.podcast-episode__content {
    display: flex;
    flex-direction: column;
}
.podcast-episode__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.podcast-episode__number {
    padding: 3px 7px;
    background-color: #F2F7FC;
    border-radius: 4px;
    color: #75808E;
    font-family: var(--Font-Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}
.podcast-episode__date {
    color: #75808E;
    font-family: var(--Font-Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}
.podcast-episode__label {
    margin-top: 16px;
    color: #18202D;
    font-family: var(--Font-Linear-Sans);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
}
.podcast-episode__title {
    margin: 0 !important;
    color: #75808E !important;
    font-family: var(--Font-Linear-Sans) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
}
.podcast-episode__title a {
    color: #75808E !important;
    font-family: var(--Font-Linear-Sans) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
}
.podcast-episode__duration {
    margin-top: 16px;
    color: #75808E;
    font-family: var(--Font-Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}
.podcast-episode__actions {
    
}
.podcast-episode__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 16px;
    border: 1px solid #D8DFE9;
    border-radius: 4px;
    color: #18202D !important;
    font-family: var(--Font-Inter) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: -0.16px !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    transition: 0.3s all ease;
}
.podcast-episode__action:hover {
    background-color: #F2F7FC;
}
.podcast-episode-grid__loader {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
}
.podcast-episode-grid__loader.active {
    display: block;
}
.podcast-episode-grid__loader-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #F2F7FC;
    border-top-color: #1E71ED;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.podcast-episode-grid__end {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #75808E;
    font-family: var(--Font-Inter);
    font-size: 14px;
}
.podcast-episode-grid__end.active {
    display: block;
}