.light-block {
    width: calc(70% - 12px);
    padding: 24px;
    border-radius: 12px;
    background-color: #fbfbfb;
}
.gray-bg {
    background: var(--gray);
}
.with-logo {
    position: relative;
    padding-left: 20px;
}
.with-logo:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0000EF;
    top: 8px;
    left: 0;
}
.with-logo:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0000EF;
    top: 28px;
    left: 0;
}
.page-tags {
    width: calc(30% - 12px);
    height: fit-content;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: #fbfbfb;
    padding: 16px;
    border-radius: 12px;
}
.page-tags .tag:before {
    content: "#";
    font-style: italic;
    margin-right: 2px;
    color: #595965;
}
.author-wrapper {
    display: flex;
    flex-direction: column;
    background: var(--gray);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    gap: 32px;
}
.row-up, .read-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.authors {
    display: flex;
    gap: 16px;
	width: 50%;
}
.publish-by, .views {
    display: flex;
    gap: 32px;
    align-items: center;
    color: #595965;
    font-size: 14px;
}
.author {
    display: flex;
    gap: 12px;
}
.authors .avatar {
    border-radius: 50%;
	height: 48px;
}
.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.name, .name a {
    /*font-size: 14px;*/
    /*font-weight: 500;*/
}
.desc {
    color: #9499AC;
}
.editorial {
    color: #595965;
}
.editorial a {
    text-decoration: underline;
    color: var(--blue);
}

.eye {
    display: flex;
    align-items: center;
    gap: 4px;
}
.rating-why {
    padding: 32px 0;
}
.rating-why h2 {
    padding-bottom: 32px;
}
.why-cards {
    display: flex;
    gap: 24px;
}
.why-item {
    width: 33%;
    min-height: 200px;
    padding: 16px;
    border-radius: 12px;
    color: var(--white);
    background-color: var(--blue);
    overflow: hidden;
}
.why-item.middle {
    background-color: var(--dark-blue);
}
.block-question {
    display: flex;
    position: relative;
    left: 0;
    top: 36px;
    justify-content: center;
}
.rating-types {
    padding-top: 32px;
}
.rating-types p {
    padding-bottom: 24px;
}
.rating-types h2 {
    padding-bottom: 32px;
}
.your-opinion .block-with-cols {
    align-items: center;
    padding: 64px 0;
}
.category-last {
    padding: 64px 0;
}
.share-article {
    width: calc(30% - 12px);
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.btn-group {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1;
}
.share-article a.btn {
    padding: 14px 24px;
    width: 100%;
}
.share-article img {
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}
.share-article a:hover img {
    filter: brightness(1) invert(0);
}

@media (max-width: 1279px) {
	section .block-with-cols {
		flex-direction: column;
	}
	.light-block {
    	width: 100%;
	}
	.page-tags {
	    width: 100%;
	}
	.rating-page-block {
		padding: 0 15px;
	}
	.author-wrapper {
		gap: 24px;
	}
	.row-up {
		flex-direction: column-reverse;
		flex-wrap: wrap;
		gap: 16px;
		align-items: flex-start;
	}
	.authors {
		flex-direction: column;
		width: 100%;
	}
	.publish-by {
		flex-wrap: wrap;
		gap: 8px;
	}
	.read-time {
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 16px;
	}
	.why-cards {
		flex-direction: column;
	}
	.why-item {
		width: 100%;
		min-height: auto;
	}
	.post-card:not(:first-child) > .image-box {
        display: block;
    }
	.your-opinion {
		padding: 0 15px;
	}
	.your-opinion .block-with-cols {
		flex-direction: column-reverse;
	}
	.share-article {
		width: 100%;
		gap: 16px;
	}
}





