/* ver 21.11.2025 */
/* Fonts */
:root {
	--accent-color: #1f1b33;
}

@font-face {
	font-family: 'Inter';
	src: url('../font/Inter-Medium.woff2') format('woff2'),
		url('../font/Inter-Medium.woff') format('woff'),
		url('../font/Inter-Medium.ttf') format('truetype'),
		url('../font/Inter-Medium.eot');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../font/Inter-Regular.woff2') format('woff2'),
		url('../font/Inter-Regular.woff') format('woff'),
		url('../font/Inter-Regular.ttf') format('truetype'),
		url('../font/Inter-Regular.eot');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../font/Inter-SemiBold.woff2') format('woff2'),
		url('../font/Inter-SemiBold.woff') format('woff'),
		url('../font/Inter-SemiBold.ttf') format('truetype'),
		url('../font/Inter-SemiBold.eot');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'OpenSans';
	src: url('../font/OpenSans-Regular.woff2') format('woff2'),
		url('../font/OpenSans-Regular.woff') format('woff'),
		url('../font/OpenSans-Regular.ttf') format('truetype'),
		url('../font/OpenSans-Regular.eot');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'OpenSans';
	src: url('../font/OpenSans-SemiBold.woff2') format('woff2'),
		url('../font/OpenSans-SemiBold.woff') format('woff'),
		url('../font/OpenSans-SemiBold.ttf') format('truetype'),
		url('../font/OpenSans-SemiBold.eot');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: url('../font/Roboto-Medium.woff2') format('woff2'),
		url('../font/Roboto-Medium.woff') format('woff'),
		url('../font/Roboto-Medium.ttf') format('truetype'),
		url('../font/Roboto-Medium.eot');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: url('../font/Roboto-Regular.woff2') format('woff2'),
		url('../font/Roboto-Regular.woff') format('woff'),
		url('../font/Roboto-Regular.ttf') format('truetype'),
		url('../font/Roboto-Regular.eot');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SFProDisplay';
	src: url('../font/SFProDisplay-Bold.woff2') format('woff2'),
		url('../font/SFProDisplay-Bold.woff') format('woff'),
		url('../font/SFProDisplay-Bold.ttf') format('truetype'),
		url('../font/SFProDisplay-Bold.eot');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

* {
	box-sizing: border-box;
}

html,
body {
	scrollbar-gutter: stable;
}

body {
	font-family: 'Inter';
	font-weight: 400;
	color: #1d1d1f;
}

.widget {
	list-style: none;
}

.header {
	padding: 24px 16px 16px 16px;
	background: #fff;
	box-shadow: 0px 8px 24px 0px rgba(36, 32, 31, 0.1);
	transition: all 0.4s;
}

.header .wrapper {
	max-width: 1360px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
}

.header .wrapper .logo {
	width: 150px;
	height: 40px;
}

.header .wrapper .logo a {
	display: block;
	width: 100%;
	height: 100%;
}

.theme-switch {
	position: relative;
	display: inline-block;
	width: 58px;
	height: 31px;
}

.theme-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.logo .black-logo,
.article-footer-logo .black-logo {
	display: none;
}

.slider {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 100px;
	background: rgba(120, 120, 128, 0.16);
	cursor: pointer;
	transition: 0.4s;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2px;
}

.slider::before {
	content: '';
	position: absolute;
	display: flex;
	width: 27px;
	height: 27px;
	padding: 6px 6px 5px 6px;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	background-image: url(../image/sun.svg);
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: 13px;
	background-position: center;
	box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04),
		0px 3px 8px 0px rgba(0, 0, 0, 0.15), 0px 3px 1px 0px rgba(0, 0, 0, 0.06);
	left: 2px;
	transition: all 0.4s;
}

input:checked + .slider {
	background: rgba(120, 120, 128, 0.16);
}

input:checked + .slider::before {
	transform: translateX(27px);
}

.nav {
	display: flex;
	position: relative;
	gap: 8px;
}

.nav-list {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	align-items: center;
	overflow: hidden;
}

.more {
	display: none;
	position: relative;
}

