/* wrapper */
.lan-wrap {
	position: relative;
	display: inline-block;
}

/* main button */
.lan-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;

	padding: 8px 10px;
	font-size: 14px;
	font-weight: 700;
	color: #000;

	background-color: transparent;
	border: 1px solid rgb(10, 73, 165);
	border-radius: 9px;

	cursor: pointer;
	position: relative;
	white-space: nowrap;

	transition:
		transform 0.18s ease,
		box-shadow 0.25s ease;
}

.lan-desktop .lan-btn {
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.lan-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.lan-btn:active {
	transform: translateY(0px);
	box-shadow: none;
}

.lan-btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(10, 73, 165, 0.22);
}

/* caret */
.lan-caret {
	display: inline-block;
	font-size: 11px;
	line-height: 1;
	transform: translateY(1px);
	transition: transform 150ms ease;
	opacity: 0.8;
}

.lan-caret.isOpen {
	transform: translateY(1px) rotate(180deg);
}

/* dropdown */
.lan-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;

	min-width: 180px;
	padding: 6px;

	background: #fff;
	border: 1px solid rgba(10, 73, 165, 0.35); /* під стиль кнопки */
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

	z-index: 9999;
}

/* dropdown items */
.lan-item {
	width: 100%;
	border: none;
	background: transparent;

	padding: 10px 10px;
	border-radius: 10px;

	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;

	font-weight: 700;
	font-size: 14px;
	color: #000;

	transition:
		background 120ms ease,
		transform 120ms ease;
}

.lan-item:hover {
	background: rgba(10, 73, 165, 0.08);
}

.lan-item:active {
	transform: scale(0.99);
}

.lan-item.isActive {
	background: rgba(10, 73, 165, 0.12);
}

.lan-check {
	font-weight: 900;
}

.lan-checkPlaceholder {
	width: 14px;
	height: 14px;
	display: inline-block;
}

@media (max-width: 480px) {
	.lan-btn {
		padding: 6px 10px;
		font-size: 13px;
	}

	.lan-item {
		font-size: 13px;
		padding: 9px 10px;
	}
}

.audio-player {
  display: flex;
  flex-direction: column;   /* ✅ робимо 2 рядки: controls + meta */
  gap: 6px;
  padding: 10px 14px;

  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ✅ контролі лишаються горизонтально */
.audio-player__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: rgb(10, 73, 165);
  color: white;
  font-size: 18px;
  font-weight: bold;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.play-btn:hover {
  box-shadow: 0 4px 10px rgba(70, 130, 255, 0.4);
}

.play-btn:active {
  transform: scale(0.92);
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #4baaff, #0a49a5);
  width: 0%;
  border-radius: inherit;
  transition: width 0.1s linear;
}

.time {
  width: 50px;
  font-size: 12px;
  color: #555;
  text-align: right;
}

/* ✅ мета-рядок знизу */
.audio-player__meta {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 5px;
  line-height: 1.3;
	margin-top: 5px;
}

.audio-player__name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #1a1a1a;
}

.audio-player__performer {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  color: #7e7e7e;
}

.audio-player__size {
  white-space: nowrap;
  opacity: 0.85;
}

.lp {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  padding: 12px;

  border-radius: 14px;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
}

.lp:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.lp__imageWrap {
  width: 60px;
  height: 80px;
  flex: 0 0 80px;

  position: relative;           /* ✅ важливо */
  overflow: hidden;

  background: rgba(255, 255, 255, 0.06);
}

/* img більше не бере участі у флекс-лайауті */
.lp__image {
  position: absolute;           /* ✅ важливо */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;            /* або contain, дивись нижче */
  display: block;               /* ✅ прибирає baseline “підскок” */
}

.lp__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp__site {
  font-size: 12px;
  opacity: 0.7;
}

.lp__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp__description {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.25;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp__url {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.6;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Мобілка: картинка зверху, текст знизу */
@media (max-width: 480px) {
  .lp {
    flex-direction: column;
  }

  .lp__imageWrap {
    width: 100%;
    height: 50px;     /* або 100px */
    flex: none;
  }
}

.e-post-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* border-radius: 12px; */

  background: linear-gradient(
    110deg,
    #d9d9d9 25%,
    #eeeeee 37%,
    #d9d9d9 63%
  );
  background-size: 200% 100%;
  animation: media-skeleton 1.4s ease infinite;
}

@keyframes media-skeleton {
  to {
    background-position-x: -200%;
  }
}

.scroll-bottom-btn {
	position: absolute;
	right: 13px;
	bottom: 21px;
	width: 48px;
	height: 50px;
	border-radius: 50%;
	border: none;
	background: rgb(10, 73, 165);
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(8px) scale(0.95);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		filter 0.25s ease;
	z-index: 50;
}

@media (max-width: 768px) {
	.scroll-bottom-btn {
		right: 10px;
		width: 38px;
		height: 38px;
	}
}

/* Коли кнопка відображається — легкий "поп" + пульс */
.scroll-bottom-btn.visible {
	transform: translateY(0) scale(1);
	animation: scroll-btn-pulse 1.8s ease-out infinite;
}

/* Hover-підсвітка */
.scroll-bottom-btn:hover {
	filter: brightness(1.1);
	box-shadow: 0 8px 22px rgba(0, 110, 255, 0.35);
}

/* Стрілка всередині — легкий bounce вниз */
.scroll-bottom-btn__icon {
	display: inline-block;
	animation: arrow-bounce 1s ease-in-out infinite;
}

/* Пульс кнопки */
@keyframes scroll-btn-pulse {
	0% {
		transform: translateY(0) scale(1);
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	}
	50% {
		transform: translateY(0) scale(1.06);
		box-shadow: 0 0 0 8px rgba(75, 170, 255, 0.25);
	}
	100% {
		transform: translateY(0) scale(1);
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	}
}

/* Анімація стрілки вниз */
@keyframes arrow-bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(3px);
	}
}

