.blog-page {
	background-color: #f8f8fb;
	padding-top: 60px;
	padding-bottom: 60px;
}
.blog-page p {
	margin-top: 0;
	margin-bottom: 0;
}
.blog-element-container {
	padding-left: 120px;
}
.blog-element-content-container {
	padding-left: 150px;
	margin-top: 50px;
}

@media (max-width: 1599px) {
	.blog-page {
		padding-top: 48px;
		padding-bottom: 48px;
	}
	.blog-element-container {
		padding-left: 96px;
	}
	.blog-element-content-container {
		padding-left: 122px;
		margin-top: 40px;
	}
}

@media (max-width: 1200px) {
	.blog-element-container {
		padding-left: 0;
	}
	.blog-element-content-container {
		padding-left: 0;
	}
}

@media (max-width: 560px) {
	.blog-page {
		padding-top: 26px;
		padding-bottom: 26px;
	}
}

.blog-detail-page-intro {
	display: flex;
	gap: 80px;
	padding: 40px 0;
}
.blog-detail-page-intro-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.blog-detail-page-intro-left h1 {
	font-family: 'PTRootUIVFBold';
	font-weight: 700;
	font-size: 62px;
	line-height: 62px;
	color: #000;
	margin-top: 0;
	margin-bottom: 0;
}
.blog-detail-page-intro-left p {
	font-family: 'PTRootUIVFRegular';
	font-weight: 700;
	font-size: 38px;
	line-height: 42px;
	color: #000;
}
.blog-detail-page-intro-right {
	width: 430px;
	flex-shrink: 0;
}

@media (max-width: 1599px) {
	.blog-detail-page-intro {
		gap: 64px;
		padding: 32px 0;
	}
	.blog-detail-page-intro-left {
		gap: 20px;
	}
	.blog-detail-page-intro-left h1 {
		font-size: 50px;
		line-height: 50px;
	}
	.blog-detail-page-intro-left p {
		font-size: 30px;
		line-height: 34px;
	}
	.blog-detail-page-intro-right {
		width: 350px;
	}
}
@media (max-width: 1200px) {
	.blog-detail-page-intro {
		flex-direction: column;
		gap: 0;
	}
	.blog-detail-page-intro-left h1 {
		font-size: 56px;
		line-height: 60px;
	}
	.blog-detail-page-intro-left p {
		font-size: 34px;
		line-height: 38px;
	}
}

@media (max-width: 560px) {
	.blog-detail-page-intro-left {
		gap: 14px;
	}
	.blog-detail-page-intro-left h1 {
		font-size: 28px;
		line-height: 28px;
	}
	.blog-detail-page-intro-left p {
		font-size: 14px;
		line-height: 16px;
	}
}