.more-btn {
	cursor: pointer;
	background: transparent;
	padding: 0;
	border: none;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-list li {
	display: flex;
	padding: 4px 16px;
	justify-content: center;
	align-items: center;
	border-radius: 36px;
	background: #efefef;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.4s;
}

.nav-list li a {
	color: #1d1d1f;
	font-family: 'OpenSans';
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	text-decoration: none;
	transition: all 0.4s;
}

.nav-list li.nav-list--active {
	border: 1px solid #9f9f9f;
	background: transparent;
}

.nav-list li.nav-list--active a {
	color: #ec2d1c;
}

.nav-list li:hover {
	border: 1px solid #9f9f9f;
	background: transparent;
}

.nav-list li:hover a {
	color: #ec2d1c;
}

.dropdown {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 96px;
	border-radius: 8px;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
	background: #fff;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	z-index: 1000;
}

.dropdown li {
	display: flex;
	padding: 8px 16px;
	align-items: center;
	justify-content: center;
}

.dropdown li a {
	color: #1d1d1f;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
}

.more.active .dropdown {
	display: block;
}

.dropdown.visible {
	display: flex;
	flex-direction: column;
}

.main-page {
	padding: 32px 16px 32px 16px;
	transition: all 0.4s;
}

.main-page {
	display: block;
	max-width: 1236px;
	margin: 0 auto;
}

.grid-main {
	padding: 32px 16px 32px 16px;
	transition: all 0.4s;
}

.grid-main .wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	max-width: 1236px;
	margin: 0 auto;
}

.card {
	text-decoration: none;
	display: grid;
	transition: all 0.4s;
	text-decoration: none;
}

.card.half {
	min-width: 100%;
	flex: 1;
	min-height: 300px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.half-content {
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: calc(100% - 20px);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.5);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	padding: 8px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 103px;
	gap: 16px;
	z-index: 3;
	transition: all 0.4s;
}

.half-title {
	color: #1d1d1f;
	font-size: 14px;
	font-weight: 500;
	line-height: 140%;
	transition: all 0.4s;
}

.half-content--box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.half-content--author {
	display: flex;
	align-items: center;
	gap: 4px;
}

.half-content--author img {
	width: 16px;
	height: 16px;
	border-radius: 100px;
	overflow: hidden;
}

.half-content--name {
	color: rgba(0, 0, 0, 0.6);
	font-size: 10px;
	font-weight: 500;
	line-height: 150%;
	text-transform: none;
	transition: all 0.4s;
}
/*.half-content--name::first-letter {
	text-transform: uppercase;
}*/

.half-content--date {
	color: rgba(0, 0, 0, 0.6);
	font-size: 10px;
	font-weight: 500;
	line-height: 150%;
	text-transform: capitalize;
	transition: all 0.4s;
}

.half-image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	position: relative;
	max-height: 300px;
}

.half-content--img {
	position: relative;
	width: 100%;
	height: 100%;
}

.half-content--img::before {
	content: '';
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.08) 0%,
		rgba(0, 0, 0, 0.08) 100%
	);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.card.quarter {
	flex: 1;
	min-height: 300px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.quarter-box {
	display: flex;
	padding: 10px 10px 18px 10px;
	flex-direction: column;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}

.quarter-content--img {
	width: 100%;
	height: 170px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.quarter-box-two .quarter-content--img {
	height: 175px;
}

.quarter-box-two {
	background: #000000;
}

.quarter-box-two .quarter-title,
.quarter-box-two .quarter-content--name,
.quarter-box-two time {
	color: #fffefe;
}

.dark-mode .quarter-box-two {
	background: #ffffff !important;
}

.dark-mode .quarter-box-two .quarter-title,
.dark-mode .quarter-box-two .quarter-content--name,
.dark-mode .quarter-box-two time {
	color: #0d0d0d !important;
}

.quarter-content--img::before {
	content: '';
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.08) 0%,
		rgba(0, 0, 0, 0.08) 100%
	);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: all 0.4s;
}

.quarter-content--img img,
.quarter-content--img video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.card--play {
	background: url(../image/play-btn.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 56px;
	height: 56px;
	position: absolute;
	padding: 0;
	border: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}

.quarter-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 12px;
	height: calc(100% - 170px);
	gap: 8px;
}

.quarter-box-two .quarter-content {
	height: 16px;
	gap: 2px;
}

.quarter-title {
	display: -webkit-box;
	height: 70px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #1d1d1f;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	transition: all 0.4s;
}
/*
.quarter-title::first-letter {
	text-transform: uppercase;
}*/

.quarter-box-two .quarter-title {
	height: 70px;
	padding-bottom: 4px;
}

.quarter-content--box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.quarter-content--author {
	display: flex;
	align-items: center;
	gap: 4px;
}

