/**
 * Telefer — Blog listing page
 * Figma node 11085:2079
 */

:root {
	--telefer-blog-brand: #ffc107;
	--telefer-blog-brand-soft: rgba(255, 193, 7, 0.2);
	--telefer-blog-brand-border: rgba(255, 193, 7, 0.3);
	--telefer-blog-green: #7bf1a8;
	--telefer-blog-green-soft: rgba(0, 201, 80, 0.2);
	--telefer-blog-green-border: rgba(0, 201, 80, 0.3);
	--telefer-blog-blue: #51a2ff;
	--telefer-blog-glass: rgba(255, 255, 255, 0.04);
	--telefer-blog-border: rgba(255, 255, 255, 0.1);
	--telefer-blog-text-body: #d1d5dc;
	--telefer-blog-text-soft: #99a1af;
}

.telefer-blog {
	background: linear-gradient(
		118deg,
		#0a1f44 0%,
		#0a2145 16.67%,
		#0b2245 33.33%,
		#0b2446 50%,
		#0c2546 66.67%,
		#0c2747 83.33%,
		#0d2847 100%
	);
	overflow-x: hidden;
}

/* Hero — 11085:2081 */
.telefer-blog-hero {
	position: relative;
	width: 100%;
	max-width: 1920px;
	height: 725px;
	min-height: 725px;
	margin: 0 auto;
	padding: 0 clamp(24px, 4.25vw, 82px);
	background:
		linear-gradient(179deg, rgba(21, 50, 95, 0) 52.42%, #15325f 89.75%),
		linear-gradient(157.8deg, rgba(0, 0, 0, 0.4) 24.51%, rgba(0, 0, 0, 0) 68.31%),
		#15325f;
	overflow: hidden;
}

.telefer-blog-hero__visuals {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.telefer-blog-hero__bg-logo {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.telefer-blog-hero__bg-logo-frame {
	position: absolute;
	left: 55%;
	top: -491px;
	width: 1324px;
	height: 1256px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.telefer-blog-hero__bg-logo-rotate {
	flex-shrink: 0;
	transform: rotate(-105.75deg);
}

.telefer-blog-hero__bg-logo-shape {
	position: relative;
	width: 996px;
	height: 1096px;
}

.telefer-blog-hero__bg-logo-shape img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
}

.telefer-blog-hero__image {
	position: absolute;
	bottom: -75px;
	left: 50%;
	transform: translateX(calc(-50% + 24px));
	width: min(1757px, 130%);
	height: 732px;
	z-index: 2;
	overflow: hidden;
}

.telefer-blog-hero__image > img {
	position: absolute;
	top: 2.54%;
	left: 24.69%;
	width: 69.39%;
	height: 90.83%;
	max-width: none;
	object-fit: cover;
	object-position: center top;
}

.telefer-blog-hero__image-fade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(21, 50, 95, 0.92) 0%, rgba(21, 50, 95, 0.55) 38%, rgba(21, 50, 95, 0) 62%),
		linear-gradient(179deg, rgba(21, 50, 95, 0) 52.42%, #15325f 89.75%);
	pointer-events: none;
}

.telefer-blog-hero__inner {
	position: absolute;
	left: clamp(24px, 4.25vw, 82px);
	top: calc(50% + 51px);
	transform: translateY(-50%);
	z-index: 4;
	max-width: 988px;
	width: calc(100% - clamp(48px, 8.5vw, 164px));
}

.telefer-blog-hero__copy {
	display: flex;
	flex-direction: column;
	gap: clamp(28px, 3vw, 44px);
	align-items: flex-start;
	max-width: 988px;
}

.telefer-blog-hero__text {
	display: flex;
	flex-direction: column;
	gap: clamp(12px, 1.2vw, 20px);
	max-width: 988px;
}

.telefer-blog-hero__badge {
	font-family: var(--telefer-font-body);
	font-size: clamp(12px, 1.1vw, 22px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: clamp(2px, 0.35vw, 4.6px);
	text-transform: uppercase;
	color: var(--telefer-blog-brand);
	margin: 0;
}

.telefer-blog-hero__title {
	font-family: var(--telefer-font-body);
	font-size: clamp(36px, 5.4vw, 77px);
	font-weight: 700;
	line-height: 1.25;
	color: #ffffff;
	margin: 0;
	letter-spacing: 0.34px;
	max-width: 988px;
}

.telefer-blog-hero__title span {
	color: var(--telefer-blog-brand);
	display: inline;
}

.telefer-blog-hero__subtitle {
	font-family: var(--telefer-font-body);
	font-size: clamp(18px, 1.8vw, 26px);
	font-weight: 400;
	line-height: 1.62;
	color: var(--telefer-blog-text-body);
	margin: 0;
	max-width: 988px;
	letter-spacing: -0.58px;
}

.telefer-blog-hero__bubbles {
	display: flex;
	align-items: center;
	gap: clamp(24px, 3vw, 44px);
}

.telefer-blog-hero__bubble {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 63px;
	height: 63px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(153, 153, 153, 0.16), rgba(255, 255, 255, 0.16));
	border: 1.1px solid rgba(255, 255, 255, 0.24);
	backdrop-filter: blur(3px);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.telefer-blog-hero__bubble:hover {
	opacity: 0.85;
}

.telefer-blog-hero__bubble img {
	display: block;
}

.telefer-blog-hero__bubble--logo img {
	width: 26px;
	height: auto;
}

/* Filters — 11085:2109 */
.telefer-blog-filters {
	border-top: 1.3px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1.3px solid rgba(255, 255, 255, 0.05);
	padding: 42px clamp(24px, 4.25vw, 61px);
	background: linear-gradient(
		174deg,
		#0d2847 0%,
		#0c2747 16.67%,
		#0c2546 33.33%,
		#0b2446 50%,
		#0b2245 66.67%,
		#0a2145 83.33%,
		#0a1f44 100%
	);
}

.telefer-blog-filters__inner {
	max-width: 1317px;
	margin: 0 auto;
	padding: 0 clamp(0px, 1.5vw, 21px);
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 20px;
}

.telefer-blog-filters__search {
	position: relative;
	flex: 0 0 371px;
	width: 371px;
	max-width: 100%;
}

.telefer-blog-filters__search-icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.telefer-blog-filters__search input {
	width: 100%;
	height: 54px;
	padding: 13px 21px 13px 51px;
	border-radius: 18px;
	border: 1.3px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	font-family: var(--telefer-font-body);
	font-size: clamp(14px, 1.2vw, 18px);
	outline: none;
}

.telefer-blog-filters__search input::placeholder {
	color: var(--telefer-blog-text-soft);
}

.telefer-blog-filters__pills {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	flex: 1 1 auto;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.telefer-blog-filters__pills::-webkit-scrollbar {
	display: none;
}

.telefer-blog-filters__pill {
	flex: 0 0 auto;
	height: 49px;
	padding: 0 22px;
	border-radius: var(--telefer-radius-pill);
	border: 1.3px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	color: var(--telefer-blog-text-body);
	font-family: var(--telefer-font-body);
	font-size: clamp(14px, 1.2vw, 18px);
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.telefer-blog-filters__pill--active {
	background: var(--telefer-blog-brand);
	border-color: var(--telefer-blog-brand);
	color: #0a1f44;
}

/* Body / Grid — 11085:2130 */
.telefer-blog-body {
	position: relative;
	padding: clamp(60px, 7vw, 103px) clamp(24px, 4.25vw, 61px) clamp(80px, 8vw, 120px);
	background:
		linear-gradient(-0.8deg, rgba(21, 50, 95, 0) 89.3%, #15325f 99.1%),
		linear-gradient(178.5deg, rgba(21, 50, 95, 0) 52.4%, #15325f 89.8%),
		#15325f;
	overflow: hidden;
}

.telefer-blog-body__glow {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.telefer-blog-body__glow--right {
	right: max(-200px, calc(50% - 720px));
	top: 0;
	width: 812px;
	height: 721px;
	background: radial-gradient(
		ellipse 50% 50% at 50% 50%,
		rgba(253, 184, 19, 0.18) 0%,
		rgba(253, 184, 19, 0.06) 40%,
		transparent 72%
	);
	opacity: 0.6;
}

.telefer-blog-body__glow--left {
	left: -671px;
	bottom: -400px;
	width: 1607px;
	height: 666px;
	background: radial-gradient(
		ellipse 50% 50% at 50% 50%,
		rgba(253, 184, 19, 0.22) 0%,
		rgba(253, 184, 19, 0.08) 35%,
		transparent 70%
	);
	opacity: 0.5;
}

.telefer-blog-body__inner {
	position: relative;
	z-index: 1;
	max-width: 1317px;
	margin: 0 auto;
	padding: 0 clamp(0px, 1.5vw, 21px);
}

.telefer-blog-grid__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 2.5vw, 31px);
}

.telefer-blog-card {
	background: var(--telefer-blog-glass);
	border: 1.3px solid var(--telefer-blog-border);
	border-radius: 21px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.telefer-blog-card__media {
	position: relative;
	height: 226px;
	background: #1a3a6b;
	overflow: hidden;
}

.telefer-blog-card__media img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.telefer-blog-card__media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(10, 31, 68, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.telefer-blog-card__tag {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 6px 13px;
	border-radius: var(--telefer-radius-pill);
	font-size: clamp(12px, 1vw, 15px);
	font-weight: 700;
	line-height: 1.35;
}

.telefer-blog-card__tag--brand {
	color: var(--telefer-blog-brand);
	background: var(--telefer-blog-brand-soft);
	border: 1.3px solid var(--telefer-blog-brand-border);
}

.telefer-blog-card__tag--green {
	color: var(--telefer-blog-green);
	background: var(--telefer-blog-green-soft);
	border: 1.3px solid var(--telefer-blog-green-border);
}

.telefer-blog-card__tag--blue {
	color: var(--telefer-blog-blue);
	background: rgba(43, 127, 255, 0.2);
	border: 1.3px solid rgba(43, 127, 255, 0.3);
}

.telefer-blog-card__tag--purple {
	color: #c27aff;
	background: rgba(173, 70, 255, 0.2);
	border: 1.3px solid rgba(173, 70, 255, 0.3);
}

.telefer-blog-card__body {
	padding: clamp(20px, 2vw, 26px);
	display: flex;
	flex-direction: column;
	gap: 15px;
	flex: 1;
}

.telefer-blog-card__title {
	font-size: clamp(16px, 1.3vw, 18px);
	font-weight: 700;
	line-height: 1.38;
	margin: 0;
	letter-spacing: -0.19px;
}

.telefer-blog-card__title a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.telefer-blog-card__title a:hover {
	color: var(--telefer-blog-brand);
}

.telefer-blog-card__excerpt {
	font-size: clamp(14px, 1.1vw, 15px);
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
	flex: 1;
}

.telefer-blog-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 6px;
	border-top: 1.3px solid rgba(255, 255, 255, 0.08);
}

.telefer-blog-card__date {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: clamp(13px, 1vw, 15px);
	color: rgba(255, 255, 255, 0.4);
}

.telefer-blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: clamp(13px, 1vw, 15px);
	font-weight: 700;
	color: var(--telefer-blog-brand);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.telefer-blog-card__link:hover {
	opacity: 0.85;
}

/* Newsletter — 11085:2421 */
.telefer-blog-newsletter {
	position: relative;
	padding: clamp(80px, 8.6vw, 124px) clamp(24px, 4.25vw, 61px);
	background: linear-gradient(
		154deg,
		#1a3a6b 0%,
		#153260 14%,
		#132e5a 21%,
		#112a54 29%,
		#0e264e 36%,
		#0c2349 43%,
		#0a1f44 50%,
		#0a2145 58%,
		#0b2245 67%,
		#0b2446 75%,
		#0c2546 83%,
		#0c2747 92%,
		#0d2847 100%
	);
	overflow: hidden;
}

.telefer-blog-newsletter__glow {
	position: absolute;
	left: -671px;
	top: -118px;
	width: 1607px;
	height: 666px;
	pointer-events: none;
	opacity: 0.35;
	background: radial-gradient(
		ellipse 50% 50% at 50% 50%,
		rgba(253, 184, 19, 0.16) 0%,
		rgba(253, 184, 19, 0.05) 40%,
		transparent 72%
	);
}

.telefer-blog-newsletter__divider {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(1200px, calc(100% - 120px));
	pointer-events: none;
}

.telefer-blog-newsletter__divider img {
	width: 100%;
	height: auto;
	display: block;
}

.telefer-blog-newsletter__inner {
	position: relative;
	z-index: 2;
	max-width: 865px;
	margin: 0 auto;
	text-align: center;
	padding-top: clamp(40px, 5vw, 82px);
}

.telefer-blog-newsletter__badge {
	font-family: var(--telefer-font-body);
	font-size: clamp(12px, 1.1vw, 15px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 3.2px;
	text-transform: uppercase;
	color: var(--telefer-blog-brand);
	margin: 0 0 16px;
}

.telefer-blog-newsletter__title {
	font-family: var(--telefer-font-body);
	font-size: clamp(28px, 2.7vw, 39px);
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 0 16px;
	letter-spacing: 0.51px;
}

.telefer-blog-newsletter__text {
	font-size: clamp(16px, 1.4vw, 21px);
	line-height: 1.5;
	color: var(--telefer-blog-text-body);
	margin: 0 0 clamp(28px, 3vw, 36px);
	letter-spacing: -0.4px;
}

.telefer-blog-newsletter__form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	max-width: 577px;
	margin: 0 auto;
}

.telefer-blog-newsletter__form input {
	flex: 1 1 280px;
	min-height: 59px;
	padding: 15px 21px;
	border-radius: 18px;
	border: 1.3px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	font-family: var(--telefer-font-body);
	font-size: clamp(14px, 1.2vw, 18px);
	outline: none;
}

.telefer-blog-newsletter__form input::placeholder {
	color: var(--telefer-blog-text-soft);
}

.telefer-blog-newsletter__form button {
	flex: 0 0 auto;
	min-width: 180px;
	min-height: 59px;
	padding: 0 28px;
	border: none;
	border-radius: 18px;
	background: var(--telefer-blog-brand);
	color: #0a1f44;
	font-family: var(--telefer-font-body);
	font-size: clamp(14px, 1.2vw, 18px);
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.telefer-blog-newsletter__form button:hover {
	opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
	.telefer-blog-grid__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.telefer-blog-body__glow--right,
	.telefer-blog-body__glow--left {
		display: none;
	}
}

@media (max-width: 768px) {
	.telefer-blog-hero {
		height: auto;
		min-height: auto;
		padding-bottom: 0;
		display: flex;
		flex-direction: column;
	}

	.telefer-blog-hero__visuals {
		position: relative;
		inset: auto;
		order: 2;
		width: 100%;
		height: 320px;
		margin-top: 32px;
	}

	.telefer-blog-hero__inner {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		order: 1;
		width: 100%;
		padding: calc(var(--telefer-header-height) + 32px) 24px 0;
	}

	.telefer-blog-hero__bg-logo {
		display: none;
	}

	.telefer-blog-hero__image {
		width: 100%;
		height: 100%;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	.telefer-blog-hero__image > img {
		left: 50%;
		transform: translateX(-50%);
		width: auto;
		min-width: 100%;
		height: 100%;
		top: 0;
	}

	.telefer-blog-filters__inner {
		flex-direction: column;
		align-items: stretch;
		flex-wrap: wrap;
	}

	.telefer-blog-filters__search {
		flex: 1 1 auto;
		width: 100%;
	}

	.telefer-blog-filters__pills {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 4px;
	}

	.telefer-blog-filters__pills::-webkit-scrollbar {
		display: none;
	}

	.telefer-blog-grid__inner {
		grid-template-columns: 1fr;
	}

	.telefer-blog-newsletter__form {
		flex-direction: column;
	}

	.telefer-blog-newsletter__form button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.telefer-blog-hero__visuals {
		height: 260px;
	}
}

/* Single post — Figma node 11085:2500 */
.telefer-blog-single {
	background:
		linear-gradient(-4deg, rgba(21, 50, 95, 0) 89.3%, #15325f 99.1%),
		linear-gradient(172deg, rgba(21, 50, 95, 0) 52.4%, #15325f 89.8%),
		#15325f;
	overflow-x: hidden;
}

.telefer-blog-single-hero {
	position: relative;
	min-height: 645px;
	display: flex;
	align-items: flex-end;
	padding: calc(var(--telefer-header-height) + 48px) clamp(24px, 4.25vw, 92px) clamp(48px, 5vw, 72px);
	overflow: hidden;
}

.telefer-blog-single-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.telefer-blog-single-hero__bg img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center top;
}

.telefer-blog-single-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, #15325f 4.5%, rgba(21, 50, 95, 0) 100%);
}

.telefer-blog-single-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 988px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: clamp(16px, 2vw, 24px);
}

.telefer-blog-single-hero__breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: clamp(14px, 1.2vw, 18px);
	color: #ffffff;
}

.telefer-blog-single-hero__breadcrumbs a {
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.telefer-blog-single-hero__breadcrumbs a:hover {
	opacity: 0.85;
}

.telefer-blog-single-hero__breadcrumbs-current {
	color: var(--telefer-blog-brand);
}

.telefer-blog-single-hero__tag {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	height: 33px;
	padding: 0 17px;
	border-radius: 120px;
	font-size: clamp(13px, 1vw, 15px);
	font-weight: 700;
	line-height: 1.35;
}

.telefer-blog-single-hero__tag--brand {
	background: var(--telefer-blog-brand);
	color: #0a1f44;
}

.telefer-blog-single-hero__tag--green {
	background: #00c950;
	color: #ffffff;
}

.telefer-blog-single-hero__tag--blue {
	background: #2b7fff;
	color: #ffffff;
}

.telefer-blog-single-hero__tag--purple {
	background: #ad46ff;
	color: #ffffff;
}

.telefer-blog-single-hero__title {
	font-size: clamp(32px, 4.3vw, 62px);
	font-weight: 700;
	line-height: 1.25;
	color: #ffffff;
	letter-spacing: 0.45px;
	max-width: 988px;
}

.telefer-blog-single-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(16px, 2vw, 24px);
}

.telefer-blog-single-hero__author {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.telefer-blog-single-hero__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
	color: #0a1f44;
	font-size: 14px;
	font-weight: 700;
}

.telefer-blog-single-hero__author-name {
	font-size: clamp(14px, 1.2vw, 18px);
	font-weight: 600;
	color: #ffffff;
}

.telefer-blog-single-hero__meta-divider {
	width: 1px;
	height: 21px;
	background: rgba(255, 255, 255, 0.2);
}

.telefer-blog-single-hero__meta-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(16px, 2vw, 21px);
}

.telefer-blog-single-hero__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: clamp(14px, 1.2vw, 18px);
	color: rgba(255, 255, 255, 0.5);
}

.telefer-blog-single-hero__meta-item img {
	width: 21px;
	height: 21px;
	max-width: none;
}

.telefer-blog-single-article {
	padding: clamp(48px, 5vw, 72px) clamp(24px, 4.25vw, 61px) clamp(64px, 6vw, 96px);
}

.telefer-blog-single-article__inner {
	max-width: 1125px;
	margin: 0 auto;
}

.telefer-blog-single-article__content {
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 3vw, 40px);
	color: rgba(255, 255, 255, 0.75);
	font-size: clamp(18px, 1.6vw, 25px);
	line-height: 1.62;
	letter-spacing: -0.63px;
}

.telefer-blog-single-article__content h2 {
	font-size: clamp(24px, 2.4vw, 35px);
	font-weight: 700;
	line-height: 1.33;
	color: #ffffff;
	letter-spacing: 0.1px;
	margin: clamp(8px, 1vw, 16px) 0 0;
}

.telefer-blog-single-lead {
	margin: 0;
}

.telefer-blog-single-article__content strong {
	color: #ffffff;
	font-weight: 600;
}

.telefer-blog-single-quote {
	margin: 0;
	padding: clamp(24px, 2.5vw, 29px) clamp(28px, 3vw, 41px);
	border-left: 6px solid var(--telefer-blog-brand);
	border-radius: 0 23px 23px 0;
	background: rgba(255, 193, 7, 0.05);
}

.telefer-blog-single-quote p {
	margin: 0 0 16px;
	font-size: clamp(20px, 1.7vw, 26px);
	font-style: italic;
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.9);
}

.telefer-blog-single-quote cite {
	font-style: normal;
	font-size: clamp(16px, 1.3vw, 21px);
	font-weight: 600;
	color: var(--telefer-blog-brand);
}

.telefer-blog-single-table-wrap {
	overflow-x: auto;
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	border-radius: 23px;
}

.telefer-blog-single-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
}

.telefer-blog-single-table thead {
	background: rgba(255, 255, 255, 0.08);
}

.telefer-blog-single-table th,
.telefer-blog-single-table td {
	padding: 20px 29px;
	text-align: left;
	font-size: clamp(15px, 1.2vw, 21px);
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.05);
}

.telefer-blog-single-table th {
	font-weight: 600;
	color: #ffffff;
}

.telefer-blog-single-table th:nth-child(2) {
	color: var(--telefer-blog-brand);
	text-align: center;
}

.telefer-blog-single-table th:nth-child(3) {
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
}

.telefer-blog-single-table td:first-child {
	font-weight: 500;
	color: #ffffff;
}

.telefer-blog-single-table td:nth-child(2),
.telefer-blog-single-table td:nth-child(3) {
	text-align: center;
}

.telefer-blog-single-table td.is-positive {
	color: #05df72;
	font-weight: 500;
}

.telefer-blog-single-table td.is-muted {
	color: rgba(255, 255, 255, 0.4);
}

.telefer-blog-single-table tbody tr:last-child td {
	border-bottom: none;
}

.telefer-blog-single-list {
	margin: 0;
	padding: 0 0 0 6px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.telefer-blog-single-list li {
	position: relative;
	padding-left: 26px;
}

.telefer-blog-single-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--telefer-blog-brand);
	transform: translateY(-50%);
}