/* Контейнер стрілок */
/* Контейнер для трьох стрілок */
.arrow-stack {
	position: relative;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

/* CSS-стрілка — чистий border-triangle */
.arrow {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;

	/* Робимо маленьку стилізовану стрілку */
	width: 0;
	height: 0;

	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid #ffffff; /* колір стрілки */

	/* Плавна анімація падіння */
	animation: arrowFlow 1.4s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Каскадні затримки */
.arrow:nth-child(1) {
	animation-delay: 0s;
}
.arrow:nth-child(2) {
	animation-delay: 0.25s;
}
.arrow:nth-child(3) {
	animation-delay: 0.5s;
}

/* Плавний рух вниз + fade-out + scale */
@keyframes arrowFlow {
	0% {
		top: 10%;
		opacity: 0;
		transform: translateX(-50%) scale(0.7);
	}
	20% {
		top: 25%;
		opacity: 1;
		transform: translateX(-50%) scale(1);
	}
	50% {
		top: 55%;
		opacity: 1;
		transform: translateX(-50%) scale(1);
	}
	80% {
		top: 85%;
		opacity: 0.3;
		transform: translateX(-50%) scale(0.85);
	}
	100% {
		top: 115%;
		opacity: 0;
		transform: translateX(-50%) scale(0.55);
	}
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.main-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 2px 16px;
	display: none;
	justify-content: space-between;
	align-items: center;
	background: #d1d4d8;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.06),
		0 6px 18px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: saturate(130%) blur(6px);
}

@media (max-width: 1024px) {
	.main-header {
		display: flex;
	}
}

.left {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Якщо захочеш додати текст/лого */
.logo {
	font-weight: 700;
	font-size: 18px;
	color: #e5efff;
}

.right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

/* Кнопка Back – вторинна, але помітна */
.back-btn-header {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(15, 23, 42, 0.92);
	color: #e5e7eb;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.65);
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.6);
	transition:
		background 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.2s ease;
}

.back-btn-header:hover {
	background: rgba(30, 64, 175, 0.95);
	box-shadow: 0 3px 10px rgba(37, 99, 235, 0.75);
	transform: translateY(-1px);
}

.arrow-header {
	font-size: 16px;
	line-height: 1;
}

/* Головна CTA-кнопка Channel Info */
.channel-info-btn2 {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	background: rgb(10, 73, 165);
	border-radius: 9px;
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	transition:
		transform 0.18s ease,
		box-shadow 0.25s ease;
}

.channel-info-btn2:hover {
	transform: scale(1.04);
}

/* Пульсуюча "аура" */
.channel-info-btn2::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: 0 0 18px rgba(56, 189, 248, 0.9);
	opacity: 0.6;
	animation: channelPulse 1.9s infinite ease-out;
	z-index: -1;
}

@keyframes channelPulse {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	100% {
		transform: scale(1.22);
		opacity: 0;
	}
}

/* Стрілка всередині кнопки */
.channel-info-btn2 .arrow-blink-btn {
	width: 13px;
	height: 13px;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	transform: rotate(-45deg);
	animation: arrowBlink 1.1s infinite;
}

@keyframes arrowBlink {
	0% {
		opacity: 1;
		transform: rotate(-45deg) translate(0, 0);
	}
	50% {
		opacity: 0.45;
		transform: rotate(-45deg) translate(3px, 3px);
	}
	100% {
		opacity: 1;
		transform: rotate(-45deg) translate(0, 0);
	}
}

/* Трохи піджати на дуже малих екранах */
@media (max-width: 480px) {
	.main-header {
		padding: 8px 10px;
	}

	.back-btn-header {
		padding: 4px 10px;
		font-size: 12px;
	}

	.channel-info-btn2 {
		padding: 6px 14px;
		font-size: 13px;
	}
}

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

.logo-wrapper span {
	overflow: hidden;
}

.logo-channel {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	background: #d1d4d8;
}

/* @media (max-width: 451px) {
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
  }
} */

.corp {
	color: #070708;
	text-align: center;
	font-family: Poppins;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	/* display: none; */
}

@media (max-width: 489px) {
	.corp {
		font-size: 11px;
		white-space: wrap;
	}
}

.footer-btn-groups {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.footer-btn-groups a {
	width: 100%;
}

.footer-btn {
	width: 100%;
	height: auto;
}

.footer-post {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
}

.corp-post {
	color: #070708;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.main {
	flex: 1 1 auto; /* ✅ займає все що лишилось */
	min-height: 0; /* ✅ must-have */
	overflow-y: auto; /* ✅ скрол тут */
	overflow-x: hidden;

	/* прибираємо вертикальне центрування */
	display: block; /* ✅ або flex, але без align-items:center */
	padding: 6px 0 0;
	-webkit-overflow-scrolling: touch; /* ✅ iOS */
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start; /* ✅ */
	max-width: 495px;
	margin: 0 auto;
	padding: 0 15px;
	min-height: 0;
	padding-top: 12px; /* ✅ щоб не прилипало */
}

@media (min-height: 800px) {
	.container {
		justify-content: center; /* ✅ тільки коли екран по висоті великий */
		min-height: 100%;
	}
}

.title {
	margin: 0 auto;
	max-width: 403px;
	color: #070708;
	text-align: center;
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px; /* 100% */
	letter-spacing: 0.18px;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.title {
		font-size: 17px;
	}
}

.subtitle {
	color: #070708;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 22px; /* 157.143% */
	letter-spacing: 0.5px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	text-transform: uppercase;
	margin-top: 8px;
}

@media (max-width: 768px) {
	.subtitle {
		font-size: 12px;
	}
}

.image {
	display: block;
	margin: 20px 0 28px;
	max-width: 495px;
	object-fit: contain;
	width: 100%;
	border-radius: 12px;
	max-height: 320px;
}

.video {
	height: auto;
	display: block;
	border-radius: 12px;
	max-width: 495px; /* або 100% — якщо хочеш всю ширину контейнера */
	margin: 20px 0 28px;
	object-fit: contain;
}

.audio {
	width: 100%;
	max-width: 495px;
	margin: 0 0 20px;
}

.info-wrapper {
	width: 100%;
}

.info-inner {
	display: flex;
	align-items: center;
	/* justify-content: center; */
	gap: 16px;
	width: 100%;
}

.avatar {
	max-width: 70px;
	max-height: 70px;
	object-fit: cover;
	width: 100%;
	border-radius: 50%;
}

.wrap-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* min-width: max-content; */
	/* white-space: nowrap; */
	/* overflow: hidden; */
	text-overflow: ellipsis;
	word-break: break-word;
	overflow-wrap: break-word;
	hyphens: auto; /* Додає дефіси там, де можливо */
}

.name {
	color: #070708;
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px; /* 100% */
	word-break: break-word;
	overflow-wrap: break-word;
	hyphens: auto; /* Додає дефіси там, де можливо */
}

@media (max-width: 768px) {
	.name {
		font-size: 17px;
	}
}

.type {
	color: #070708;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 150% */
	letter-spacing: 0.15px;
	word-break: break-word;
	overflow-wrap: break-word;
	hyphens: auto; /* Додає дефіси там, де можливо */
}

/* @media (max-width: 768px) {
  .type {
    font-size: 14px;
  }
} */

.members {
	color: #070708;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; /* 142.857% */
	letter-spacing: 0.25px;
}

@media (max-width: 768px) {
	.members {
		font-size: 12px;
	}
}

.description {
	max-width: 478px;
	margin: 0 auto;
	color: #070708;
	white-space: nowrap;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
	letter-spacing: 0.5px;
	text-wrap: revert;
	padding: 12px 0 0;
	word-break: break-word;
	overflow-wrap: break-word;
	hyphens: auto; /* Додає дефіси там, де можливо */
}

.link-button {
	display: block;
	font-size: 13px;
	margin: 20px 0 8px;
	color: #5b6166;
	text-decoration: none;

	&:hover {
		text-decoration: underline;
	}
}

/* @media (max-width: 768px) {
  .description {
    font-size: 14px;
  }
} */

.text {
	color: #070708;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	max-width: 268px;
	padding: 10px 0 12px;
	word-break: break-word;
	overflow-wrap: break-word;
	hyphens: auto; /* Додає дефіси там, де можливо */
}

/* @media (max-width: 768px) {
  .text {
    font-size: 12px;
  }
} */

.btn {
	display: flex;
	width: 190px;
	height: 51px;
	padding: 16px 32px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	border-radius: 14px;
	background: #0a49a5;
	text-decoration: none;
	border: none;
	outline: none;

	color: #fff;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 19px; /* 118.75% */
	cursor: pointer;
}

@media (max-width: 768px) {
	.btn {
		font-size: 14px;
		height: 39px;
		padding: 7px 32px;
	}
}

.avatar-text {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #070708;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	text-transform: uppercase;
	background-color: #efe2ea;
	width: 70px;
	height: 70px;

	border-radius: 50%;
}

.app-opening-indicator {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	width: 100%;
	height: 100%;
	font-size: 16px;
	color: #a2a1a1;
	font-weight: 500;
}

.dots::after {
	content: '';
	display: inline-block;
	width: 1em;
	text-align: left;
	animation: dots-appear 1s steps(4, end) infinite;
}

@keyframes dots-appear {
	0% {
		content: '';
	}
	25% {
		content: '.';
	}
	50% {
		content: '..';
	}
	75% {
		content: '...';
	}
	100% {
		content: '';
	}
}

.media {
	max-width: 495px;

	/* 👇 головне */
	max-height: 50dvh; /* або 70vh */
	height: auto;

	object-fit: contain;
	border-radius: 12px;

	display: block;
	margin: 20px 0 28px;
}

.button-group {
  display: flex;
  gap: 8px;
}

.icon-button {
  border: none;
  max-width: 190px;
  max-height: 48px;
}

.icon-button:hover {
  background-color: #e0e0e0;
}

.icon-button img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* @media (max-width: 668px) {
  .button-group {
    flex-wrap: wrap;
    justify-content: center;
  }
} */

/* Image modal */
.e-image-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.e-image-modal::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 0;
}