.quarter-content--author img {
	width: 16px;
	height: 16px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
	overflow: hidden;
}

.quarter-box-two .quarter-content--author {
	height: 16px;
}

.quarter-content--name {
	color: rgba(0, 0, 0, 0.6);
	font-size: 10px;
	font-weight: 500;
	line-height: 150%;
	text-transform: none;
	transition: all 0.4s;
}
/*.quarter-content--name::first-letter {
	text-transform: uppercase;
}*/

.quarter-content--date {
	color: rgba(0, 0, 0, 0.6);
	font-size: 10px;
	font-weight: 500;
	line-height: 150%;
	text-transform: capitalize;
	transition: all 0.4s;
}

.quarter-list {
	border-radius: 12px;
	background: #fff;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
	padding: 16px;
	text-decoration: none;
}

.quarter-list--box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 12px 0;
	border-bottom: 1px solid #efefef;
	text-decoration: none;
}

.quarter-list--box:nth-of-type(1) {
	padding-top: 0;
}

.quarter-list--box:nth-last-of-type(1) {
	border-bottom: 0;
}

.quarter-list--right {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.quarter-list--right img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.quarter-list--right::before {
	content: '';
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.08) 0%,
		rgba(0, 0, 0, 0.08) 100%
	);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.quarter-list--left {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.quarter-list--avatar {
	display: flex;
	align-items: center;
	gap: 4px;
}

.quarter-list--avatar img {
	width: 16px;
	height: 16px;
	border-radius: 100px;
	overflow: hidden;
}

.quarter-list--text {
	color: rgba(0, 0, 0, 0.6);
	font-size: 10px;
	font-weight: 500;
	line-height: 150%;
	text-transform: none;
	transition: all 0.4s;
}

.quarter-list--title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: 90px;
	overflow-y: hidden;
	color: #1d1d1f;
	font-size: 14px;
	font-weight: 500;
	line-height: 150%;
	text-transform: none;
	transition: all 0.4s;
}
/*
.quarter-list--title::first-letter {
	text-transform: uppercase;
}*/

.grid-main .wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 12px;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
}

.card {
	width: 100%;
}

.card.quarter {
	grid-column: span 1;
}

.card.half {
	grid-column: span 2;
}

.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 4px 16px;
	transition: transform 0.3s ease-in-out;
	background: #fff;
	box-shadow: 8px 0px 24px 0px rgba(36, 32, 31, 0.1);
	z-index: 10;
}

.footer.hidden {
	transform: translateY(100%);
}

.footer .wrapper {
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.footer .wrapper p {
	color: #1d1d1f;
	font-size: 11px;
	font-weight: 400;
	text-transform: capitalize;
	transition: all 0.4s;
	white-space: nowrap;
}

.footer__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
}

.footer__list a {
	text-decoration: none;
	color: #1d1d1f;
	font-size: 11px;
	font-weight: 400;
	text-transform: capitalize;
	transition: all 0.4s;
}

/* Dark Mode */

.dark-mode .slider::before {
	background-image: url(../image/moon.svg);
	background-color: #0d0d0d;
	background-size: 16px;
}

.dark-mode .header,
body.dark-mode {
	background: #191919;
}

.dark-mode .footer {
	background: #191919;
	box-shadow: 8px 0px 24px 0px rgba(36, 32, 31, 0.1);
}

.dark-mode .white-logo {
	display: none;
}

.dark-mode .black-logo {
	display: block;
}

.dark-mode .wrapper p {
	color: #e0e0e2;
}

.dark-mode .footer__list a {
	color: #e0e0e2;
}

