.main-content {
	background-color: #1A1A1A;
}

.blog-page {
	background-color: #0D0D0D;
}

.blog-page.indent {
	padding-bottom: 208px;
}

.blog-banner {
	display: flex;
	flex-direction: column;
	padding-top: 28px;
	background: linear-gradient(90deg, #1A1A1A 0%, #1A1A1A 100%);
	border-radius: 0 0 32px 32px;
	min-height: 345px;
	position: relative;
	overflow: hidden;
}

.blog-banner.with-bg::before {
	content: '';
	position: absolute;
	top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
	background-image: url('../img/blog-vector-big.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.blog-banner .container {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
}


/* Breadcrumbs */
.breadcrumbs {
	display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumbs__back {
	display: inline-flex;
	align-items: center;
	margin-right: 17px;
	gap: 8px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
	text-transform: uppercase;
}

.breadcrumbs__back:hover {
	color: #fff;
}

.back-icon {
	width: 7px;
    height: 15px;
	background-image: url('../img/breadcrumbs-arrow.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.bd-link {
	font-size: 13px;
	color: #fff;
	text-decoration: none;
	transition: all .3s ease;
	position: relative;
}

.bd-link::before {
	content: '/';
	position: absolute;
	top: 0;
	right: -10px;
}

.bd-link:hover {
	color: #fff;
}

.bd-link.current {
	color: rgba(255, 255, 255, 0.4);
	cursor: default;
	pointer-events: none;
}
.bd-link.current::before {
	content: none;
}


/* Hero */
.blog-hero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
	gap: 64px;
	flex-grow: 1;
}

.blog-hero.author {
	padding: 33px 0 55px;
}

.hero-content {
	display: flex;
    flex-direction: column;
	align-items: flex-start;
    gap: 16px;
	max-width: 860px;
}

.hero-content h1 {
	font-size: 50px;
    font-weight: 900;
    line-height: 67px;
    text-transform: uppercase;
}

.hero-content p {
	font-size: 18px;
    line-height: 23px;
	padding: 0;

}

.banner-media {
	max-width: 552px;
	width: 100%;
	height: -webkit-fill-available;
    position: relative;
	flex-shrink: 0;
}

.banner-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero-media {
	max-width: 334px;
    max-height: 334px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
	flex: none;
}

.hero-content .footer-social {
    align-self: flex-start;
}

/* Filters */
.filter-wrapper {
	padding: 32px 0;
    /* overflow-x: scroll; */
}

.filter-wrapper::-webkit-scrollbar {
	display: none;
}

.filter-scroll {
	display: flex;
	justify-content: center;
	gap: 16px;
	min-width: 805px;
}


.blog-filter {
	border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    background: rgba(100, 101, 105, 0.22);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
	backdrop-filter: blur(32px);
}

.blog-filter:hover {
	background: rgba(100, 101, 105, 0.32);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.blog-filter.is-active {
	background: #1e8dff;
	border-color: #1e8dff;
	color: #fff;
	cursor: default;
	pointer-events: none;
}

.blog-filter:first-child {
	min-width: 101px;
}

/* Cards grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.blog-card {
	background: #171717;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 16px;
	gap: 16px;
	transition: all .3s ease;
}

.blog-card:hover {
	background: #1A1B1E;
}

.card-image {
	border-radius: 16px;
    width: 100%;
    height: 100%;
    max-height: 207px;
    overflow: hidden;
}

.card-image img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.card-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 8px;
}

.meta-top {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
	margin-bottom: 5px;
}

.tag-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
	width: 100%;
	margin-bottom: 5px;
    /* overflow-x: scroll; */
}

.tag-wrapper::-webkit-scrollbar {
	display: none;
}

.card-tag {
	color: rgba(255, 255, 255, 0.6);
	padding: 4px 16px;
    border-radius: 40px;
    font-size: 12px;
    background: rgba(135, 135, 135, 0.08);
	transition: all .3s ease;
	min-width: fit-content;
}

.card-tag:hover {
	color: #FF5900;
    background: rgba(255, 89, 0, 0.08);
}

.meta-text {
	display: flex;
    align-items: center;
    gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
}

.time-text {
	color: rgba(255, 255, 255, 0.6);
}

.card-content h3 {
	font-size: 26px;
    font-weight: 600;
    line-height: 32px;
}

.card-content h3 a {
	color: #fff;
	text-decoration: none;
}

.card-description {
	font-size: 16px;
    line-height: 23px;
    padding: 0;
}

.card-more {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	font-size: 16px;
    line-height: 23px;
    color: #00A3EB;
	text-decoration: none;
	margin-bottom: 5px;
}

.card-more:hover {
	color: #20BBFF;
}

.card-more-icon {
	width: 6px;
    height: 13px;
	background-image: url('../img/icon-arrow-right-default.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: all .3s ease;
}

.card-more:hover .card-more-icon {
	transform: translateX(5px);
	background-image: url('../img/icon-arrow-right-hover.svg');
}

/* Pagination */
.blog-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 48px;
	flex-wrap: wrap;
}

.pages {
	display: flex;
	align-items: center;
	gap: 8px;
}

.page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	padding: 0 12px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.page-link:hover {
	color: rgba(255, 255, 255, 0.8);
	background-color: #171717;
}

.page-link.is-active {
	background-color: #e8e8e8;
	color: #0D0D0D;
	cursor: default;
	pointer-events: none;
}

.btn-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
    padding: 14px 40px;
    border-radius: 39px;
    background-color: transparent;
}

.btn-nav:hover {
	color: #fff;
	background-color: #171717;
}

.btn-nav:hover .ico-nav {
	background-image: url('../img/nav-arrow-white.svg');
}

.btn-nav.back.hide {
	visibility: hidden;
}

.btn-nav.back.non-hide {
	visibility: visible;
}

.btn-nav.back.disabled {
	cursor: default;
	pointer-events: none;
}

.ico-nav {
	width: 16px;
	height: 16px;
	background-image: url('../img/nav-arrow-gray.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.ico-nav.prev {
	transform: rotate(180deg);
}


/* SEO Content section */
.seo-content {
	display: flex;
    flex-direction: column;
    gap: 24px;
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 56px;
}

.seo-content h2 {
	font-size: 46px;
    font-weight: 700;
    line-height: 53px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 32px;
}

.seo-content p {
	font-size: 18px;
	line-height: 26px;
	padding: 0;
	margin: 0;
}

.seo-content ul,
.seo-content ol {
	list-style: revert;
	list-style-position: inside;
}

.seo-content ul li,
.seo-content ol li {
	font-size: 18px;
	line-height: 26px;
}

.article-wrap table {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	min-width: auto;
	margin: 0 auto 16px auto;
}
/* .table-wrap {
	width: 100%;
    max-width: 974px;
    margin: 0 auto;
	overflow-x: scroll;
	
} */

.article-wrap table::-webkit-scrollbar {
	display: none;
}

table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 14px;
	
	/* min-width: 974px; */
}

table tr {
	display: flex;
    width: 100%;
    justify-content: space-between;
}

table th,
table td {
	width: 100%;
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
	padding: 14px 18px;
	text-align: left;
	margin: 0 2px 2px 0;
	background: #181818;
}

@media (max-width: 640px) {
	.article-wrap table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.article-wrap table th,
	.article-wrap table td {
		width: 200px;
		max-width: 200px;
		flex: 0 0 200px;
	}
}

table thead th {
	background: #212121;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	border-radius: 8px;
}

table thead th:first-child,
table thead th:last-child,
table tbody td:first-child,
table tbody td:last-child {
	max-width: 166px;
}

table tbody td {
	color: rgba(255, 255, 255, 0.7);
}

table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 12px;
}

table tbody tr:last-child td:last-child {
	border-radius: 0 0 12px 0;
}


.seo-banner-wrap {
	padding: 56px 0 125px;
	background-color: #0D0D0D;
}

.seo-banner {
	border-radius: 24px;
	background: #EBEBEB;
	color: #05070b;
	display: grid;
	grid-template-columns: minmax(0, 2.5fr) minmax(0, 1fr);
	align-items: center;
	padding: 56px 48px;
	position: relative;
	overflow: hidden;
}

.seo-banner-content {
	color: #0D0D0D;
	position: relative;
    z-index: 2;
}

.seo-banner h2 {
	margin-bottom: 10px;
	font-size: 38px;
	font-weight: 600;
	text-transform: uppercase;
}

.seo-banner .subtitle {
	margin-bottom: 32px;
	font-size: 18px;
	font-weight: 500;
}

.seo-banner-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 24px;
	max-width: 820px;
}