.e-image-modal__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	filter: blur(20px);
	transform: scale(1.1);
	z-index: -1;
}

.e-image-modal__content {
	max-width: calc(100vw - 24px);
	max-height: calc(100vh - 24px);
}

.e-image-modal__content img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.e-image-modal__close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/* Preview */
.preview-wrapper {
	position: relative;
	width: 100%;
	/* aspect-ratio: 16 / 9; */
	overflow: hidden;
	background: transparent;
}

.preview-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 160ms ease;
}

.preview-wrapper--loaded .preview-img {
	opacity: 1;
}

.preview-wrapper--loaded {
	height: 100%;
	max-height: none;
	background-color: transparent;
}

.preview-wrapper img {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	max-height: 100%;
	object-fit: cover;
	background-color: transparent;
}

.preview-wrapper--loaded img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	background-color: transparent;
}

.preview-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: blur(20px);
	width: 100%;
	transform: scale(1.1);
	z-index: 1;
	background-color: transparent;
}

/* Document */
.document-wrapper {
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f9f9f9;
}

.document-wrapper-img {
	width: 60px !important;
	height: 60px !important;
	color: #2a62ff !important;
}

.document-wrapper a {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: rgb(10, 73, 165);
	font-weight: 600;
	font-size: 16px;
}

.document-info div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.document-info p {
	overflow-wrap: break-word; /* сучасний стандарт */
	word-break: break-word; /* fallback */
	text-transform: lowercase;
}

.document-info small {
	font-size: 12px;
	color: #666;
}

/* forwarded */
.e-post-forwarded {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px 0;

	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.e-post-forwarded__logo {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	overflow: hidden;
	flex: 0 0 auto;

	display: grid;
	place-items: center;

	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.e-post-forwarded__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.e-post-forwarded__initials {
	font-size: 12px;
	font-weight: 600;
	opacity: 0.9;
}

.e-post-forwarded__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.e-post-forwarded__label {
	font-size: 12px;
	opacity: 0.65;
}

.e-post-forwarded__name {
	font-size: 14px;
	font-weight: 600;
	opacity: 0.95;
}

/* reply */
.e-post-reply {
	position: relative;
	width: calc(100% - 20px);
	margin: 12px 10px 0;
	padding: 8px 5px;
	background: #3271f9e6;
	overflow: hidden;

	border-radius: 6px;
	border: 0;
	text-align: left;
	cursor: pointer;
}

.e-post-reply__bar {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 3px;
	height: 100%;
	border-radius: 2px;
	background: rgba(1, 59, 110, 0.9);
}

.e-post-reply__text {
	display: grid;
	gap: 2px;
	min-width: 0;
	color: #fff;
	margin-left: 10px;
}

.e-post-reply__title {
	font-size: 13px;
	line-height: 1.15;
	letter-spacing: 1.1;
	color: #ffff;
	font-weight: 700;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 5px;
}

.e-post-reply__snippet {
	font-size: 12px;
	line-height: 1.15;
	color: #ffff;
	font-weight: normal;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* reply media preview in reply */
.e-post-reply__info-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.e-post-reply__photo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.wrapper-btn {
	display: none;
}

.only-available {
	font-size: 15px;
	font-weight: 600;
	color: #222;
	text-align: center;
	padding: 8px 0;
}

@media (max-width: 768px) {
	.wrapper-btn {
		display: block;
	}

	.only-available {
		display: none;
	}
}

.e-slider-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background:
		radial-gradient(circle at top, rgba(30, 136, 229, 0.35), transparent),
		radial-gradient(circle at bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.98));
	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	pointer-events: none;
	transform: scale(1.02);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}

.e-slider-overlay--visible {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1);
}

/* Внутрішній контейнер слайдера */
.e-slider {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1100px;
	max-height: 90vh;
	padding: 40px 72px;
	box-sizing: border-box;

	display: flex;
	align-items: center;
	justify-content: center;
}

