@media (min-width: 1300px) {
    .td-container {
        width: 1170px;
    }
}

.td-pb-row {
    margin: 0 !important;
}

.single-sidebar {
    padding-left: 10px;
}

/*region sidebar*/
#td-outer-wrap {
    overflow: visible;
}

.sidebar-item {
    color: #212121;
    margin-bottom: 32px;
}

.suggest-post__title {
    font-family: GoogleSans Medium, Arial, Helvetica, sans-serif;
    font-size: 24px;
    margin-bottom: 16px;
}

a.suggest-post__item {
    display: flex;
    gap: 12px;
    color: #212121;
    margin-bottom: 16px;
}

.sp__item-img {
    flex-shrink: 0;
    width: 200px;
    height: fit-content;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
}

.sp__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp__item-title {
    font-family: GoogleSans Medium, Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.trial-form {
    position: sticky;
    top: 80px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.social-channels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.social-channels .channel-item {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1099px) {
    a.suggest-post__item {
        flex-direction: column;
    }

    .sp__item-img {
        width: 100%;
    }
}
/*endregion sidebar*/

/*region related posts*/
.related-posts {
    margin-top: 32px;
    color: #212121;
}

.related-posts__title {
    font-family: GoogleSans Medium, Arial, Helvetica, sans-serif;
    font-size: 24px;
}

.related-posts__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.related-posts__view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0065ff;
}

.related-posts__view-all {
    flex-shrink: 0;
}

.related-posts__item {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    margin: 6px;
    background-color: #fff;
    overflow: hidden;
}

.rp__item-img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.rp__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rp__item-content {
    padding: 16px;
}

.rp__item-category {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    border: 1px solid #0065ff;
    background: #deebff;
    border-radius: 20px;
    padding: 2px 8px;
    width: fit-content;
}

.rp__item-title {
    color: #212121;
    font-family: GoogleSans Medium, Arial, Helvetica, sans-serif;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 12px;
}

.related-posts__list .owl-prev {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
}

.related-posts__list .owl-next {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
}

.related-posts__list .owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: transparent;
}

.related-posts__list .owl-nav .owl-prev img {
    transform: rotate(180deg);
}
/*endregion related posts*/

@media (max-width: 979px) {
    .td-pb-row [class*="td-pb-span"] {
        width: 100%;
    }

    .td-main-sidebar .suggest-post{
        display: none;
    }

    .trial-form {
        position: unset;
    }
}