.seo-banner-item h4 {
	font-size: 27px;
    font-weight: 700;
    margin-bottom: 6px;
}

.seo-banner-item p {
	font-size: 22px;
}

.seo-banner-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.seo-btn {
	width: 100%;
	max-width: 250px;
	min-width: 150px;
	justify-content: center;
	font-size: 17px;
}

.seo-btn.btn--white {
	font-weight: 500;
	background: rgba(101, 157, 210, 0.1);
	color: #05070b;
	border: 1px solid;
	border-image-source: linear-gradient(110.23deg, #FFFFFF 31.07%, rgba(255, 255, 255, 0) 51.65%, rgba(255, 255, 255, 0) 62.4%, #FFFFFF 79.7%);
	transition: all 0.3s ease;
}

.seo-btn.btn--white:hover {
	background: #ffffff;
	color: #FF5900;
}

.seo-banner-media {
	display: flex;
	position: relative;
}

.seo-banner::before {
	content: '';
	position: absolute;
	top: 0;
    right: -25%;
    width: 80%;
    height: 100%;
	background-image: url('../img/banner-gradient.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}


.seo-banner-media img {
	width: 100%;
	object-fit: contain;
}

/* Article START*/
.breadcrumbs-wrap {
	padding-top: 16px;
	padding-bottom: 33px;
}

/* .article-wrapper {
	background-color: #1A1A1A;
	padding-bottom: 80px;
	
} */

.article-inner {
	max-width: 850px;
	margin: 0 auto;
}

.article-media {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 24px;
	max-height: 400px;
}

.article-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-title {
	margin-bottom: 16px;
	font-size: 46px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}

.article-meta {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	margin-bottom: 32px;
    gap: 7px;
    font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.article-meta .author {
	color: #00A3EB;
}

.article-hero__share {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	cursor: pointer;
	padding: 0;
	margin-left: 8px;
}

.article-hero__share:hover {
	color: #fff;
}

.contents-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 32px;
}

.contents-title {
	font-size: 15px;
	line-height: 33px;
	color: rgba(255, 255, 255, 0.5);
}

.contents-list {
	margin: 0;
	padding-left: 22px;
	list-style: decimal;
	color: rgba(255, 255, 255, 0.7);
}

.contents-list li {
	margin-bottom: 7px;
	padding-left: 10px;
}

.contents-list li:last-child {
	margin-bottom: 0;
}

.contents-list li a {
	font-size: 18px;
	line-height: 33px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.contents-list li a:hover {
	color: #00A3EB;
}

.article-inner h3 {
	font-size: 23px;
	font-weight: 700;
	line-height: 33px;
	text-align: center;
	margin-bottom: 16px;
}

.article-inner h4 {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 16px;
}

.article-inner h5 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
}

.article-inner p {
	font-size: 18px;
	line-height: 30px;
	padding: 0;
	margin-bottom: 16px;
}


.article-quote {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: center;
	border-radius: 24px;
	padding: 24px 5px;
	color: #00A3EB;
	background: rgba(1, 145, 209, 0.09);
	margin-bottom: 76px;
}

.article-quote h4 {
	font-size: 20px;
	font-weight: 700;
}

.article-quote p {
	font-size: 16px;
	line-height: 23px;
	padding: 0;
}


/*TODO need to fix this*/
.article-chart {
	background: #171717;
	border-radius: 16px;
	padding: 32px;
	margin: 32px 0;
}

.article-chart__bars {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 8px;
	height: 120px;
}

.article-chart__bar {
	flex: 1;
	min-width: 0;
	height: var(--h, 50%);
	background: #1e8dff;
	border-radius: 4px 4px 0 0;
	transition: height 0.3s ease;
}
/*TODO need to fix this*/



.article-inner .article-list {
	display: flex;
	flex-direction: column;
	/* gap: 2px; */
	list-style: disc;
    list-style-position: inside;
	margin-bottom: 16px;
}

.article-inner .article-list li {
	font-size: 18px;
	line-height: 33px;
}

/* .article-inner table {
	min-width: 850px;
} */

.article-inner table thead th:last-child,
.article-inner table tbody td:last-child {
	max-width: 100%;
}

.article-inner table tr td {
	background: #212121;
}

.article-inner table thead th {
	background: #2B2B2B;
}

.bubles-wrapper {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
	margin: 32px 0;
}

.bubble-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.bubble {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-align: center;
	position: relative;
}

.bubble img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.bubble.small {
	width: 230px;
    height: 230px;
}

.bubble.biggest {
	width: 318px;
	height: 312px;
}

.bubble-item .value-text {
	display: block;
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	position: relative;
}

.bubble-item .label-text {
	font-size: 20px;
	font-weight: 700;
	margin-top: 12px;
}

.article-wrap .textBlock {
	background: transparent;
}

.article-faq {
	margin-bottom: 88px;
}

.author-wrap {
	padding-bottom: 56px;
}

.article-author-share {
	width: 100%;
    max-width: 560px;
    margin: 0 auto;
	text-align: center;
}

.author-inner {
	padding: 32px 0;
	margin-bottom: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.article-author {
	display: flex;
	flex-direction: row;
    align-items: center;
	justify-self: center;
    gap: 16px;
	text-align: left;
	margin-bottom: 0;
}

.article-author .avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.article-author .avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-author .author-right {
	display: flex;
    flex-direction: column;
}

.article-author .written {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 5px;
}

.article-author .author-name {
	font-size: 22px;
	font-weight: 600;
	color: #FFFFFF;
}

.article-author-share .author-role {
	font-size: 14px;
	line-height: 33px;
	color: rgba(255, 255, 255, 0.6);
}

.article-author-share .author-bio {
	font-size: 16px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.9);
	padding: 0;
}

.article-more {
	padding-top: 48px;
	background-image: url('../img/cta-bg.webp');
	background-size: contain;
	background-position: bottom;
	background-repeat: no-repeat;
	position: relative;
}

.article-more::before {
	content: '';
    position: absolute;
    width: 100%;
    height: 40%;
    left: 0;
    right: 0;
    bottom: 0%;
    background-image: url(../img/cta-blur.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.article-related h2 {
	margin-bottom: 32px;
	font-size: 46px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}

.article-cta {
	margin: 168px 0 132px;
	position: relative;
}

.cta-wrapper {
	background: #64656985;
    border-radius: 24px;
	padding: 56px 48px;
	position: relative;
    z-index: 2;
}

.cta-inner {
	text-align: center;
}

.cta-title {
	font-size: 54px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 48px;
	line-height: 61px;
}

.cta-img {
	position: absolute;
}

.cta-img.img1 {
    right: 0;
    bottom: -30%;
	z-index: 3;
}

.cta-img.img2 {
	left: -5%;
    top: -38%;
}

.cta-img.img3 {
	right: 18%;
    bottom: -30%;
}

.cta-btn {
	background: #FF5900;
	border-color: #FF5900;
}

.cta-btn:hover {
	background: #e84e00;
	border-color: #e84e00;
}


/* Article END*/

/* Адаптив */
@media (max-width: 1240px) {
	.hero-content .footer-social {
		justify-content: flex-start;
	}

}

@media (max-width: 1024px) {
	.blog-hero {
		gap: 33px;
	}

	.banner-media {
		max-width: 332px;
		
	}

	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.seo-banner-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.article-related .blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.blog-hero {
		flex-direction: column-reverse;
		padding: 20px 0 32px;
		gap: 21px;
	}

	.blog-hero.author {
		flex-direction: column;
	}

	.card-tag {
		font-size: 11px;
	}
	
	.meta-text {
		font-size: 13px;
	}
	
	.card-content h3 {
		font-size: 22px;
	}

	.card-more,
	.card-description {
		font-size: 14px;
		line-height: 18px;
	}

	.seo-banner {
		grid-template-columns: minmax(0, 1fr);
		padding: 16px;
	}

	.seo-banner::before {
		height: 40%;
		width: 100%;
        right: 0;
	}

	.seo-banner-content {
		order: 2;
	}

	.seo-banner-media {
		max-height: 266px;
		margin-bottom: 16px;
		order: 1;
	}

	.seo-banner h2 {
		font-size: 28px;
	}

	.seo-banner .subtitle {
		font-size: 14px;
	}

	.seo-banner-item h4 {
		font-size: 20px;
	}

	.seo-banner-item p {
		font-size: 14px;
	}

	.seo-banner-actions {
		flex-direction: column;
	}

	.seo-btn {
		max-width: 100%;
	}

	/* .article-wrapper {
		padding-bottom: 48px;
	} */

	.article-related h2 {
		font-size: 28px;
		line-height: 100%;
	}

	.article-inner h3 {
		font-size: 20px;
	}
	
	.article-inner h4 {
		font-size: 18px;
	}

	.article-meta {
		flex-direction: column;
		gap: 8px;
	}

	.article-figure--right {
		float: none;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.article-stats {
		justify-content: center;
	}

	.author-wrap {
		padding-bottom: 120px;
	}

	.article-author-share .avatar {
		width: 72px;
		height: 72px;
	}

	.article-cta {
		padding: 32px 24px;
	}

	.cta-title {
		font-size: 28px;
        line-height: 100%;
	}

	.cta-img.img1 {
		max-width: 135px;
		bottom: -20%;
	}

	.cta-img.img2 {
		max-width: 160px;
		top: -19%;
	}

	.cta-img.img3 {
		max-width: 90px;
		right: 16%;
		bottom: -10%;
	}

	.bubble-item .value-text {
		font-size: 24px;
	}

	.bubble-item .label-text {
		font-size: 14px;
	}
} 


@media (max-width: 640px) {
	.blog-banner {
		padding: 10px 0 32px;
		min-height: 386px;
	}

	.blog-banner.with-bg::before {
		background-image: url('../img/blog-vector-small.svg');
	}

	.blog-banner .container {
		padding: 0 16px;
	}

	.hero-media {
		max-width: 231px;
		align-self: flex-start;
	}

	.hero-content h1 {
		font-size: 36px;
		line-height: 100%;
	}

	.hero-content p {
		font-size: 16px;
		line-height: 22px;
	}

	.blog-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.card-image {
		max-height: 168px;
	}

	.seo-banner {
		border-radius: 0;
	}

	.seo-content h2 {
		font-size: 24px;
		line-height: 24px;
		margin-bottom: 0;
	}

	.seo-content p {
		font-size: 16px;
		line-height: 22px;
	}

	.seo-banner-wrap {
		padding: 48px 0 192px;
	}

	.seo-banner-wrap .container {
		padding: 0;
	}

	.seo-banner {
		grid-template-columns: minmax(0, 1fr);
		padding: 24px 20px;
	}

	.article-title {
		font-size: 26px;
	}

	.article-meta {
		font-size: 12px;
	}

	.contents-list li a {
		font-size: 16px;
	}

	.article-intro p,
	.article-inner p,
	.article-quote p {
		font-size: 16px;
		line-height: 24px;
	}

	.body-title {
		font-size: 20px;
	}

	.bubble.small {
		width: 116px;
		height: 116px;
	}

	.bubble.biggest {
		width: 161px;
		height: 158px;
	}

	.value-text {
		font-size: 24px;
	}

	.bubble.biggest .value-text {
		font-size: 28px;
	}

	.article-related .blog-grid {
		grid-template-columns: 1fr;
	}

	.article-cta {
		border-radius: 0;
		padding: 24px 16px;
	}

	.cta-title {
		font-size: 18px;
	}

	.article-author-share .author-bio {
		font-size: 14px;
	}
	.article-wrap table {
		display: block;
}
}

@media (max-width: 568px) {

	.btn-nav {
		padding: 14px;
	}

	.btn-nav span {
		display: none;
	}

	.btn-nav.back.hide {
		visibility: visible;
	}

	.page-link {
		width: 45px;
		height: 45px;
	}

	.article-share .footer-social {
		justify-content: center;
	}
}