/* Обгортка для картинок */
.e-slider__image-wrapper {
	flex: 1;
	max-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(135deg, #1d1f27, #15161c);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.e-slider__image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	animation: e-slider-image-fade 0.25s ease;
}

@keyframes e-slider-image-fade {
	from {
		opacity: 0;
		transform: scale(0.97);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Кнопка закриття */
.e-slider__close {
	position: absolute;
	top: 18px;
	right: 22px;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	color: #ffffff;
	background: rgba(15, 17, 26, 0.85);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.15s ease;
}

.e-slider__close:hover {
	background: rgba(35, 40, 64, 0.95);
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}

.e-slider__close:active {
	transform: translateY(0);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}

/* Стрілки навігації */
.e-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
	color: #ffffff;
	background: rgba(15, 17, 26, 0.9);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.15s ease;
}

.e-slider__nav--prev {
	left: 20px;
}

.e-slider__nav--next {
	right: 20px;
}

.e-slider__nav:hover {
	background: rgba(46, 100, 220, 0.95);
	transform: translateY(-50%) scale(1.03);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
}

.e-slider__nav:active {
	transform: translateY(-50%) scale(0.97);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.65);
}

/* Лічильник */
.e-slider__counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	color: #f3f4ff;
	background: rgba(10, 12, 20, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(10px);
}

/* 📱 Адаптив для мобілок */
@media (max-width: 768px) {
	.e-slider {
		padding: 16px 12px 30px;
		max-height: 100vh;
	}

	.e-slider__close {
		top: 10px;
		right: 12px;
		width: 48px;
		height: 48px;
		font-size: 26px;
	}

	.e-slider__nav {
		width: 54px;
		height: 54px;
		font-size: 22px;
		line-height: 22px;
		top: auto;
		bottom: 32px;
		transform: translateY(0);
	}

	.e-slider__nav--prev {
		left: 20px;
	}

	.e-slider__nav--next {
		right: 20px;
	}

	.e-slider__nav:hover {
		transform: scale(1.02);
	}

	.e-slider__nav:active {
		transform: scale(0.96);
	}

	.e-slider__counter {
		bottom: 10px;
	}
}

/* =========================
   VideoMedia
   ========================= */

.e-video__player {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 0 !important;
}

.e-video__meta {
	position: absolute;
	top: 0;
	left: 10px;
	right: 10px;
	z-index: 2;

	display: flex;
	align-items: center;
	gap: 8px;

	padding: 8px 10px;
	border-radius: 10px;

	color: #fff;
	font-size: 13px;
	font-weight: 600;

	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(10px);

	opacity: 0;
	transform: translateY(-6px);
	pointer-events: none;
	transition:
		opacity 0.18s ease,
		transform 0.18s ease;
}

.e-video__meta-apple {
	top: 0;
}

@media (max-width: 1024px) {
	.e-video__meta {
		display: none;
	}
}

.e-video:hover .e-video__meta {
	opacity: 1;
	transform: translateY(0);
}

.e-video__name {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.e-video__size {
	opacity: 0.85;
	font-weight: 500;
	white-space: nowrap;
}

.e-video__controls {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	box-sizing: border-box; /* ✅ padding не “вилазить” */
	max-width: 100%;
	min-width: 0; /* ✅ дозволяє стискатися flex-дітям */
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 10px 15px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.e-video__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	color: #fff;
	/* font-size: 18px; */
	cursor: pointer;
}

.e-video__btn svg {
	width: 24px;
	height: 24px;
}

/* ===== Base ===== */
.e-video__range,
.e-video__volume {
	--progress: 0%;
	-webkit-appearance: none;
	appearance: none;
	height: 4px;
	background: transparent;
	cursor: pointer;
}

/* ✅ range розтягується */
.e-video__range {
	flex: 1;
	min-width: 0;
}

/* ✅ volume фіксована */
.e-video__volume {
	width: 70px;
	flex: 0 0 auto;
}

/* ===== WebKit (Chrome, Edge, Safari) ===== */
.e-video__range::-webkit-slider-runnable-track,
.e-video__volume::-webkit-slider-runnable-track {
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(
		90deg,
		#4baaff 0%,
		#0a49a5 var(--progress),
		rgba(255, 255, 255, 0.35) var(--progress),
		rgba(255, 255, 255, 0.35) 100%
	);
}

.e-video__range::-webkit-slider-thumb,
.e-video__volume::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #ffffff;
	margin-top: -5px; /* центруємо по треку */
	box-shadow: 0 0 0 2px rgba(75, 170, 255, 0.35);
}

/* ===== Firefox ===== */
.e-video__range::-moz-range-track,
.e-video__volume::-moz-range-track {
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(
		90deg,
		#4baaff 0%,
		#0a49a5 var(--progress),
		rgba(255, 255, 255, 0.35) var(--progress),
		rgba(255, 255, 255, 0.35) 100%
	);
}

.e-video__range::-moz-range-thumb,
.e-video__volume::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: none;
	background: #ffffff;
	box-shadow: 0 0 0 2px rgba(75, 170, 255, 0.35);
}

/* ===== Hover / Active (Telegram-like) ===== */
.e-video__range:hover::-webkit-slider-thumb,
.e-video__volume:hover::-webkit-slider-thumb {
	transform: scale(1.1);
}

.e-video__range:active::-webkit-slider-thumb,
.e-video__volume:active::-webkit-slider-thumb {
	transform: scale(1.2);
}

/* ===== Layout ===== */
.e-video__range {
	flex: 1;
}

.e-video__volume {
	width: 70px;
}

.e-video__time {
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0.95;
	flex: 0 0 auto;
}

