.artfrance-blog {
	background: #010039;
	color: rgba(255, 255, 255, 0.85);
	font-family: Montserrat, Arial, sans-serif;
	padding: 48px 16px 80px;
	max-width: 1248px;
	margin: 0 auto;
	box-sizing: border-box;
}

.artfrance-blog__crumbs {
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 24px;
	color: rgba(255, 255, 255, 0.55);
}

.artfrance-blog__crumbs a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
}

.artfrance-blog__crumbs a:hover {
	color: #00ffef;
}

.artfrance-blog__title {
	font-size: clamp(40px, 8vw, 72px);
	font-weight: 600;
	line-height: 1;
	margin: 0 0 40px;
	text-transform: uppercase;
	color: #fff;
}

.artfrance-blog__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px 24px;
}

@media (max-width: 959px) {
	.artfrance-blog__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

.artfrance-blog-card {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(1, 0, 57, 0.6);
	text-decoration: none;
	color: inherit;
	min-height: 100%;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.artfrance-blog-card:hover {
	border-color: #00ffef;
	box-shadow: 0 0 24px rgba(0, 255, 239, 0.12);
}

.artfrance-blog-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #020028;
}

.artfrance-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.artfrance-blog-card__body {
	padding: 20px 20px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 12px;
}

.artfrance-blog-card__title {
	font-size: clamp(16px, 2.2vw, 22px);
	font-weight: 600;
	line-height: 1.25;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
}

.artfrance-blog-card__excerpt {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	flex: 1;
}

.artfrance-blog-card__meta {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.artfrance-blog__empty {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.6);
	padding: 32px 0;
}

/*
 * Native WP article — match Tilda Zero article metrics
 * (page148957336: Tektur 32 title, Montserrat 18 lead / 20 body, 822px column).
 */
.artfrance-article {
	--af-article-w: 824px;
	--af-ink: #f6fffe;
	position: relative;
	overflow: hidden;
	background: #010039;
	color: #fff;
	font-family: Montserrat, Arial, sans-serif;
	padding: 24px 24px 100px;
	box-sizing: border-box;
}

/* Blue radial glows — same as decorative shapes in the Tilda article export. */
.artfrance-article::before,
.artfrance-article::after {
	content: "";
	position: absolute;
	width: 3480px;
	height: 3480px;
	border-radius: 50%;
	background: radial-gradient(circle, #087aec 0%, rgba(1, 1, 57, 0) 61%);
	pointer-events: none;
	z-index: 0;
}

/* Positions anchored to viewport center like the Tilda artboard (measured at 1920). */
.artfrance-article::before {
	left: calc(50% - 2661px);
	top: -506px;
}

.artfrance-article::after {
	left: calc(50% - 982px);
	top: 40%;
}

/* Third glow near the bottom of the article (present in export near related/footer). */
.artfrance-article__glow3 {
	position: absolute;
	width: 2700px;
	height: 2700px;
	border-radius: 50%;
	background: radial-gradient(circle, #087aec 0%, rgba(1, 1, 57, 0) 71%);
	left: calc(50% - 1357px);
	bottom: -2510px;
	pointer-events: none;
	z-index: 0;
}

.artfrance-article__inner {
	position: relative;
	z-index: 1;
	width: min(var(--af-article-w), 100%);
	margin: 0;
	max-width: 100%;
}

/* Match Tilda export: content column is a 1260px grid centered in the viewport
   (measured: left = 330px at 1920, 140px at 1540). */
@media (min-width: 1200px) {
	.artfrance-article {
		padding: 159px 420px 80px max(24px, calc((100vw - 1260px) / 2));
	}
}

@media (max-width: 1199px) {
	.artfrance-article {
		padding: 20px 20px 80px;
	}

	.artfrance-article__inner {
		margin: 0;
	}
}

/* Phone/tablet: sticky Tilda header covers the first ~65–70px. */
@media (max-width: 768px) {
	.artfrance-article {
		padding: 88px 16px 80px;
	}
}

/* Crumbs: links 50% white, current title solid white, not a link. */
.artfrance-article__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin: 0 0 32px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.artfrance-article__crumbs a,
.artfrance-article__crumbs a:link,
.artfrance-article__crumbs a:visited {
	color: rgba(255, 255, 255, 0.5) !important;
	text-decoration: none !important;
}

.artfrance-article__crumbs-cur {
	color: #fff;
	min-width: 0;
}

.artfrance-article__crumbs a:hover {
	color: #00ffef !important;
}

.artfrance-article__crumbs-sep {
	display: inline-flex;
	flex-shrink: 0;
	width: 7px;
	height: 12px;
}

.artfrance-article__crumbs-sep svg {
	display: block;
	width: 7px;
	height: 12px;
}

@media (max-width: 768px) {
	.artfrance-article__crumbs {
		gap: 6px 8px;
		margin: 0 0 16px;
		font-size: 12px;
		line-height: 1.35;
	}

	.artfrance-article__crumbs-sep {
		width: 5px;
		height: 8px;
	}

	.artfrance-article__crumbs-sep svg {
		width: 5px;
		height: 8px;
	}

	.artfrance-article__crumbs-cur {
		flex: 1 1 auto;
	}
}

.artfrance-article__title {
	margin: 0 0 20px;
	max-width: 812px;
	font-family: Tektur, Montserrat, Arial, sans-serif;
	font-size: 32px;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--af-ink);
}

.artfrance-article__lead {
	margin: 0 0 18px;
	max-width: 759px;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	color: var(--af-ink);
}

.artfrance-article__toc {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 28px;
	max-width: 760px;
}

.artfrance-article__toc-link {
	display: block;
	padding: 14px 18px;
	border: 1px solid rgba(0, 255, 239, 0.55);
	background: transparent;
	color: #00ffef !important;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.artfrance-article__toc-link:hover {
	border-color: #00ffef;
	background: rgba(0, 255, 239, 0.06);
	color: #00ffef !important;
}

/* Meta row: date flush left, views + reading time pushed to the right (as in export). */
.artfrance-article__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 45px;
	margin: 0 0 14px;
	max-width: var(--af-article-w);
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: rgba(255, 255, 255, 0.7);
}

.artfrance-article__meta-item:first-child {
	margin-right: auto;
}

.artfrance-article__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.artfrance-article__meta-item svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: currentColor;
	stroke: none;
	fill: none;
}

