.section-one-wrapper {
    column-gap: 20px;
}

.breadcrumbs-container {
    color: rgba(0, 0, 0, 0.30);
    font-family: 'OpenSans-SemiBold';
    font-size: 15px;
}

.breadcrumbs-container a {
    color: rgba(0, 0, 0, 0.30);
}

.section-one .left-side {
    max-width: 70%;
}

.section-one .right-side {
    max-width: 30%;
}

.section-one .blog-image,
.section-one .blog-content img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    margin: 30px 0;
    max-width: 100%;
}

.blog-content li::marker {
    font-family: 'OpenSans-SemiBold';
    font-size: 20px;
}

.blog-content li {
    margin-left: 15px;
}

.blog-content ol ol li,
.blog-content ul ol li,
.blog-content ul ul li,
.blog-content ol ul li {
   margin-left: 30px;
   list-style: lower-alpha;
   color: #707070;

}

.blog-content h3 {
    line-height: 1.6;
    font-size: 30px;
}

.blog-content h2 {
    margin-bottom: 25px;
}

.blog-background img {
    width: 100%;
    max-width: 100vw;
}

.section-one .blog-date {
    color: #8247FF;
    font-family: 'Montserrat-Bold';
    font-size: 16px;
    border-radius: 5px;
    background: #DDD1F1;
    padding: 5px;
    width: fit-content;
    margin-bottom: 15px;
}

.right-side .content-link-container {
    border-radius: 20px;
    background-color: #C9D8FF;
    padding: 30px 30px 50px 30px;
    width: fit-content;
    min-width: 350px;
    height: fit-content;
    margin-top: 188px;
    position: sticky;
    top: calc(var(--header-height) + 30px);
}

.right-side .content-link-container h3 {
    font-size: 24px;
    font-family: 'Montserrat-Bold';
    padding-bottom: 20px;
}

.right-side .content-link {
    padding-left: 20px;
}

.right-side .content-link li {
    cursor: pointer;
    font-family: 'Montserrat-SemiBold';
    margin-bottom: 10px;
    font-size: 20px;
    transition: all 300ms ease;
}

.right-side .content-link li.active {
    color: #8247FF;
}

.right-side .content-link li:hover {
    color: #8247FF;
}

.section-two {
    background-color: #1F2933;
}

.section-two-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-two h3 {
    color: white;
    font-family: 'Montserrat-Bold';
    font-size: 24px;
    margin-bottom: 20px;
}

.section-two .blog {
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #fff;
    width: 100%;
}

.section-two .blog-image {
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    width: 100%;
}

.section-two .blog-date {
    color: #8247FF;
    font-family: 'Montserrat-Bold';
    font-size: 16px;
    border-radius: 5px;
    background: #DDD1F1;
    padding: 5px;
    width: fit-content;
    margin-bottom: 15px;
}

.section-two .blog-title {
    font-size: 24px;
    color: rgba(31, 41, 51, 0.80);
    margin-bottom: 15px;

}

.section-two .blog-category {
    color: rgba(0, 0, 0, 0.30);
    font-family: "OpenSans-SemiBold";
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-two .blog-content {
    margin-bottom: 15px;
}

.section-two .blog-link {
    width: fit-content;
    border-color: #1F2933;
    color: #1F2933 !important;
    font-size: 18px;
    background-color: transparent;
    padding: 15px 30px;
}

.section-two .blog-link:hover {
    background-color: #1F2933;
    color: #fff !important;
}

.related-swiper {
    overflow: hidden;
}

.related-swiper-wrapper {
    position: relative;
}

.related-swiper .swiper-button-prev {
    left: -40px;
}

.related-swiper .swiper-button-next {
    right: -40px;
}

.related-swiper .swiper-button-prev:after,
.related-swiper .swiper-button-next:after {
    display: none;
}

.blog-title a {
    color: #1F2933;
}

@media screen and (max-width: 989px) {
    .section-one-wrapper {
        flex-direction: column-reverse;
    }

    .section-one .left-side {
        max-width: 100%;
    }

    .section-one .right-side {
        display: none;
    }

    .right-side .content-link-container {
        margin: 0;
        padding: var(--padding);
        max-width: 100%;
        margin-bottom: 30px;
    }

    .right-side .content-link {
        display: flex;
        column-gap: 15px;
        max-width: 100%;
        overflow: auto;
        padding-left: 0;
    }

    .content-link li {
        list-style: none;
    }

    .section-two-wrapper {
        padding-left: 55px;
        padding-right: 55px;
    }

    .blog-content p,
    .blog-content li {
        font-size: 18px;
    }

    .blog-content li::marker {
        font-size: 18px;
    }

    .blog-content h3 {
        font-size: 23px;
    }

    .blog-content h2 {
        font-size: 28px;
    }
}