/* Коли в fullscreen (desktop через requestFullscreen або iOS pseudo) */
.e-video.is-fullscreen {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.e-video.is-fullscreen .e-video__player {
	width: 100%;
	height: 100%;
	object-fit: contain; /* або cover якщо хочеш як сторіс */
	border-radius: 0 !important;
}

/* щоб контролли були поверх */
.e-video.is-fullscreen .e-video__controls {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

/* ✅ за замовчуванням controls сховані */
.e-video__controls {
	opacity: 0;
	transform: translateY(6px);
	pointer-events: none;
	transition:
		opacity 0.18s ease,
		transform 0.18s ease;
	z-index: 3;
}

/* ✅ показ при hover (desktop) */
.e-video:hover .e-video__controls {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/* ✅ показ по класу (mobile / коли рухаєш / коли натиснув) */
.e-video.show-controls .e-video__controls {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

@media (max-width: 520px) {
	.e-video__volume {
		width: 48px; /* ✅ компактніше */
	}
	.e-video__time {
		font-size: 11px;
	}
}

/* ✅ FIX: у fullscreen ratio має займати весь екран */
.e-video.is-fullscreen .e-video__ratio {
	width: 100%;
	height: 100% !important; /* ✅ перебиває 300px */
	aspect-ratio: auto !important; /* ✅ щоб не стискало */
}

/* ✅ FIX: відео на весь екран */
.e-video.is-fullscreen .e-video__player {
	width: 100%;
	height: 100%;
	object-fit: contain; /* або cover */
}

/* (опційно) коли fullscreen — не треба mobile-height правила */
@media (max-width: 768px) {
	.e-video.is-fullscreen {
		height: 100% !important;
	}
	.e-video.is-fullscreen .e-video__ratio {
		height: 100% !important;
	}
}

.preview-wrapper,
.e-video__ratio {
	position: relative;
}

.media-loader {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;

	/* ✅ прибрали чорний фон */
	background: transparent;
	backdrop-filter: none;

	/* щоб не було кліків по лоудеру */
	pointer-events: none;
}

.media-loader__pct {
	line-height: 1.2;
	letter-spacing: 0.2px;
	opacity: 0.95;
}

.media-loader__bar {
	margin-top: 8px;
	width: 100%;
	height: 5px;
	border-radius: 999px;

	/* ✅ м’якша шкала */
	background: rgba(255, 255, 255, 0.18);
	overflow: hidden;
}

.media-loader__barFill {
	height: 100%;
	width: 0%;
	border-radius: 999px;

	/* ✅ світла лінія прогресу */
	background: rgba(255, 255, 255, 0.92);

	transition: width 140ms linear;
}

.e-video-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
}

.e-video-modal__inner {
	position: relative;
	width: min(920px, 100%);
}

.e-video-modal__close {
	position: absolute;
	top: 8px;
	right: 8px;
	border: 0;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border-radius: 10px;
	padding: 6px 10px;
	cursor: pointer;
}

.e-video__stub {
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.35);
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 28px;
}

/* =========================
   Circular Media Loader
   ========================= */

.media-loader__box {
	padding: 0;
	border-radius: 999px;
	background: transparent;
	border: 0;
	box-shadow: none;

	width: 86px; /* ✅ додай */
	height: 86px; /* ✅ додай */
}

.media-loader__circle {
	width: 86px; /* ✅ замість 100% */
	height: 86px; /* ✅ */
	border-radius: 999px;

	display: grid;
	place-items: center;

	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);

	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.22),
		0 2px 10px rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.18);

	position: relative;
}

.media-loader__svg {
	position: absolute;
	inset: 10px;
	width: calc(100% - 20px); /* ✅ */
	height: calc(100% - 20px); /* ✅ */
	transform: rotate(-90deg);
}

.media-loader__track {
	fill: none;
	stroke: rgba(154, 154, 154, 0.22);
	stroke-width: 3.2;
	stroke-linecap: round;
}

.media-loader__progress {
	fill: none;
	stroke: rgb(10, 73, 165);
	stroke-width: 3.2;
	stroke-linecap: round;
	transition: stroke-dasharray 140ms linear;
}

.media-loader__pct {
	font-weight: 800;
	font-size: 14px;
	color: rgb(10, 73, 165);
	letter-spacing: 0.2px;
}

.e-video__adLayer {
	position: absolute;
	inset: 0;
	z-index: 10;
	pointer-events: none; /* ✅ дефолт: не блокує UI */
}

.e-video.is-ad-playing .e-video__adLayer {
	pointer-events: auto; /* ✅ тільки під час реклами */
}

.e-video.is-ad-playing .e-video__controls {
	opacity: 0;
	pointer-events: none; /* ✅ або ховай контролли під час реклами */
}

.e-video__adLayer iframe,
.e-video__adLayer video,
.e-video__adLayer > div {
	width: 100% !important;
	height: 100% !important;
}

.e-video__adLayer {
	background: transparent; /* тимчасово для дебагу */
}

/* (опційно) трохи менше на мобілці */
@media (max-width: 768px) {
	.media-loader__box,
	.media-loader__circle {
		width: 76px;
		height: 76px;
	}
	.media-loader__pct {
		font-size: 13px;
	}
}

.e-video.is-fullscreen .e-video__adLayer {
	z-index: 99999 !important;
}

html.ios-video-fs,
body.ios-video-fs {
	overflow: hidden !important;
	height: 100% !important;
	overscroll-behavior: none;
	touch-action: none;
}

.e-video.is-fullscreen {
	display: block; /* замість flex */
}

.e-video__adLayer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.e-video.is-fullscreen .e-video__adLayer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 99999 !important;
}

/* Глобальний CSS */
body.ios-video-fs * {
	/* Це агресивно, але може допомогти знайти винуватця */
	transform: none !important;
	will-change: auto !important;
	perspective: none !important;
	contain: none !important;
}

/* Або більш специфічно, якщо ви знаєте клас контейнера-слайдера */
body.ios-video-fs .swiper-wrapper,
body.ios-video-fs .modal-content,
body.ios-video-fs .some-parent-container {
	transform: none !important;
	z-index: auto !important;
}

/* iOS fullscreen lock */
html.ios-video-fs,
body.ios-video-fs {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	overscroll-behavior: none;
	touch-action: none;
}

/* щоб 100vh працювало адекватніше через custom vh */
:root {
	--vvh: 1vh;
}

.ad-container {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: inherit;

	/* ✅ contain — НЕ ріжемо */
	overflow: visible;
}

/* ✅ IMA вкладає iframe/div/video — вписуємо їх як contain */
.ad-container iframe,
.ad-container video,
.ad-container > div,
.ad-container * {
	max-width: 100% !important;
	max-height: 100% !important;
	width: 100% !important;
	height: 100% !important;

	/* ключове */
	object-fit: contain !important;
}

.isLcp {
	background: linear-gradient(180deg, #f4f9ff 0%, #eaf3ff 50%, #e0edff 100%);
}

.e-video__controls {
	opacity: 0;
	pointer-events: none;
}
.e-video.show-controls .e-video__controls {
	opacity: 1;
	pointer-events: auto;
}

/* =========================
   EChannelPage (layout + aside)
   ========================= */

/* Загальне */
.e-page {
	height: 100dvh;
	color: #1a1a1a;
	font-family: Roboto, sans-serif;
}

.e-main {
	position: relative;
	align-items: flex-start !important;
}

.e-bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	background-position: center;
	background-size: cover;
}

.main.e-main {
	/* flex: 1 1 auto; */
	min-height: 0; /* ✅ */
	overflow: hidden; /* ✅ */
	display: flex;
}