.dark-mode .quarter-box {
	background: #191919;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}

.dark-mode .quarter-title {
	color: #e0e0e2;
}

.dark-mode .quarter-content--name {
	color: rgba(255, 255, 255, 0.6);
}

.dark-mode .quarter-content--date {
	color: rgba(255, 255, 255, 0.6);
}

.dark-mode .quarter-list {
	background: #191919;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}

.dark-mode .quarter-list--text {
	color: rgba(255, 255, 255, 0.6);
}

.dark-mode .quarter-list--title {
	color: #e0e0e2;
}

.dark-mode .quarter-list--box {
	border-bottom: 1px solid #2d2d2d;
}

.dark-mode .quarter-list--box:nth-last-of-type(1) {
	border-bottom: 0;
}

.dark-mode .grid-main {
	background: #0d0d0d;
}

.dark-mode .half-title {
	color: #e0e0e2;
}

.dark-mode .half-content--name {
	color: rgba(255, 255, 255, 0.6);
}

.dark-mode .half-content--date {
	color: rgba(255, 255, 255, 0.6);
}

.dark-mode .half-content {
	background: rgba(13, 13, 13, 0.5);
}

.dark-mode .nav-list li {
	background: #303030;
}

.dark-mode .nav-list li a {
	color: #e0e0e2;
}

.dark-mode .nav-list li.nav-list--active a {
	color: #ec2d1c;
}

.dark-mode .nav-list li:hover a {
	color: #ec2d1c;
}

.dark-mode .more-btn img {
	-webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(7%)
		saturate(24%) hue-rotate(202deg) brightness(94%) contrast(91%);
	filter: brightness(0) saturate(100%) invert(96%) sepia(7%) saturate(24%)
		hue-rotate(202deg) brightness(94%) contrast(91%);
}

.dark-mode .header-banner {
	background: #0d0d0d;
}

.dark-mode .header-banner .wrapper p {
	color: #0d0d0d;
}

.dark-mode .article-main {
	background: #0d0d0d;
}

.dark-mode .breadcrumbs li a,
.dark-mode .breadcrumbs li span {
	color: #e0e0e2;
}

.dark-mode .breadcrumbs li::after {
	-webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(15%)
		saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
	filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%)
		hue-rotate(140deg) brightness(93%) contrast(90%);
}

.dark-mode .article-info-box img {
	-webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(15%)
		saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
	filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%)
		hue-rotate(140deg) brightness(93%) contrast(90%);
}

.dark-mode .article-title {
	color: #e0e0e2;
}

.dark-mode .article-info-box {
	color: #e0e0e2;
}

.dark-mode .article-sub-title {
	color: #e0e0e2;
}

.dark-mode .article-sub-text {
	color: #e0e0e2;
}

.dark-mode .article-sub-text p {
	color: #e0e0e2;
}

.dark-mode .article-sub-text span,
.dark-mode .article-sub-text a {
	color: #e0e0e2;
}

.dark-mode .article-autor-name {
	color: #e0e0e2;
}

.dark-mode .article-autor-post {
	color: #e0e0e2;
}

.dark-mode .article-sub {
	color: #e0e0e2;
}

.dark-mode .article-footer {
	background: #191919;
}

.dark-mode .article-social ul li a img {
	-webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(15%)
		saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
	filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%)
		hue-rotate(140deg) brightness(93%) contrast(90%);
}

.dark-mode .article-footer-nav ul li::before {
	-webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(15%)
		saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
	filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%)
		hue-rotate(140deg) brightness(93%) contrast(90%);
}

.dark-mode .article-footer-nav ul li a {
	color: #e0e0e2;
}

.dark-mode .article-center__banner p {
	color: #0d0d0d;
}

