.podcast-content-toc {
    padding: 90px 0;
    background: #ffffff;
    overflow: visible !important;
}

.podcast-content-toc-container {
    display: grid;
    grid-template-columns: 0.52fr 1.2fr;
    gap: 95px;
    align-items: start;
    overflow: visible !important;
}

.podcast-content-toc-left {
    align-self: stretch;
    overflow: visible !important;
    position: relative;
}

.podcast-content-toc-left-inner {
    position: relative;
}

.podcast-content-toc-eyebrow {
    margin-bottom: 12px;
}

.podcast-content-toc-title {
    margin: 0;
    color: #262626;
    font-size: 42px;
    font-weight: 600;
}

.podcast-content-toc-box {
    position: relative;
    margin-top: 64px;
    padding: 30px 32px;
    border-radius: 15px;
    background: #F8F7F4;
}

.podcast-content-toc-box.is-fixed {
    position: fixed;
    top: 100px;
    z-index: 1;
}

.podcast-content-toc-box.is-stopped {
    position: absolute;
    bottom: 0;
    z-index: 20;
}

.podcast-content-toc-box-title {
    display: block;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid #955f3a;
    color: #262626;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.podcast-content-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.podcast-content-toc-list li {
    margin-bottom: 10px;
}

.podcast-content-toc-list li:last-child {
    margin-bottom: 0;
}

.podcast-content-toc-list a {
    color: #262626;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.35;
    transition: 0.2s ease;
}

.podcast-content-toc-list a:hover,
.podcast-content-toc-list a.active {
    color: #955f3a;
}

.podcast-content-section {
    scroll-margin-top: 140px;
    margin-bottom: 54px;
}

.podcast-content-section:last-child {
    margin-bottom: 0;
}

.podcast-section-title {
    margin: 0 0 24px;
    color: #262626;
    font-size: 32px;
    line-height: 1.18;
    font-weight: 600;
}

.podcast-section-content {
    color: #262626;
    font-size: 18px;
    line-height: 1.42;
}

.podcast-section-content p {
    margin: 0 0 24px;
}

.podcast-section-content p:last-child {
    margin-bottom: 0;
}

.podcast-section-content a {
    color: inherit;
    text-decoration: underline;
}

.podcast-section-button {
    margin-top: 24px;
}

.podcast-section-content iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .podcast-content-toc-container {
        grid-template-columns: 100%;
        gap: 50px;
    }

    .podcast-content-toc-left-inner {
        position: static;
    }

    .podcast-content-toc-title {
        font-size: 34px;
    }

    .podcast-content-toc-box {
        margin-top: 38px;
    }
}

@media (max-width: 767px) {
    .podcast-content-toc {
        padding: 60px 0;
    }

    .podcast-content-toc-title {
        font-size: 30px;
    }

    .podcast-section-title {
        font-size: 28px;
    }

    .podcast-section-content {
        font-size: 16px;
    }

    .podcast-content-toc-box {
        padding: 24px;
    }
}