/* Layout */
.e-inner {
	max-width: 950px;
	margin: 0 auto;
	padding: 0 5px;
	display: flex;
	gap: 24px;
	background: transparent;
	width: 100%;
	flex: 1 1 auto;
}

@media (max-width: 1024px) {
	.e-inner {
		max-width: 540px;
	}

	.e-right.e-right--open {
		display: flex;
		flex-direction: column;
		gap: 12px;
		right: 16px;
	}
}

.e-left {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 2;
	min-width: 0;
	background: transparent;
	width: 100%;
	min-height: 0; /* важливо для скрол-контейнерів усередині */
}

/* Right column / drawer */
.e-right {
	position: relative;
	flex: 1;
	min-width: 380px;
	height: fit-content;
}

@media (max-width: 1024px) {
	.e-right {
		/* drawer */
		flex: none;
		min-width: auto;

		position: fixed;
		top: 72px; /* під header */
		right: -100%;
		width: 90vw;
		min-width: 280px;
		max-width: 360px;
		z-index: 60;
		transition: right 0.25s ease;
		max-height: 620px;
	}
}

.e-right--open {
}

/* Backdrop (mobile) */
.e-right-backdrop {
	display: none;
}

@media (max-width: 1024px) {
	.e-inner {
		flex-direction: column;
	}

	.e-right-backdrop {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.2s ease;
		z-index: 50; /* нижче за aside */
		display: block;
	}

	.e-right-backdrop--open {
		opacity: 1;
		pointer-events: auto;
	}

	.e-right.e-right--open {
		display: flex;
		flex-direction: column;
		gap: 12px;
		right: 16px;
	}
}

/* =========================
   Channel Card (aside content)
   ========================= */
.e-channel-card {
	position: relative;
	background: #ffffff;
	border-radius: 18px;
	padding: 18px 16px 16px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);

	position: sticky;
	top: 100px;
	margin-top: 40px;
}

@media (max-width: 960px) {
	.e-channel-card {
		margin-top: 0;
	}
}

/* Header channel */
.e-channel-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.e-channel-avatar-wrap {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	background: #eef0f4;
}

.e-channel-avatar {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.e-channel-title-wrap {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.e-channel-title {
	font-size: 18px;
	font-weight: 700;
	color: #222;
}

.e-channel-username {
	font-size: 14px;
	color: #777;
}

/* Close button */
.button-close {
	display: none;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

@media (max-width: 1024px) {
	.e-channel-card {
		max-height: calc(100vh - 96px);
		overflow-y: auto;
	}
}

@media (max-width: 768px) {
	.button-close {
		display: block;
	}
}

/* Stats */
.e-channel-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	row-gap: 10px;
	column-gap: 12px;
	margin-bottom: 14px;
}

.e-stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.e-stat-value {
	font-weight: 600;
	font-size: 18px;
	color: #222;
}

.e-stat-label {
	font-size: 12px;
	color: #888;
}

/* About */
.e-channel-about {
	white-space: pre-wrap;
	font-size: 13px;
	line-height: 1.5;
	color: #444;
	margin-bottom: 12px;
}

/* CTA button */
.e-download-btn {
	display: block;
	width: 100%;
	padding: 12px 14px;
	border-radius: 6px;
	border: none;
	background: rgb(10, 73, 165);
	color: #ffffff;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition:
		transform 0.08s ease,
		box-shadow 0.15s ease,
		filter 0.15s ease;
	text-decoration: none;
	text-align: center;
}

.e-download-btn:hover {
	filter: brightness(1.07);
	box-shadow: 0 8px 18px rgba(0, 110, 255, 0.35);
}

.e-download-btn:active {
	transform: translateY(1px);
}

.lan-desktop {
	position: absolute;
	/* left: 12px; */
	right: 12px;
	display: flex;
}

@media (max-width: 1024px) {
	.lan-desktop {
		display: none;
	}
}

/* =========================
   ChannelFeed styles only
   ========================= */

/* Feed scroll (ChannelFeed) */
.e-feed-scroll {
  display: flex;
  flex-direction: column;
  gap: 10px;

  height: calc(100dvh);
  overflow-y: auto;

  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  overflow-anchor: none;
  background: transparent;

  scroll-behavior: auto;
  scrollbar-gutter: stable both-edges;
  padding: 0 5px 20px;

  /* optional mask */
  -webkit-mask-image: none;
  mask-image: none;

  scroll-snap-type: none;
}

/* Desktop: красивий thin scrollbar */
@media (hover: hover) and (pointer: fine) {
  /* Firefox */
  .e-feed-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(60, 120, 255, 0.55) rgba(255, 255, 255, 0.08);
  }

  /* Chrome/Safari/Edge */
  .e-feed-scroll::-webkit-scrollbar {
    width: 10px;
  }

  .e-feed-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
  }

  .e-feed-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(
      180deg,
      rgba(70, 150, 255, 0.75),
      rgba(30, 90, 255, 0.55)
    );
    border-radius: 999px;
    border: 2px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
  }

  .e-feed-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
      180deg,
      rgba(90, 170, 255, 0.9),
      rgba(40, 110, 255, 0.75)
    );
  }
}

/* Mobile: не ліземо в scrollbar */
@media (hover: none) and (pointer: coarse) {
  .e-feed-scroll {
    scrollbar-width: none;
  }
  .e-feed-scroll::-webkit-scrollbar {
    display: none;
  }
}

/* маленький лоудер зверху */
.e-feed-top-loader {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 10px 12px;
  font-size: 13px;
  opacity: 0.8;
  backdrop-filter: blur(6px);
}

/* Date separator у фіді */
.e-date-separator {
  position: relative;
  padding: 6px 14px;
  width: max-content;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);

  font-size: 12px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.07em;

  background: rgba(7, 7, 8, 0.4);

  border-radius: 10px;

  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);

  user-select: none;
}

/* прибиваємо scroll anchoring для фіда */
.e-feed-scroll { overflow-anchor: none; }
.e-feed-scroll * { overflow-anchor: none; }

/* link preview reserve (використовується у фіді, щоб не було layout shift) */
.lp-reserve {
  contain: layout paint;
  margin-top: 10px;
  min-height: 151px;
  overflow: hidden;
}

@media (max-width: 961px) {
  .e-feed-scroll {
    height: calc(100dvh - 48px);
  }
}

@media (max-width: 768px) {
  .e-feed-scroll {
    height: calc(100dvh - 57px);
  }

  .lp-reserve {
    min-height: 196px;
  }
}

body.modal-open .e-feed-scroll {
  overflow: hidden !important;
}

body.modal-open {
  overscroll-behavior: none;
}

