.post-content ul {
    padding-left: 24px;
    list-style-type: disc;
}
.content__wrapper {
    display: flex;
    column-gap: 80px;
}
.content-col {
    width: 100%;
    margin-bottom: 80px;
}
.content-col__main {
	width: 737px;
}
.content-col__main {
    max-width: 100%;
}
.content-col__sidebar {
    max-width: 463px;
}
.latest-item {
    width: 100%;
}

.latest-item__img-wrapper {
    width: auto;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.latest-item__img-wrapper img {
    width: 100%;
    height: 100%;
	border-radius: 8px;
    object-fit: cover;
    object-position: center;
}
.breadcrums {
    margin-top: 32px;
}
.content-col__main h1 {
    font-size: 40px;
    line-height: 56px;
    margin-top: 0;
    margin-bottom: 9px;
}
.content-col__sidebar h2 {
    margin-top: 0;
}
.content-col__sidebar h3 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 16px;
}

.content-col__sidebar h3:first-child {
    margin-top: 0;
}

.content-col__sidebar h3:not(:first-child) {
    margin-bottom: 8px;
}

.content-col__sidebar p {
    margin: 0;
}

.content-col__sidebar .latest-item {
    margin-bottom: 24px;
}
.post_date {
    font-size: 14px;
    line-height: 16px;
    margin-top: 16px;
}
.banner {
    margin-top: 23px;
}
.banner img {
    display: block;
	width: 100%;
	margin-bottom: 2em;
}
.post-content a {
    color: #FF9900;
}
.post-content img {
    display: block;
}

@media screen and (max-width: 1199px) {
    .content__wrapper {
        flex-direction: column;
    }
    .content-col__main {
        max-width: 100%;
    }
    .content-col__sidebar{
        max-width: 734px;
    }
}

@media screen and (max-width: 768px) {
    .post-content img,
    .banner img {
        width: 100%;
    }
    .content-col__main h1 {
        font-size: 24px;
        line-height: 32px;
    }
    .breadcrums {
        margin-bottom: 18px;
    }
    .content-col__sidebar h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 19px;
        margin-top: 4px;
    }
    .latest-item h3 {
        font-size: 24px;
        line-height: 32px;
        margin-top: 8px;
        margin-bottom: 0;
    }
	.latest-item__img-wrapper img {
		border-radius: 8px;
	}
    .latest-item__img-wrapper {
        width: 100%;
        height: 240px;
    }
}

.preview-post {
    margin-bottom: 48px;
}

.preview-post-info {
    display: flex; 
    align-items: center; 
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 56px;
}

.preview-post-info .preview-post-date {
    color: #FF9900;
}

.preview-post-info .delimiter {
    width: 1px;
    height: 16px;
    background-color: #222;
    display: inline-block;
    margin: 0px 1px;
}

@media screen and (max-width: 1199px) {
    .preview-post {
        margin-bottom: 24px;
    }
    .preview-post-info {
        margin-top: 8px;
    }
}

.preview-post:not(.learn-preview) .blog__page_content h2 {
    display: initial;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    overflow: initial;
    text-overflow: initial;
}