.artfrance-article__cover {
	margin: 0 0 34px;
	max-width: var(--af-article-w);
	overflow: hidden;
	border: 1px solid #fff;
	border-radius: 10px;
	aspect-ratio: 824 / 404;
	box-sizing: border-box;
}

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

.artfrance-article__content {
	max-width: 822px;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	color: #fff;
}

.artfrance-article__content > *:first-child {
	margin-top: 0;
}

.artfrance-article__content p {
	margin: 0 0 1em;
}

.artfrance-article__content a {
	color: #00ffef !important;
}

.artfrance-article__content a:visited {
	color: #00ffef !important;
}

.artfrance-article__content a:hover {
	color: #fff !important;
}

/* H2: double gradient chevron flush with the column edge, text 71px in (export metrics). */
.artfrance-article__content h2 {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 48px 0 18px;
	padding-left: 0;
	font-family: Tektur, Montserrat, Arial, sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 38px;
	color: #fff;
	text-transform: none;
	scroll-margin-top: 140px;
}

.artfrance-h2-arrow {
	display: flex;
	gap: 2px;
	flex: 0 0 46px;
	width: 46px;
	height: 38px;
}

.artfrance-h2-arrow svg {
	display: block;
	width: 22px;
	height: 38px;
}

.artfrance-article__content h3 {
	margin: 32px 0 14px;
	font-family: Tektur, Montserrat, Arial, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	color: #fff;
}

.artfrance-article__content h4 {
	margin: 28px 0 12px;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}

.artfrance-article__content ul,
.artfrance-article__content ol {
	margin: 0 0 1em;
	padding-left: 1.2em;
}

.artfrance-article__content li {
	margin: 0 0 0.4em;
}

.artfrance-article__content li::marker {
	color: #00ffef !important;
}

.artfrance-article__content ol li::marker,
.artfrance-article__content ul li::marker {
	color: #00ffef !important;
}

.artfrance-article__content strong,
.artfrance-article__content b {
	font-weight: 600;
	color: #fff;
}