.dark-mode .article-video .article-video-content {
	background: #191919;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}

.dark-mode .article-video-text {
	color: #e0e0e2;
}

.header-banner {
	padding: 16px 0;
	transition: all 0.4s;
	display: none;
}

.header-banner .wrapper {
	width: 320px;
	height: 50px;
	margin: 0 auto;
	position: relative;
}

.header-banner__blur {
	width: 100%;
	height: 100%;
}

.header-banner__blur img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.header-banner .wrapper p {
	color: #fff;
	text-align: center;
	font-family: 'Roboto';
	font-size: 16.667px;
	font-weight: 500;
	text-transform: capitalize;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.4s;
}

.article-left-sidebar {
	display: none;
}

.article-right-sidebar {
	display: none;
}

.article-big__img {
	height: 343px;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 32px;
}

.article-big__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.article-center__banner {
	margin: 0 12px 0 12px;
	height: 50px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.article-center__banner img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.article-center__banner p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: #fff;
	text-align: center;
	font-family: 'Roboto';
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	transition: all 0.4s;
}

.breadcrumbs {
	padding: 24px 0;
	display: flex;
	align-items: center;
}

.breadcrumbs li {
	display: flex;
	align-items: center;
}

.breadcrumbs li a,
.breadcrumbs li span {
	color: #1d1d1f;
	font-size: 12px;
	line-height: 150%;
	text-decoration: none;
	transition: all 0.4s;
}

.breadcrumbs li::after {
	content: '';
	background-image: url(../image/breadcrumbs.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 16px;
	height: 12px;
	display: flex;
}

.breadcrumbs li:nth-last-of-type(1)::after {
	content: none;
}

.article-main {
	padding: 16px 16px 40px 16px;
	transition: all 0.4s;
}

.article-title {
	color: #1d1d1f;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 16px;
	transition: all 0.4s;
}

.article-info {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.article-info-box {
	display: flex;
	align-items: center;
	gap: 4px;
	color: rgba(0, 0, 0, 0.6);
	font-size: 12px;
	font-weight: 400;
	line-height: 150%;
	transition: all 0.4s;
}

.article-info-box img {
	width: 24px;
	height: 24px;
	-o-object-fit: contain;
	object-fit: contain;
}

.article-sub-title {
	color: #101828;
	font-size: 20px;
	font-weight: 900;
	line-height: 38px;
	margin-bottom: 24px;
	transition: all 0.4s;
}

.article-sub-text {
	color: #242424;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	word-wrap: break-word;
	margin-bottom: 32px;
	transition: all 0.4s;
}

.article-sub-text p {
	color: #242424;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	transition: all 0.4s;
}

.article-sub-text span,
.article-sub-text a {
	color: #242424;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	text-decoration: underline;
	transition: all 0.4s;
}

.article-sub-text a {
	color: #1800b1;
}

.article-info-card {
	display: flex;
	gap: 12px;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
}

.article-info-card .card {
	display: none;
}

.article-info-card .card:nth-last-of-type(1) {
	display: block;
}

.article-info-card {
	margin-bottom: 32px;
}

.article-center__banner2 {
	margin-bottom: 32px;
}

.article-autor {
	display: flex;
	padding: 8px 16px;
	align-items: center;
	gap: 16px;
	align-self: stretch;
	justify-content: space-between;
	border-radius: 8px;
	border: 1px solid #e1e1e1;
}

.article-autor-box {
	display: flex;
	align-items: center;
	gap: 16px;
	align-self: stretch;
}

.article-autor-box img {
	width: 48px;
	height: 48px;
	-o-object-fit: contain;
	object-fit: contain;
	border-radius: 8px;
	overflow: hidden;
}

.article-autor-name {
	color: #242424;
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	transition: all 0.4s;
}

.article-autor-post {
	color: rgba(0, 0, 0, 0.6);
	font-size: 10px;
	font-weight: 400;
	line-height: 150%;
	transition: all 0.4s;
}

.article-main-wrapper {
	margin-bottom: 32px;
}

.article-sponsored {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 32px;
}

.article-sponsored:nth-last-of-type(1) {
	margin-bottom: 0;
}

.article-sub {
	color: #101828;
	font-size: 20px;
	font-weight: 900;
	line-height: 38px;
	transition: all 0.4s;
}

.article-sponsored-box {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 12px;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
}

.article-footer {
	background: #fff;
	box-shadow: 10px 5px 24px 0px rgba(36, 32, 31, 0.1);
	transition: all 0.4s;
}

.article-footer .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	padding: 40px 16px 0 16px;
}

.article-footer-top {
	display: flex;
	width: 90%;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	align-self: stretch;
}

.article-footer-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	align-self: stretch;
}

.article-footer-logo {
	width: 150px;
	height: 40px;
}

.article-footer-logo a {
	display: block;
	width: 100%;
	height: 100%;
}

.article-footer-logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.article-footer-col p {
	color: rgba(0, 0, 0, 0.6);
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}

.article-social {
	display: flex;
	align-items: center;
	gap: 14px;
}

.article-social p {
	color: #1d1d1f;
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
}

.article-social ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.article-social ul li a img {
	width: 24px;
	height: 24px;
	-o-object-fit: contain;
	object-fit: contain;
}

.article-footer-nav ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
	flex: 1 0 0;
}

