body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.section-sage {
    flex: 1;
    display: flex;
    align-items: center;
}

.section-sage .container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.podcast-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.podcast-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.podcast-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sage-pale);
    color: var(--sage-dark);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.podcast-meta {
    font-size: 12px;
    color: var(--text-xlight);
}

.podcast-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

.podcast-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.podcast-play {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sage-dark);
    font-size: 13px;
    font-weight: 600;
    margin-top: auto;
    cursor: pointer;
}

.play-btn {
    width: 32px;
    height: 32px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

@media (max-width: 768px) {

    .podcasts-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .podcast-platforms {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .podcast-platforms a {
        justify-content: center !important;
    }
}