.artfrance-article__content blockquote {
	margin: 1.4em 0;
	padding: 14px 18px;
	border-left: 2px solid #00ffef;
	background: rgba(0, 255, 239, 0.04);
}

/* Wide tables: horizontal scroll on mobile / narrow screens. */
.artfrance-article__content .artfrance-table-scroll,
.artfrance-article__content figure.wp-block-table {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 1.4em 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 255, 239, 0.55) rgba(255, 255, 255, 0.06);
}

.artfrance-article__content .artfrance-table-scroll::-webkit-scrollbar,
.artfrance-article__content figure.wp-block-table::-webkit-scrollbar {
	height: 6px;
}

.artfrance-article__content .artfrance-table-scroll::-webkit-scrollbar-thumb,
.artfrance-article__content figure.wp-block-table::-webkit-scrollbar-thumb {
	background: rgba(0, 255, 239, 0.55);
	border-radius: 3px;
}

.artfrance-article__content .artfrance-table-scroll table,
.artfrance-article__content figure.wp-block-table table,
.artfrance-article__content table {
	width: max-content;
	min-width: 100%;
	max-width: none;
	border-collapse: collapse;
	margin: 0;
}

.artfrance-article__content table th,
.artfrance-article__content table td {
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	vertical-align: top;
	white-space: nowrap;
}

.artfrance-article__content table th {
	color: #fff;
	font-weight: 600;
	background: rgba(0, 255, 239, 0.08);
}

.artfrance-article__content table td {
	color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 727px) {
	.artfrance-article__content table th,
	.artfrance-article__content table td {
		padding: 8px 12px;
		font-size: inherit;
	}
}

.artfrance-article__content figure.wp-block-image {
	max-width: var(--af-article-w) !important;
	width: min(100%, var(--af-article-w)) !important;
	margin: 1.2em auto;
	border-radius: 10px;
}

.artfrance-article__content figure.wp-block-image img {
	width: 100% !important;
	height: auto !important;
	max-width: 100%;
	object-fit: unset !important;
	border-radius: 10px !important;
	margin: 0 !important;
	display: block;
}

.artfrance-article__content img {
	/* Fallback for images not wrapped by a figure.wp-block-image. */
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 1.2em 0;
}

.artfrance-article__content hr {
	border: 0;
	border-top: 1px solid rgba(0, 255, 239, 0.35);
	margin: 2.2em 0;
}

/* Likes row before comments (export: 48x48 #5587c1 rounded back + heart + counter). */
.artfrance-article__likes {
	position: relative;
	display: flex;
	align-items: center;
	margin: 56px 0 0;
	max-width: var(--af-article-w);
	min-height: 48px;
}

.artfrance-article__likes .js-like-back {
	position: absolute;
	left: 0;
	top: 0;
	width: 48px;
	height: 48px;
	background: #5587c1;
	border-radius: 10px;
}

.artfrance-article__likes .js-like-button {
	position: relative;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	user-select: none;
}

.artfrance-article__likes .js-like-counter {
	margin-left: 24px;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}

.artfrance-article__comments {
	margin-top: 14px;
	max-width: 824px;
}

/* "Со статьей читают" — matched to export: 400x465 cards, SVG frame with 64px
   bottom-right chamfer, white 6% fill / white 30% stroke, image 400x250 flush top. */
.artfrance-article__related {
	margin-top: 64px;
	max-width: 828px;
}

.artfrance-article__related-title {
	margin: 0 0 26px;
	font-family: Tektur, Montserrat, Arial, sans-serif;
	font-size: 32px;
	font-weight: 600;
	line-height: 38px;
	color: #f6fffe;
	text-transform: uppercase;
}

.artfrance-article__related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 400px));
	gap: 29px 28px;
}

.artfrance-related-card {
	position: relative;
	display: block;
	box-sizing: border-box;
	min-height: 465px;
	padding: 0 0 64px;
	text-decoration: none;
	color: #f6fffe;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 465' preserveAspectRatio='none' fill='none'%3E%3Cpath d='M390 0C395.5 0 400 4.5 400 10V401L336 465H10C4.5 465 0 460.5 0 455V10C0 4.5 4.5 0 10 0H390Z' fill='white' fill-opacity='0.06'/%3E%3Cpath d='M390 0.5C395.2 0.5 399.5 4.8 399.5 10V400.8L335.8 464.5H10C4.8 464.5 0.5 460.2 0.5 455V10C0.5 4.8 4.8 0.5 10 0.5H390Z' stroke='white' stroke-opacity='0.3'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: filter 0.2s ease;
}