body.modal-open .e-feed-scroll {
  touch-action: none;
}

/* =========================
   PostCard styles only
   ========================= */

/* Card root */
.e-post-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	flex-shrink: 0;
	width: 100%; /* ✅ */
	max-width: 520px; /* ✅ підбери під дизайн, або прибери */
}

/* Header (якщо використовується всередині PostCard) */
.e-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	padding: 8px 15px 5px;
	font-family: Roboto, sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
	background: linear-gradient(135deg, #63a1ff, #aed6fc);
}

.e-header-link {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: inherit;
}

.e-header-logo {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	object-fit: cover;
}

.e-post-time {
	display: flex;
	align-items: center;
}

.e-header-button-more {
	padding: 6px 14px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #2b67f6;
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: all 0.25s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.e-header-button-more:hover {
	background: rgba(255, 255, 255, 0.8);
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.e-header-button-more:active {
	transform: translateY(0);
	background: rgba(255, 255, 255, 0.65);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* (Optional) old images grid — якщо десь ще використовується */
.e-post-images {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
	background: #eaeaea;
}

.e-post-image {
	position: relative;
	padding-bottom: 60%;
	overflow: hidden;
}

.e-post-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Body */
.e-post-body {
	padding: 16px 18px 14px;
}

.e-post-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
	color: #111;
}

.e-post-text {
	font-size: 16px;
	line-height: 1.55;
	color: #070708;
	opacity: 0.9;
	margin-bottom: 12px;
	white-space: pre-line;
}

.e-post-text a {
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
}

/* Footer + reactions */
.e-post-footer {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	opacity: 0.8;
	color: #555;
}

.e-post-source {
	color: #2a62ff;
}

.e-post-reactions {
	display: flex;
	gap: 8px;

	align-items: center;
}

.e-post-reactions span {
	border: 1px solid rgba(255, 255, 255, 0.4);
	font-size: 13px;
	color: #444;

	background: rgb(63, 79, 255, 0.1);
	padding: 6px 10px;
	border-radius: 12px;
	backdrop-filter: blur(4px);
}

.e-post-views {
	display: flex;
	align-items: center;
	gap: 4px;
}

/* reactions outside card (коли тільки медіа) */
.e-post-reactions-outside {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;

	width: 100%;
	margin-top: 12px;
	margin-bottom: 13px;
	padding: 0 14px;
	color: #555;
}

/* Media grid inside card */
.e-post-media {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: rgb(209, 212, 216, 0.75);
}

.e-post-media-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
	background: transparent;
	width: 100%;
}

.e-post-media-grid.odd > .e-post-media:last-child {
	grid-column: span 2;
}

.e-post-media img,
.e-post-media video {
	width: 100%;
	height: 100%;
	display: block;
}

.single {
	grid-template-columns: 1fr !important;
}

/* Highlight (jump to reply) */
.e-post-highlight .e-post-card {
	animation: eFlash 2s ease;
	outline: 2px solid rgba(76, 163, 255, 0.35);
	outline-offset: 3px;
	border-radius: 14px;
}

@keyframes eFlash {
	0% {
		box-shadow: 0 0 0 rgba(76, 163, 255, 0);
	}
	25% {
		box-shadow: 0 0 0 6px rgba(76, 163, 255, 0.18);
	}
	100% {
		box-shadow: 0 0 0 rgba(76, 163, 255, 0);
	}
}

/* зробити .e-video контейнером (якщо ще не додав) */
.e-video {
	container-type: inline-size;
	height: 100%;
}

/* =========================================
   Narrow controls: SEEK on top + logical row
   ========================================= */
@container (max-width: 400px) {
	.e-video__controls {
		display: grid; /* ✅ замість flex */
		grid-template-columns: auto auto 1fr minmax(40px, 64px) auto;
		grid-template-areas:
			'seek seek seek seek seek'
			'play mute time volume fs';
		gap: 6px 8px;
		padding: 8px 8px 14px 8px;
		align-items: center;
	}

	/* SEEK зверху на всю ширину */
	.e-video__range {
		grid-area: seek;
		width: 100%;
		min-width: 0;
		margin: 0;
		padding-bottom: 14px;
	}

	/* TIME по центру другого рядка */
	.e-video__time {
		grid-area: time;
		justify-self: start;
		font-size: 10px;
		white-space: nowrap;
		opacity: 0.9;
		line-height: 17px;
	}

	/* VOLUME перед fullscreen */
	.e-video__volume {
		grid-area: volume;
		width: 100%;
		min-width: 0;
		padding-right: 5px;
	}

	/* КНОПКИ: play / mute / fullscreen */
	.e-video__controls > .e-video__btn:nth-of-type(1) {
		grid-area: play;
	}
	.e-video__controls > .e-video__btn:nth-of-type(2) {
		grid-area: mute;
	}
	.e-video__controls > .e-video__btn:nth-of-type(3) {
		grid-area: fs;
	}

	/* компактніше */
	.e-video__btn svg {
		width: 24px;
		height: 24px;
	}
}

@container (max-width: 260px) {
	.e-video__volume {
		display: none;
	}

	.e-video__controls {
		grid-template-columns: auto auto 1fr auto;
		grid-template-areas:
			'seek seek seek seek'
			'play mute time fs';
	}
}

.e-post-media__box {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 0;
	background: transparent;
}

/* щоб PostImage точно заповнював box */
.e-post-media__box .preview-wrapper {
	position: absolute; /* важливо */
	inset: 0; /* зайняти весь e-post-media__box */
	overflow: hidden;
	border-radius: inherit;
	background: transparent; /* або прибери, якщо було */
}

/* Single vertical video: card width follows media ratio (no "wide card" feeling) */
.e-post-card--fit-media {
	width: 100%;
	/* 520px — твій ліміт, а calc(70vh * ratio) дає “нативну” ширину під capped height */
	max-width: min(520px, calc(70vh * var(--media-ratio)));
	margin-left: 0;
	margin-right: 0;
}

/* =========================
   PostBody
   ========================= */

.e-post-body {
	padding: 16px 18px 16px;
}

/* Title */
.e-post-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
	color: #111;
}

/* Text */
.e-post-text {
	font-size: 18px;
	line-height: 1.55;
	color: #070708;
	opacity: 0.9;
	margin-bottom: 12px;
	white-space: pre-line;
}
.e-post-text strong {
	font-size: 18px;
}

.e-post-text strong {
	font-weight: 600;
}

/* Links inside text */
.e-post-text a {
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
}

/* Footer */
.e-post-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-size: 13px;
	opacity: 0.8;
	color: #555;
}