.telefer-blog-single-article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: clamp(40px, 4vw, 64px);
	padding-top: clamp(32px, 3vw, 48px);
	border-top: 1.5px solid rgba(255, 255, 255, 0.1);
}

.telefer-blog-single-article__tag {
	display: inline-flex;
	align-items: center;
	height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.06);
	font-size: clamp(14px, 1.1vw, 18px);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
}

.telefer-blog-single-share {
	margin-top: clamp(32px, 3vw, 48px);
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	border-radius: 23px;
	background: rgba(255, 255, 255, 0.04);
	overflow: hidden;
}

.telefer-blog-single-share__header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 23px 35px 25px;
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}

.telefer-blog-single-share__header p {
	margin: 0;
	font-size: clamp(16px, 1.3vw, 21px);
	font-weight: 600;
	color: #ffffff;
}

.telefer-blog-single-share__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	padding: 29px 35px;
}

.telefer-blog-single-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding: 0 24px;
	border-radius: 21px;
	border: 1.5px solid transparent;
	font-size: clamp(16px, 1.3vw, 21px);
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
	font-family: inherit;
}

.telefer-blog-single-share__btn:hover {
	opacity: 0.9;
}

.telefer-blog-single-share__btn img {
	width: 23px;
	height: 23px;
	max-width: none;
}