.artfrance-related-card:hover {
	filter: brightness(1.2);
}

/* White 31x31 corner brackets — top-right and bottom-left, flush with card edges. */
.artfrance-related-card::before,
.artfrance-related-card::after {
	content: "";
	position: absolute;
	width: 31px;
	height: 31px;
	background-repeat: no-repeat;
	background-size: 31px 31px;
	pointer-events: none;
	z-index: 1;
}

.artfrance-related-card::before {
	top: 0;
	right: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31 31' fill='none'%3E%3Cpath d='M0 0.97L20.34 0.97C25.69 0.97 30.03 5.31 30.03 10.66L30.03 31' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.artfrance-related-card::after {
	left: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31 31' fill='none'%3E%3Cpath d='M30.53 29.12L10.33 29.12C5.15 29.12 0.94 24.92 0.94 19.73L0.94 0' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.artfrance-related-card__media {
	height: 250px;
	overflow: hidden;
	background: #020028;
	border-radius: 10px 10px 0 0;
}

.artfrance-related-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.artfrance-related-card__media--empty {
	background: linear-gradient(135deg, rgba(0, 255, 239, 0.08), rgba(1, 0, 57, 0.9));
}

.artfrance-related-card__body {
	padding: 25px 16px 0 17px;
}

.artfrance-related-card__date {
	font-family: Montserrat, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
	text-transform: uppercase;
	color: #f6fffe;
}

.artfrance-related-card__title {
	margin: 8px 0 0;
	font-family: Tektur, Montserrat, Arial, sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	text-transform: uppercase;
	color: #f6fffe;
}

.artfrance-related-card__read {
	position: absolute;
	left: 19px;
	bottom: 25px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	line-height: 1;
	color: #fff;
}

.artfrance-related-card__read svg {
	width: 16px;
	height: 16px;
	color: #fff;
}

/* Kill Tilda footer overflow (decorative shape taller than artboard). */
body.artfrance-native-article #rec2375220021,
body.artfrance-native-article #rec2375220021 .t396,
body.artfrance-native-article #rec2375220021 .t396__artboard {
	overflow: hidden !important;
}

body.artfrance-native-article #rec2375220021 .t396__artboard {
	height: 511px !important;
	max-height: 511px !important;
}

body.artfrance-native-article #allrecords {
	overflow: clip;
}

@media (max-width: 727px) {
	.artfrance-article__title {
		font-size: 26px;
		line-height: 1.2;
	}

	.artfrance-article__content,
	.artfrance-article__content h2 {
		font-size: 18px;
		line-height: 1.45;
	}

	.artfrance-article__content h2 {
		font-size: 24px;
		line-height: 1.3;
	}

	.artfrance-article__related-grid {
		grid-template-columns: 1fr;
	}

	.artfrance-article__related-title {
		font-size: 24px;
	}
}

/* FAQ accordion (end of native articles). */
.artfrance-faq {
	max-width: var(--af-article-w);
	width: min(100%, var(--af-article-w));
	margin: 0 auto;
	padding-top: 8px;
}

.artfrance-faq h2 {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 48px 0 24px;
	padding-left: 0;
	font-family: Tektur, Montserrat, Arial, sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 38px;
	color: #fff;
	scroll-margin-top: 140px;
}

.artfrance-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.artfrance-faq__item {
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.13);
	background: rgba(10, 17, 72, 0.35);
	transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.artfrance-faq__item.is-open {
	border-color: rgba(0, 255, 239, 0.45);
	background: linear-gradient(180deg, rgba(0, 255, 239, 0.07), rgba(10, 17, 72, 0.35));
	box-shadow: 0 0 0 1px rgba(0, 255, 239, 0.12), 0 18px 40px -24px rgba(0, 0, 0, 0.9);
}

.artfrance-faq__q {
	all: unset;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	padding: 22px 26px;
	cursor: pointer;
}

.artfrance-faq__q:hover {
	background: rgba(0, 255, 239, 0.04);
}

