#podcast-section {
    padding-bottom: 36px;
}

#podcast-section [data-attr=content-wrapper] {
    padding: 8% 0;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    background-color: var(--brand-col-4);
}

#podcast-section [data-attr=content-wrapper]::before {
    inset: 0;
    width: 100%;
    height: 33%;
    content: "";
    z-index: 0;
    position: absolute;
    background-color: var(--brand-col-1);
}

#podcast-section [data-attr=content-wrapper] .content {
    z-index: 1;
    gap: 32px;
    width: 85%;
    display: flex;
    margin: 0 auto;
    position: relative;
    align-items: center;
    flex-direction: column;
    height: 84%;
    justify-content: space-between;
}

#podcast-section [data-attr=content-wrapper] .content .img-container {
    width: 100%;
    height: 240px;
    max-width: 432px;
    overflow: hidden;
    border-radius: 16px;
}

#podcast-section [data-attr=content-wrapper] .content .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#podcast-section [data-attr=content-wrapper] .content .info-container {
    width: 100%;
}

#podcast-section [data-attr=content-wrapper] .content .info-container .text-box .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 8px;
}

#podcast-section [data-attr=content-wrapper] .content .info-container .point-box {
    margin-top: 36px;
}

#podcast-section [data-attr=content-wrapper] .content .info-container .point-box .point {
    gap: 16px;
    display: flex;
    font-size: 17px;
    font-weight: 300;
    line-height: 21px;
    margin-bottom: 24px;
    align-items: center;
}

#podcast-section [data-attr=content-wrapper] .content .info-container .point-box .point::before {
    content: "";
    width: 36px;
    height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../icons/home/podcast-point.svg");
}

#podcast-section [data-attr=content-wrapper] .content .info-container .point-box .point:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 720px) {
    #podcast-section {
        padding-bottom: 48px;
    }

    #podcast-section [data-attr=content-wrapper] {
        padding: 8% 0;
    }

    #podcast-section [data-attr=content-wrapper]::before {
        height: 30%;
    }

    #podcast-section [data-attr=content-wrapper] .content {
        gap: 64px;
        width: 80%;
        display: flex;
        margin: 0 auto;
        align-items: center;
        flex-direction: column;
        height: 84%;
        justify-content: space-between;
    }

    #podcast-section [data-attr=content-wrapper] .content .img-container {
        width: 460px;
        height: 260px;
        max-width: unset;
        border-radius: 16px;
    }

    #podcast-section [data-attr=content-wrapper] .content .info-container .text-box .title {
        font-size: 36px;
        line-height: 40px;
    }

    #podcast-section [data-attr=content-wrapper] .content .info-container .point-box .point {
        gap: 24px;
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    #podcast-section [data-attr=content-wrapper] .content .info-container .point-box .point::before {
        width: 46px;
        height: 46px;
    }
}

@media screen and (min-width: 1080px) {
    #podcast-section [data-attr=content-wrapper] {
        padding: 6% 0;
    }

    #podcast-section [data-attr=content-wrapper]::before {
        width: 33%;
        height: 100%;
    }

    #podcast-section [data-attr=content-wrapper] .content {
        width: 90%;
        margin: 0 auto;
        flex-direction: row;
        height: 88%;
    }

    #podcast-section [data-attr=content-wrapper] .content .info-container {
        width: 45%;
    }
}

@media screen and (min-width: 1240px) {
    #podcast-section [data-attr=content-wrapper] .content {
        gap: 148px;
    }

    #podcast-section [data-attr=content-wrapper] .content .img-container {
        width: 560px;
        height: 320px;
        border-radius: 24px;
    }
}