/* Reactions */
/* .e-post-reactions {
  display: flex;
  gap: 8px;
  color: #444;

  background: rgba(0, 0, 0, 0.04);
  padding: 6px 10px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  align-items: center;
} */

.e-post-reactions span {
	font-size: 16px;
}

.e-post-views {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	background: rgb(63, 79, 255, 0.1);
	padding: 6px 10px;
	border-radius: 12px;
	backdrop-filter: blur(4px);
}

/* =========================
   Link preview reserve
   (pure URL case)
   ========================= */

.lp-reserve {
	margin-top: 10px;
	min-height: 151px; /* desktop default */
	overflow: hidden;
	contain: layout paint;
}

@media (max-width: 768px) {
	.lp-reserve {
		min-height: 196px; /* mobile */
	}
}

/* =========================
   Inline text helpers
   ========================= */

.hashtag {
	color: #0a49a5;
	cursor: pointer;
	font-weight: 500;
}

.hashtag:hover {
	text-decoration: underline;
}

/* optional link style if needed */
.link {
	color: #0a49a5;
	cursor: pointer;
	font-weight: 500;
	text-decoration: none;
	border: none;
	background-color: transparent;
	font-size: 18px;
	text-align: left;
}

.e-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	overflow: hidden;
}
.e-modal__card {
	max-height: 80vh;
	min-height: 20px;
	overflow: auto;
	background: #fff;
	border-radius: 12px;
	padding: 14px;
	position: relative;
	margin-top: 1;
	min-width: 400px;

	overscroll-behavior: contain; /* ✅ не “передає” скрол на body */
	-webkit-overflow-scrolling: touch; /* ✅ м’якше на iOS */
}

@media (max-width: 768px) {
	.e-modal__card {
		min-width: 200px;
		width: 100%;
	}
}

.e-modal__close-wrapper {
	position: sticky;
	top: 0;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 10px;
}

.e-modal__close {
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	border: 0;
	color: #111;
	cursor: pointer;
	font-size: 26px;
	border-radius: 50%;
	border: 1px solid #555;
	width: 42px;
	height: 42px;
}

.empty {
	color: #999;
	font-size: 18px;
}

.wrapper-status-img {
	width: 120px;
	height: 120px;
	display: block; /* ✅ прибирає inline-gap */
	object-fit: contain; /* ✅ */
}

.wrapper-status {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	min-height: 40vh;
}
.error {
	color: red;
}
.loading {
	color: #0a49a5;
}

.openAppOverlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.openAppOverlayClose {
	position: absolute;
	right: 10px;
	top: 10px;
}

.openAppBox {
	position: relative;
	width: min(320px, calc(100vw - 32px));
	background: #fff;
	border-radius: 16px;
	padding: 14px 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
	text-align: center;
}

.spinner {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 3px solid rgba(0, 0, 0, 0.12);
	border-top-color: rgba(0, 0, 0, 0.65);
	margin: 4px auto 10px;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.openAppTitle {
	font-weight: 600;
}
.openAppSub {
	margin-top: 6px;
	font-size: 13px;
	opacity: 0.75;
}

.iosWrap {
	position: relative;
	width: 100%;
	background: #000;
}

.iosWrap--fs {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999999;
	background: #000;
}

.iosVideo {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: contain;
	background: #000;
}

/* 🔥 КРИТИЧНО: цей слой має бути ПОВЕРХ відео, інакше буде "звук є, картинки нема" */
.iosAdLayer {
	position: absolute;
	inset: 0;
	z-index: 5;
	background: #000;
	display: none;

	/* щоб кліки по рекламі працювали */
	pointer-events: auto;
	touch-action: manipulation;
}

.iosAdLayer--active {
	display: block;
}

.iosFsBtn {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 10;

	padding: 10px 12px;
	border-radius: 10px;
	border: 0;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.iosFsBtn:disabled {
	opacity: 0.5;
}

.iosFsBtn--exit {
	left: 12px;
	right: auto;
}

.play-to-screen {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	z-index: 2;
	background-color: transparent;
}

.wrapper {
	display: flex;
	flex-direction: column;
	height: 100%; /* ✅ важливо */
	min-height: 0; /* ✅ для flex *
}

.main {
	display: flex;
	align-items: center;
	/* flex-grow: 1; */
	padding: 6px 0 0;
}

@media (max-width: 768px) {
	.main {
		display: block;
	}
}

.not-found-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.not-found-img {
	max-width: 240px;
	object-fit: contain;
}

.not-found-text {
	text-align: center;
	font-family: Roboto;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
	color: #2c2c33;
}

/* @media (max-width: 768px) {
  .not-found-text {
    display: block;
  }
} */

.paragraph {
	margin: 0 auto;
	max-width: 478px;
	color: #070708;
	text-align: center;
	font-family: Roboto;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.18px;
	text-transform: uppercase;
}

html,
body {
	height: 100%;
	overflow: hidden; /* ✅ головне */
	overscroll-behavior: none; /* не всюди на iOS, але ок */
	font-family: Roboto, Arial, Helvetica, sans-serif;
}

#root,
.wrapper.e-page {
	height: 100%;
	overflow: hidden; /* ✅ */
}

.orientation-warning {
	display: none; /* базово приховано */
	position: fixed;
	inset: 0;
	z-index: 9999;

	flex-direction: column;
	align-items: center;
	justify-content: center;

	background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95));
	color: #fff;
	text-align: center;

	padding: 24px;
	box-sizing: border-box;
}

.orientation-warning .icon {
	font-size: 48px;
	line-height: 1;
	margin-bottom: 16px;

	animation: rotateHint 1.6s ease-in-out infinite;
}

.orientation-warning p {
	font-size: 16px;
	line-height: 1.4;
	max-width: 280px;
	opacity: 1;
}

@keyframes rotateHint {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-15deg);
	}
	50% {
		transform: rotate(0deg);
	}
	75% {
		transform: rotate(15deg);
	}
	100% {
		transform: rotate(0deg);
	}
}
/* ✅ 1) Правильний кейс: landscape + мобільний/планшет */
@media (orientation: landscape) and (max-width: 1024px) {
	.orientation-warning {
		display: flex;
	}
}

/* ✅ 2) Fallback: якщо orientation не працює — ловимо “низьку висоту” */
@media (max-width: 1024px) and (max-height: 520px) {
	.orientation-warning {
		display: flex;
	}
}

.title2 {
	font-family: Roboto, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 600;
	margin: 14px 0 8px;
}

.paragraph1 {
	font-family: Roboto, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 20px;
}

.link-learn-more {
	display: inline-block;
	padding: 9px 0 6px;
	color: rgb(10, 73, 165);
	font-weight: 600;
	font-family: Roboto, Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-decoration: none;
}