.artfrance-faq__q:focus-visible {
	outline: 2px solid #00ffef;
	outline-offset: -2px;
}

.artfrance-faq__num {
	font-family: Montserrat, Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #00ffef;
	min-width: 24px;
}

.artfrance-faq__title {
	flex: 1;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	text-wrap: pretty;
}

.artfrance-faq__icon {
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
	flex-shrink: 0;
	color: rgba(255, 255, 255, 0.55);
	transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms ease;
}

.artfrance-faq__item.is-open .artfrance-faq__icon {
	color: #00ffef;
	transform: rotate(45deg);
}

.artfrance-faq__a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.artfrance-faq__item.is-open .artfrance-faq__a {
	grid-template-rows: 1fr;
}

.artfrance-faq__a > div {
	overflow: hidden;
}

.artfrance-faq__a p {
	margin: 0;
	padding: 0 26px 26px 70px;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
}

.artfrance-faq__a a {
	color: #00ffef !important;
	text-decoration: none;
}

.artfrance-faq__a a:hover {
	color: #fff !important;
}

@media (max-width: 727px) {
	.artfrance-faq h2 {
		font-size: 24px;
		line-height: 1.3;
		margin-top: 36px;
	}

	.artfrance-faq__list {
		gap: 10px;
	}

	.artfrance-faq__q {
		align-items: flex-start;
		gap: 12px;
		padding: 16px;
		min-height: 56px;
	}

	.artfrance-faq__num {
		font-size: 12px;
		padding-top: 3px;
	}

	.artfrance-faq__title {
		font-size: 16px;
	}

	.artfrance-faq__icon {
		font-size: 30px;
	}

	.artfrance-faq__a p {
		padding: 0 16px 18px 40px;
		font-size: 15px;
		line-height: 1.6;
	}
}

/* Bottom banner: like/comment match the Share button size and outline. */
body.artfrance-native-article .bottom-banner-actions {
	align-items: center;
	gap: 8px !important;
}

body.artfrance-native-article .bottom-banner-item,
body.artfrance-native-article .share-btn {
	box-sizing: border-box !important;
	height: 32px !important;
	min-height: 32px !important;
	padding: 0 14px !important;
	border-radius: 0 !important;
	border: 1px solid rgba(0, 255, 239, 0.3) !important;
	color: #00ffef !important;
	background: transparent !important;
	line-height: 1 !important;
}

body.artfrance-native-article .bottom-banner-item {
	gap: 6px !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	font-size: 13px !important;
}

body.artfrance-native-article .bottom-banner-item:hover,
body.artfrance-native-article .share-btn:hover {
	background: rgba(0, 255, 239, 0.1) !important;
	border-color: #00ffef !important;
	color: #00ffef !important;
	transform: none !important;
}

body.artfrance-native-article .bottom-banner-item .icon {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 14px !important;
	height: 14px !important;
	font-size: 0 !important;
	line-height: 0 !important;
}

body.artfrance-native-article .bottom-banner-item .icon svg {
	width: 14px !important;
	height: 14px !important;
	display: block;
	overflow: visible;
}

body.artfrance-native-article .bottom-banner-item .count {
	color: #00ffef !important;
	font-weight: 500 !important;
	font-size: 13px !important;
	line-height: 1 !important;
	min-width: 0 !important;
}

body.artfrance-native-article .bottom-banner-item.liked,
body.artfrance-native-article .bottom-banner-item.liked:hover {
	color: #00ffef !important;
}

body.artfrance-native-article .bottom-banner-item.liked .count {
	color: #00ffef !important;
}

body.artfrance-native-article .bottom-banner-item.liked .icon svg {
	fill: #00ffef;
	stroke: #00ffef;
}

@media (max-width: 768px) {
	body.artfrance-native-article .bottom-banner-item,
	body.artfrance-native-article .share-btn {
		height: 28px !important;
		min-height: 28px !important;
		padding: 0 10px !important;
	}

	body.artfrance-native-article .bottom-banner-item .icon,
	body.artfrance-native-article .bottom-banner-item .icon svg {
		width: 13px !important;
		height: 13px !important;
	}

	body.artfrance-native-article .bottom-banner-item .count {
		font-size: 12px !important;
	}
}