.article-footer-nav ul li::before {
	content: '';
	background-image: url(../image/breadcrumbs.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
}

.article-footer-nav ul li {
	display: flex;
	align-items: center;
	gap: 4px;
}

.article-footer-nav ul li a {
	color: rgba(0, 0, 0, 0.6);
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	text-decoration: none;
	transition: all 0.4s;
}

.article-footer-tag {
	display: flex;
	align-items: center;
	align-content: center;
	gap: 14px;
	align-self: stretch;
	flex-wrap: wrap;
}

.article-footer-tag li a {
	display: flex;
	padding: 10px 24px;
	align-items: center;
	gap: 12px;
	border: none;
	border-radius: 50px;
	font-family: 'Inter';
	background: #efefef;
	color: #1d1d1f;
	font-size: 14px;
	font-weight: 500;
	line-height: 150%;
	text-decoration: none;
}

.article-footer-bottom {
	display: flex;
	padding: 24px 0px;
	width: 90%;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	gap: 16px;
	align-self: stretch;
	border-top: 1px solid #d6d6d6;
}

.article-footer-bottom p {
	color: #1d1d1f;
	font-size: 12px;
	font-weight: 400;
	text-transform: capitalize;
}

.article-footer-bottom .footer__list a {
	font-size: 12px;
}

.article-footer-bottom .footer__list {
	justify-content: center;
}

.article-video {
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
	margin-bottom: 24px;
}

.article-video .quarter-content--img {
	height: 220px;
	border-radius: 12px 12px 0px 0px;
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.08) 0%,
		rgba(0, 0, 0, 0.08) 100%
	);
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
	cursor: pointer;
}

.article-video .article-video-content {
	display: flex;
	padding: 16px;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
	border-radius: 0px 0px 8px 8px;
	background: rgba(255, 255, 255, 0.5);
	transition: all 0.4s;
}

.article-video-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	align-self: stretch;
	overflow: hidden;
	color: #1d1d1f;
	text-overflow: ellipsis;
	font-size: 16px;
	font-weight: 900;
	line-height: 140%;
	transition: all 0.4s;
}

.article-video .quarter-content--box {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
}

.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.popup-content {
	position: relative;
	background: #fff;
	border-radius: 10px;
	max-width: 800px;
	width: 100%;
	max-height: 500px;
	height: 100%;
	text-align: center;
}

.popup-content iframe {
	width: 100%;
	height: 100%;
	max-width: 100%;
}

.popup-close {
	position: absolute;
	top: -10px;
	right: -10px;
	color: #0d0d0d;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	font-size: 16px;
	border-radius: 5px;
}

.article-left-sidebar {
	min-width: 220px;
	max-width: 300px;
	width: 100%;
}

.article-right-sidebar {
	min-width: 220px;
	max-width: 300px;
	width: 100%;
}

.article-center {
	flex: 1;
}

.half-content--img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1067px) {
	.grid-main .wrapper {
		grid-template-columns: repeat(2, minmax(250px, 1fr));
		max-width: 834px;
	}

	.main-page {
		max-width: 834px;
	}

	.card.half {
		grid-column: span 2;
	}
}

@media (min-width: 1068px) {
	.grid-main .wrapper {
		grid-template-columns: repeat(4, minmax(250px, 1fr));
	}

	.card.half {
		grid-column: span 2;
	}
}

@media (min-width: 1279px) {
	.grid-main .wrapper {
		grid-template-columns: repeat(4, minmax(250px, 1fr));
	}

	.card.half {
		grid-column: span 2;
	}

	.article-main .article-center {
		min-width: 728px;
	}
}

@media (max-width: 576px) {
	.grid-main .wrapper {
		grid-template-columns: 1fr;
	}

	.main-page {
		grid-template-columns: 1fr;
	}

	.card {
		grid-column: span 1;
	}

	.card.half {
		grid-column: span 1;
	}
}

@media (max-width: 1067px) {
	.grid-main .wrapper {
		max-width: 834px;
	}

	.main-page {
		max-width: 834px;
	}
}