.telefer-blog-single-share__btn--whatsapp {
	background: rgba(0, 201, 80, 0.1);
	border-color: rgba(0, 201, 80, 0.25);
	color: #05df72;
}

.telefer-blog-single-share__btn--linkedin {
	background: rgba(43, 127, 255, 0.1);
	border-color: rgba(43, 127, 255, 0.25);
	color: #51a2ff;
}

.telefer-blog-single-share__btn--x,
.telefer-blog-single-share__btn--copy {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.7);
}

.telefer-blog-single-article__back {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: clamp(32px, 3vw, 48px);
	font-size: clamp(16px, 1.3vw, 21px);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color 0.2s ease;
}

.telefer-blog-single-article__back:hover {
	color: rgba(255, 255, 255, 0.7);
}

.telefer-blog-single-article__back img {
	width: 23px;
	height: 23px;
	max-width: none;
}

.telefer-blog-single-related {
	position: relative;
	padding: clamp(80px, 8vw, 125px) clamp(24px, 4.25vw, 61px);
	border-top: 1.3px solid rgba(255, 255, 255, 0.05);
	overflow: hidden;
}

.telefer-blog-single-related__texture {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(-0.6deg, rgba(21, 50, 95, 0) 46.8%, #15325f 84%),
		linear-gradient(179deg, rgba(21, 50, 95, 0) 52.4%, #15325f 89.8%),
		#004ca0;
	opacity: 1;
	pointer-events: none;
}

.telefer-blog-single-related__texture::before,
.telefer-blog-single-related__texture::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url('../images/blog/single/related-texture.png');
	background-size: cover;
	background-position: center;
	opacity: 0.2;
}

.telefer-blog-single-related__texture::after {
	opacity: 0.24;
	transform: scale(1.05);
}

.telefer-blog-single-related__inner {
	position: relative;
	z-index: 1;
	max-width: 1317px;
	margin: 0 auto;
	padding: 0 clamp(0px, 1.5vw, 31px);
}

.telefer-blog-single-related__heading {
	margin-bottom: clamp(32px, 3vw, 51px);
}

.telefer-blog-single-related__badge {
	margin: 0 0 10px;
	font-size: clamp(12px, 1.1vw, 15px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 3.9px;
	text-transform: uppercase;
	color: var(--telefer-blog-brand);
}

.telefer-blog-single-related__heading h2 {
	margin: 0;
	font-size: clamp(28px, 2.7vw, 39px);
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	letter-spacing: 0.51px;
}

.telefer-blog-single-cta {
	position: relative;
	padding: clamp(80px, 8.6vw, 124px) clamp(24px, 4.25vw, 61px);
	background: #060f24;
	overflow: hidden;
}

.telefer-blog-single-cta__glow {
	position: absolute;
	left: 50%;
	top: -124px;
	transform: translateX(-50%);
	width: min(643px, 100vw);
	height: 643px;
	border-radius: 999px;
	background: rgba(255, 193, 7, 0.06);
	filter: blur(129px);
	pointer-events: none;
}

.telefer-blog-single-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 193, 7, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.telefer-blog-single-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 865px;
	margin: 0 auto;
	text-align: center;
}

.telefer-blog-single-cta__badge {
	margin: 0 0 16px;
	font-size: clamp(12px, 1.1vw, 15px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 3.9px;
	text-transform: uppercase;
	color: var(--telefer-blog-brand);
}

.telefer-blog-single-cta h2 {
	margin: 0 0 16px;
	font-size: clamp(28px, 2.7vw, 46px);
	font-weight: 700;
	line-height: 1.25;
	color: #ffffff;
	letter-spacing: 0.48px;
}

.telefer-blog-single-cta__text {
	margin: 0 0 clamp(28px, 3vw, 36px);
	font-size: clamp(16px, 1.4vw, 21px);
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: -0.4px;
}

.telefer-blog-single-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 21px;
}

.telefer-blog-single-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 75px;
	padding: 0 clamp(24px, 3vw, 41px);
	border-radius: 999px;
	font-size: clamp(16px, 1.3vw, 21px);
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.telefer-blog-single-cta__btn:hover {
	opacity: 0.92;
}

.telefer-blog-single-cta__btn img {
	width: 26px;
	height: 26px;
	max-width: none;
}

.telefer-blog-single-cta__btn--primary {
	background: var(--telefer-blog-brand);
	color: #0a1f44;
	box-shadow:
		0 13px 10px rgba(255, 193, 7, 0.2),
		0 5px 4px rgba(255, 193, 7, 0.2);
}

.telefer-blog-single-cta__btn--secondary {
	background: rgba(255, 255, 255, 0.08);
	border: 1.3px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-weight: 600;
}

@media (max-width: 768px) {
	.telefer-blog-single-hero {
		min-height: 520px;
	}

	.telefer-blog-single-hero__meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.telefer-blog-single-hero__meta-divider {
		display: none;
	}

	.telefer-blog-single-share__actions {
		flex-direction: column;
	}

	.telefer-blog-single-share__btn {
		width: 100%;
	}

	.telefer-blog-single-cta__actions {
		flex-direction: column;
	}

	.telefer-blog-single-cta__btn {
		width: 100%;
	}
}