.blog-detail-page-info {
	display: flex;
	gap: 80px;
}
.blog-detail-page-info-left {
	flex-grow: 1;
}
.blog-detail-page-info-right {
	width: 430px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

@media (max-width: 1599px) {
	.blog-detail-page-info {
		gap: 64px;
	}
	.blog-detail-page-info-right {
		width: 350px;
	}
}

@media (max-width: 1200px) {
	.blog-detail-page-info {
		flex-direction: column;
		gap: 24px;
	}
	.blog-detail-page-info-right {
		width: unset;
	}
}

.blog-article-detail-container {
	display: flex;
}

.blog-article-detail-left {
	background-color: #f3f3ff;
	color: #010203;
	display: flex;
	flex-direction: column;
}
.blog-article-detail-block {
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: 12px 10px;
    height: 140px;
}
.blog-article-detail-date {
	justify-content: space-between;
    font-family: PTRootUIVFRegular;
    font-size: 32px;
    line-height: 32px;
    border-bottom: 1px solid #fff;
}
.blog-article-detail-read-time {
	justify-content: space-between;
    font-family: PTRootUIVFRegular;
    font-size: 32px;
    line-height: 32px;
    border-bottom: 1px solid #fff;
}
.blog-article-detail-format {
	justify-content: space-between;
    font-family: PTRootUIVFMedium;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
}
.blog-article-detail-type {
	display: flex;
	gap: 4px;
	align-items: center;
}
.blog-article-detail-type img {
	width: 15px;
	height: 15px;
	margin-bottom: 1px;
}
.blog-article-detail-block-name {
    color: #002EA6;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: PTRootUIVFBold;
    font-weight: 700;
    font-size: 8px;
    line-height: 8px;
    flex-direction: row;
    justify-content: flex-start;
}

.blog-article-detail-right {
	flex-grow: 1;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-article-detail-tags {
    display: flex;
    gap: 5px;
}
.blog-article-detail-tag {
    color: #002ea6;
    font-family: PTRootUIVFBold;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    padding: 10px 10px 11px 10px;
    border-radius: 20px;
    background-color: #fff;
}

@media (max-width: 1599px) {
	.blog-article-detail-block {
	    gap: 16px;
	    padding: 10px 8px;
	}
	.blog-article-detail-date {
	    font-size: 26px;
	    line-height: 26px;
	}
	.blog-article-detail-read-time {
	    font-size: 26px;
	    line-height: 26px;
	}
	.blog-article-detail-format {
	    font-size: 16px;
	    line-height: 16px;
	}
	.blog-article-detail-type img {
		width: 12px;
		height: 12px;
		margin-bottom: 2px;
	}

	.blog-article-detail-right {
	    padding: 16px;
	}
	.blog-article-detail-tag {
	    font-size: 10px;
	    line-height: 10px;
	    padding: 8px 8px 9px 8px;
	}
}

@media (max-width: 1400px) {
	.blog-article-detail-block {
		height: 110px;
	}
}
@media (max-width: 1200px) {
	.blog-article-detail-left {
		width: 155px;
	}
	.blog-article-detail-block {
		height: 160px;
	}
}
@media (max-width: 991px) {
	.blog-article-detail-block {
		height: 130px;
	}
}
@media (max-width: 560px) {
	.blog-article-detail-container {
		flex-direction: column-reverse;
	}
	.blog-article-detail-left {
		flex-direction: revert;
	    width: unset;
	    min-height: 60px;
	    flex-grow: 1;
	}
	.blog-article-detail-block {
		height: unset;
		flex-grow: 1;
		width: 33.33%;
	}
	.blog-article-detail-date {
	    border-right: 1px solid #fff;
	    border-bottom: none;
	}
	.blog-article-detail-read-time {
	    border-right: 1px solid #fff;
	    border-bottom: none;
	}
	.blog-article-detail-right {
		min-height: 280px;
	}
}

.blog-article-detail-author-top {
	display: flex;
}
.blog-article-detail-author-photo {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.blog-article-detail-author-name {
	padding: 12px 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
	background-color: #fff;
}
.blog-article-detail-author-title {
    color: #002EA6;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: PTRootUIVFBold;
    font-weight: 700;
    font-size: 8px;
    line-height: 8px;
    flex-direction: row;
    justify-content: flex-start;
}
.blog-article-detail-author-content {
	color: #010203;
	font-family: PTRootUIVFBold;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
}
.blog-article-detail-author-bottom {
	display: flex;
	border-top: 1px solid #9775f2;
}
.blog-article-detail-author-description {
	background-color: #f3f3ff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 100px;
}
.blog-article-detail-author-description p {
	color: #010203;
	font-family: 'PTRootUIVFMedium';
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
}
.blog-article-detail-author-post {
	padding: 30px;
	flex-grow: 1;
	background-color: #fff;
	gap: 30px;
	display: flex;
    flex-direction: column;
}
.blog-article-detail-author-post-title {
	color: #292929;
	font-family: 'PTRootUIVFBold';
	font-weight: 700;
	font-size: 18px;
	line-height: 20px;
}
.blog-article-detail-author-post-text {
	color: #292929;
	font-family: 'PTRootUIVFMedium';
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
}

@media (max-width: 1599px) {
	.blog-article-detail-author-photo {
		width: 80px;
		height: 80px;
	}
	.blog-article-detail-author-name {
		padding: 10px 24px;
	}
	.blog-article-detail-author-content {
	    font-size: 16px;
	    line-height: 18px;
	}
	.blog-article-detail-author-description {
		width: 80px;
	}
	.blog-article-detail-author-post {
		padding: 24px;
		gap: 24px;
	}
	.blog-article-detail-author-post-title {
		font-size: 16px;
		line-height: 18px;
	}
	.blog-article-detail-author-post-text {
		font-size: 12px;
		line-height: 16px;
	}
}

@media (max-width: 1200px) {
	.blog-article-detail-author {
		display: flex;
	}
	.blog-article-detail-author-top {
		border-bottom: none;
		border-right: 2px solid #9775f2;
	}
	.blog-article-detail-author-photo {
		width: 155px;
		min-height: 155px;
		flex-shrink: 0;
    	height: 100%;
	}
	.blog-article-detail-author-name {
		padding: 15px 40px 15px 20px;
	}
	.blog-article-detail-author-content {
		font-size: 16px;
		line-height: 18px;
	}
	.blog-article-detail-author-bottom {
		flex-grow: 1;
	}
	.blog-article-detail-author-description {
		display: none;
	}
	.blog-article-detail-author-post {
		padding: 20px 25px;
	}
	.blog-article-detail-author-post-title {
		font-size: 16px;
		line-height: 18px;
	}
	.blog-article-detail-author-post-text {
		font-size: 14px;
		line-height: 18px;
	}
}

@media (max-width: 560px) {
	.blog-article-detail-author {
		flex-direction: column;
	}
	.blog-article-detail-author-top {
		border-right: none;
		border-bottom: 1px solid #9775f2;
	}
	.blog-article-detail-author-photo {
		width: 76px;
		min-height: 76px;
	}
	.blog-article-detail-author-name {
		padding: 10px;
	}
	.blog-article-detail-author-title {
	    font-size: 7px;
	    line-height: 7px;
	}
	.blog-article-detail-author-content {
		font-size: 14px;
		line-height: 16px;
	}
	.blog-article-detail-author-post {
		padding: 22px 20px;
	}
	.blog-article-detail-author-post-title {
		font-size: 12px;
		line-height: 14px;
		margin-bottom: 12px !important;
	}
	.blog-article-detail-author-post-text {
		font-size: 12px;
		line-height: 14px;
	}
}

.page-blog-element-menu {
	padding-bottom: 50px;
}

@media (max-width: 1599px) {
	.page-blog-element-menu {
		padding-bottom: 40px;
	}
}

.blog-element-content-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #c9c9c9;
    margin-top: 40px;
}
.blog-element-view-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 1200px) and (min-width: 991px) {
    .blog-element-content-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
@media (max-width: 560px) {
    .blog-element-content-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}