@media (min-width: 1200px) {
	.header .wrapper {
		gap: 40px;
	}

	.grid-main .wrapper {
		max-width: 1236px;
	}

	.main-page {
		max-width: 1236px;
	}

	.article-info-card {
		display: none;
	}

	.article-center__banner2 {
		display: none;
	}

	.article-left-sidebar {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.article-right-sidebar {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.article-main-wrapper {
		display: flex;
		align-items: flex-start;
		gap: 16px;
		max-width: 1360px;
		margin: 0 auto 40px auto;
	}

	.article-main .article-sponsored {
		max-width: 1360px;
	}

	.article-center {
		min-width: 520px;
	}

	.article-footer .wrapper {
		max-width: 1360px;
		width: 100%;
		margin: 0 auto;
	}

	.article-sponsored-box {
		grid-template-columns: repeat(4, minmax(250px, 1fr));
	}
}

@media (max-width: 768px) {
	.header .wrapper {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
	}

	.nav {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
		justify-content: flex-start;
	}
}

@media (min-width: 768px) {
	.header .wrapper {
		display: flex;
		justify-content: space-between;
	}

	.nav {
		max-width: calc(100% - 288px);
		width: 100%;
	}

	.half-content {
		min-height: 70px;
	}

	.half-title {
		font-size: 16px;
		font-weight: 900;
	}

	.quarter .half-title {
		font-weight: 500;
		font-size: 15px;
	}

	.quarter-title {
		font-size: 16px;
		font-weight: 500;
		line-height: 140%;
	}

	.quarter-list--title {
		font-size: 16px;
		font-weight: 500;
		line-height: 140%;
	}

	.footer .wrapper {
		flex-direction: row;
		justify-content: space-between;
	}

	.footer .wrapper p {
		font-size: 12px;
	}

	.footer__list a {
		font-size: 12px;
	}

	.footer__list {
		justify-content: flex-end;
	}

	.article-info-card .card {
		display: grid;
	}

	.article-footer-col {
		max-width: 352px;
		width: 100%;
	}

	.article-footer-nav {
		max-width: 302px;
		width: 100%;
	}

	.article-footer-tag {
		width: 100%;
		flex: 1;
		min-width: 100%;
	}

	.article-footer-top {
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: center;
		gap: 40px;
	}

	.article-title {
		font-size: 32px;
	}

	.article-sub-title {
		font-size: 24px;
	}

	.article-sub {
		font-size: 24px;
	}

	.article-big__img {
		height: 500px;
	}

	.article-center__banner2 {
		margin-bottom: 24px;
	}

	.article-sponsored {
		max-width: 924px;
		width: 100%;
		margin: 0 auto 32px auto;
	}

	.article-center__banner {
		height: 99px;
	}

	.article-main {
		padding: 32px 16px 40px 16px;
	}

	.article-info-wrapper {
		width: 100%;
		margin: 0 auto;
	}

	.article-info-card {
		max-width: 924px;
		width: 100%;
		margin: 0 auto 32px auto;
	}

	.article-video .quarter-content--img {
		height: 388px;
	}

	.header-banner {
		display: block;
	}
}

@media (min-width: 992px) {
	.article-footer-tag {
		max-width: 358px;
		min-width: auto;
	}

	.article-footer-bottom {
		flex-direction: row;
		justify-content: space-between;
	}

	.article-footer-bottom p {
		white-space: nowrap;
	}

	.article-footer-bottom .footer__list {
		justify-content: flex-end;
	}
}

.article-main-wrapper h1,
.article-main-wrapper h2,
.article-main-wrapper h3,
.article-main-wrapper h4,
.article-main-wrapper h5,
.article-main-wrapper strong,
.article-main-wrapper strong a,
.article-main-wrapper a strong {
	font-weight: 900;
}

.article-main-wrapper em,
.article-main-wrapper em a,
.article-main-wrapper a em {
	font-style: italic;
}

.article-sub-text iframe,
.twitter-tweet {
	text-align: center;
	margin: 0 auto;
	display: block;
	width: -webkit-fill-available;
	width: 100%;
}

.article-sub-text figcaption {
	font-size: 11px;
	font-weight: 400;
	line-height: 120%;
	text-align: center;
	margin: 12px 0;
}

#load-more {
	flex: 1;
	min-height: 300px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

/* Featured Posts Shortcode Styles */
.featured-posts-container {
	max-width: 1236px;
	margin: 0 auto;
	padding: 0px 16px 32px 16px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.featured-post-main {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
	transition: all 0.4s;
	text-decoration: none;
}

.featured-post-image {
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

.featured-post-image .featured-main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.featured-post-main:hover .featured-main-img {
	transform: scale(1.05);
}

.featured-post-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.featured-post-title {
	margin: 0;
	font-size: 24px;
	font-weight: 900;
	line-height: 140%;
	color: #1d1d1f;
	transition: all 0.4s;
}

.featured-post-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.4s;
}

.featured-post-title a:hover {
	color: #ec2d1c;
}

.featured-post-description {
	color: #242424;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	margin: 0;
}

.featured-posts-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.featured-post-item {
	display: flex;
	gap: 16px;
	padding: 16px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
	transition: all 0.4s;
	text-decoration: none;
	align-items: flex-start;
}

.featured-post-item:hover {
	transform: translateY(-2px);
	box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.12);
}

.featured-post-item-image {
	flex-shrink: 0;
	width: 120px;
	height: 90px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.featured-post-item-image .featured-item-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.featured-post-item:hover .featured-item-img {
	transform: scale(1.05);
}

.featured-post-item-image .featured-item-placeholder {
	width: 100%;
	height: 100%;
	background: #efefef;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9f9f9f;
	font-size: 12px;
}

.featured-post-item-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 90px;
	justify-content: space-between;
}

.featured-post-item-title {
	margin: 0;
	font-size: 18px;
	font-weight: 900;
	line-height: 140%;
	color: #1d1d1f;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: all 0.4s;
}

.featured-post-item-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.4s;
}

.featured-post-item-title a:hover {
	color: #ec2d1c;
}

.featured-post-item-description {
	color: #242424;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Dark Mode Support for Featured Posts */
.dark-mode .featured-post-main,
.dark-mode .featured-post-item {
	background: #191919;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}

.dark-mode .featured-post-title,
.dark-mode .featured-post-item-title {
	color: #e0e0e2;
}

.dark-mode .featured-post-title a:hover,
.dark-mode .featured-post-item-title a:hover {
	color: #ec2d1c;
}

.dark-mode .featured-post-description,
.dark-mode .featured-post-item-description {
	color: #e0e0e2;
}

.dark-mode .featured-post-item-image .featured-item-placeholder {
	background: #303030;
	color: #9f9f9f;
}

.card-only-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px;
	background: #fff;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
	border-radius: 12px;
	transition: all 0.4s;
}
.card-only-text h2 {
	margin: 0;
	padding-bottom: 3px;
	font-size: 18px;
	font-weight: 900;
	line-height: 140%;
	color: #1d1d1f;
	transition: all 0.4s;
}
.card-only-text p {
	color: #242424;
	font-size: 12px;
	font-weight: 400;
	line-height: 150%;
	margin: 0;
	padding-bottom: 3px;
}
.card-only-text a {
	color: #242424;
}
.card-only-text a:hover {
	color: #2e2e2e;
}

.dark-mode .card-only-text {
	background: #191919;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}
.dark-mode .card-only-text h2 {
	color: #e0e0e2;
}
.dark-mode .card-only-text p,
.dark-mode .card-only-text a {
	color: rgba(255, 255, 255, 0.6);
}
.dark-mode .card-only-text a:hover {
	color: #ec2d1c;
}

.card-only-text:hover,
.card-only-text:focus,
.card:hover,
.card:focus {
	transform: scale(1.05);
}

.onpage-single-left .headtitle,
.onpage-single-right .headtitle {
	width: 100%;
	text-align: center;
	line-height: 1.15;
	color: #1d1d1f;
	font-size: 24px;
	font-weight: 900;
	line-height: 140%;
	transition: all 0.4s;
}

@media screen and (max-width: 768px) {
	.onpage-single-left {
		display: none;
	}
	.onpage-single-right {
		display: block;
	}
	.featured-post-item-description {
		display: none;
	}
	.featured-post-item-title {
		-webkit-line-clamp: 4;
		font-size: 0.8em;
	}
	.cookiescript_injected {
		width: 45%;
	}
	#gcw_siteFEPpHsb1M {
		width: 400px !important;
	}
}

.article-sub-text ul {
	/* Styles for the entire unordered list */
	list-style-type: disc !important; /* Default bullet style (circle, square, none) */
	margin-left: 20px; /* Indentation from the left */
	padding-left: 0; /* Remove default padding */
}

.article-sub-text ul li {
	/* Styles for individual list items within an unordered list */
	margin-bottom: 5px; /* Spacing between list items */
}

.article-sub-text ol {
	/* Styles for the entire ordered list */
	list-style-type: decimal !important; /* Default numbering style (decimal, lower-alpha, upper-roman, etc.) */
	margin-left: 25px; /* Indentation from the left */
	padding-left: 0; /* Remove default padding */
}

.article-sub-text ol li {
	/* Styles for individual list items within an ordered list */
	margin-bottom: 5px; /* Spacing between list items */
}

@media screen and (max-width: 768px) {
	.featured-post-title {
		font-size: 1.3em;
	}
	.featured-post-item-title {
		font-size: 1.2em;
	}
	.featured-post-item-image {
		flex-shrink: 0;
		width: 100%;
		height: auto;
	}
	.featured-post-item {
		display: block;
	}
}

.post-navigation {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.post-navigation a {
	color: #1d1d1f;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.4s;
}
.post-navigation a:hover {
	color: #210a7f;
}
