.policy-section {
    padding-top: 160px;
    margin-bottom: 200px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0 30px;
}

.policy-section .policy-section__content {
    grid-column: span 8 / span 8;
    grid-column-start: 3;
}

.policy-section .policy-section__title {
    padding-bottom: 30px;
    border-bottom: 1px solid #DEDBD6;
}

.policy-section__title {
    font-family: YouthMedium, sans-serif;
    font-size: 36px;
    line-height: normal;
    color: #292929;
}

.policy-section .policy-section__text {
    margin-top: 60px;
}

.policy-section__text {
    font-family: JostRegular, sans-serif;
    font-size: 18px;
    line-height: 24.87px;
    letter-spacing: calc(1em / 20);
    color: #292929;
}

.policy-section__text ul {
    margin-top: 40px;
    margin-bottom: 50px;
}

.policy-section__text ul> li:not(:last-child)  {
    margin-bottom: 30px;
}

.policy-section__text ul li::before {
    color: #D9D9D9;
    margin-right: 29px;
    margin-left: 40px;
}

.policy-section__text a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-skip-ink: none
}

@media screen and (max-width: 1200px) {
    .policy-section .policy-section__content {
        grid-column: span 10 / span 10;
        grid-column-start: 2;
    }
}

@media screen and (max-width: 850px) {
    .policy-section .policy-section__content {
        grid-column: span 11 / span 11;
        grid-column-start: 1;
    }
}

@media screen and (min-width: 768px) {

}

@media screen and (max-width: 768px) {
    .policy-section {
        padding-top: 126px;
        margin-bottom: 100px;
        gap: 0;
    }

    .policy-section .policy-section__content {
        grid-column: span 12 / span 12;
        grid-column-start: 1;
    }

    .policy-section .policy-section__text {
        margin-top: 40px;
    }
    .policy-section__text {
        font-size: 1rem;
    }

}

@media screen and (max-width: 620px) {

}

