/*!*********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/shared/components/MusicPlayer/MusicPlayer.scss ***!
  \*********************************************************************************************************************************************/
@charset "UTF-8";
.music-player {
  --brand: #0a49a5;
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}
@media (max-width: 1024px) {
  .music-player {
    border-radius: 0;
  }
}
.music-player__top {
  display: flex;
  gap: 10px;
  align-items: center;
}
.music-player {
  /* ✅ менша кнопка play */
}
.music-player__play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: var(--brand);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 18px rgba(10, 73, 165, 0.22);
}
.music-player__play-icon {
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}
.music-player__pause-icon {
  width: 12px;
  height: 14px;
  position: relative;
}
.music-player__pause-icon::before, .music-player__pause-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 14px;
  background: #fff;
  border-radius: 2px;
}
.music-player__pause-icon::before {
  left: 0;
}
.music-player__pause-icon::after {
  right: 0;
}
.music-player__main {
  flex: 1;
  min-width: 0;
  margin-bottom: 4px;
}
.music-player__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px; /* було 8 */
}
.music-player__title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  color: #0f172a;
  font-size: 14px;
}
.music-player__track-title {
  font-weight: 500;
  line-height: 15px;
}
.music-player__track-artist {
  font-weight: 500;
  color: #6b7280;
}
.music-player__time {
  flex-shrink: 0;
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}
.music-player__time-sep {
  opacity: 0.6;
}
.music-player {
  /* ✅ тонша смуга */
}
.music-player__progress {
  position: relative;
  height: 6px; /* було 10 */
  border-radius: 999px;
  background: rgba(10, 73, 165, 0.12);
  margin: 9px 0;
  overflow: hidden;
  cursor: pointer;
}
.music-player__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--brand);
  border-radius: 999px;
  transition: width 80ms linear;
}
.music-player__progress-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.music-player {
  /* ✅ компактні контролли */
}
.music-player__controls {
  margin-top: 6px; /* було 10 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.music-player__skip {
  display: flex;
  gap: 12px;
}
.music-player__btn {
  border: none;
  outline: none;
  background: #fff;
  color: #0f172a;
  border-radius: 8px;
  padding: 0; /* було 6 10 */
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
}
.music-player__btn svg {
  height: 14px;
  display: block;
}
.music-player__volume {
  display: flex;
  align-items: center;
  gap: 8px;
}
.music-player__volume-range {
  width: 120px; /* можеш лишити як було */
  accent-color: var(--brand);
  height: 5px;
}
.music-player {
  /* ---- Toggle + Overlay ---- */
}
.music-player__playlist-anchor {
  position: relative;
  z-index: 2;
  margin-top: 3px;
}
.music-player__playlist-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  color: rgba(15, 23, 42, 0.7);
  border-radius: 10px;
  /* ✅ трошки компактніше */
  padding: 7px 10px;
  cursor: pointer;
  user-select: none;
}
.music-player__playlist-toggle:hover {
  border-color: rgba(10, 73, 165, 0.35);
}
.music-player__playlist-toggle--open {
  color: #0f172a;
  border-color: rgba(10, 73, 165, 0.35);
}
.music-player__playlist-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.music-player__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(15, 23, 42, 0.55);
  border-bottom: 2px solid rgba(15, 23, 42, 0.55);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}
.music-player__playlist-toggle--open .music-player__chevron {
  transform: rotate(-135deg);
}
.music-player__playlist-overlay {
  position: absolute;
  width: 105%;
  left: -10px;
  right: 0;
  top: calc(100% + 11px);
  z-index: 50;
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
@media (max-width: 1024px) {
  .music-player__playlist-overlay {
    border-radius: 0;
    width: 100%;
    left: 1px;
  }
}
.music-player__playlist-overlay--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.music-player {
  /* ✅ resize тільки вертикально */
}
.music-player__playlist-panel {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  resize: vertical;
  min-height: 120px;
  max-height: 60vh;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0 8px 8px;
}
@media (max-width: 1024px) {
  .music-player__playlist-panel {
    border-radius: 0;
  }
}
.music-player__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.music-player__empty {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.55);
}
.music-player__item {
  margin: 0;
}
.music-player__track {
  display: flex;
  width: 100%;
  border: none;
  background: #fff;
  border-radius: 12px;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}
.music-player__dot {
  position: relative;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(10, 73, 165, 0.35);
  flex: 0 0 auto;
}
.music-player__track-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  line-height: 20px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-align: left;
  flex: 1;
  border-bottom: 1px solid #c5c5c5;
  padding-bottom: 8px;
}
.music-player__track-name {
  font-weight: 500;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
}
.music-player__artist {
  color: rgba(15, 23, 42, 0.55);
  font-size: 13px;
}
.music-player__badge {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  padding: 4px 10px;
  flex: 0 0 auto;
}

.music-player__playlist-panel {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(10, 73, 165, 0.65) rgba(0, 0, 0, 0.06);
}

/* Chrome / Edge / Safari */
.music-player__playlist-panel::-webkit-scrollbar {
  width: 6px;
}

.music-player__playlist-panel::-webkit-scrollbar-track {
  background: transparent;
  /* 👇 відступ зверху і знизу */
  margin: 6px 0;
}

.music-player__playlist-panel::-webkit-scrollbar-thumb {
  background: rgba(10, 73, 165, 0.65);
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.06);
}

.music-player__playlist-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(10, 73, 165, 0.85);
}
/*!*************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/shared/components/VideoMediaIOSNative/VideoMediaIOSNative.scss ***!
  \*************************************************************************************************************************************************************/
@charset "UTF-8";
.vm {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  /* ⛔ прибрати */
  transform: none;
  /* ⛔ часто теж зайве */
  isolation: auto;
  touch-action: manipulation;
}

.vm__video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

.vm__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.48) 39%, rgba(0, 0, 0, 0.65) 95%, rgba(0, 0, 0, 0.71) 100%);
  will-change: opacity; /* ✅ */
  transform: none; /* ✅ ВАЖЛИВО */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.vm__progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.vm__progressTrack {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
}

.vm__progressBuffered {
  position: absolute;
  inset: 0;
  width: 0%;
  background: rgba(255, 255, 255, 0.55);
}

.vm__progressPlayed {
  position: absolute;
  inset: 0;
  width: 0%;
  background: rgb(10, 73, 165);
}

.vm__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  /* ✅ container для time */
  container-type: inline-size;
  container-name: vmbar;
}

.vm__left,
.vm__right {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: nowrap;
}

.vm__btn {
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex: 0 0 auto;
}
.vm__btn:active {
  transform: none; /* ✅ */
  opacity: 0.85;
}
.vm__btn--width {
  width: fit-content;
  height: fit-content;
}

.vm__btn--play {
  width: 14px;
  height: 14px;
}

.vm__time {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  user-select: none;
  white-space: nowrap;
}

/* ✅ правильний контейнерний запит: посилаємось на vmbar */
@container vmbar (max-width: 228px) {
  .vm__time {
    display: none;
  }
}
/* ---------------- VOLUME ---------------- */
.vm__volume {
  position: relative;
  display: inline-flex;
  align-items: center;
  /* офсет поповера */
  --vol-offset: 72px;
  /* межі ширини поповера */
  --vol-popover-min: 68px;
  --vol-popover-max: 102px;
  /* ✅ адаптивна ширина від контейнера vmbar (cqw) */
  --vol-popover-w: clamp(var(--vol-popover-min), 28cqw, var(--vol-popover-max));
}

.vm__volumePopover-wrapper {
  position: absolute;
  left: var(--vol-offset);
  transform: translateX(-50%);
  bottom: -4px;
  padding: 4px 8px;
  left: 65px;
  pointer-events: none;
}

.vm__volumePopover {
  width: var(--vol-popover-w);
  max-width: var(--vol-popover-max);
  padding: 3px 5px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm__range {
  width: 100%;
  height: 10px;
  padding: 0;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  accent-color: rgb(10, 73, 165);
}

.vm__range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

/* 🔵 повзунок */
.vm__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgb(10, 73, 165);
  margin-top: -2px;
}

.vm__range::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.vm__range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgb(10, 73, 165);
  border: none;
}

/* ✅ маленький плеєр: інший офсет + вертикальний поповер */
@container vmbar (max-width: 135px) {
  .vm__volume {
    --vol-offset: 40px;
  }
  .vm__volumePopover-wrapper {
    display: none;
  }
  .vm__volumePopover {
    /* прибрати */
    backdrop-filter: none;
    /* дати норм фон */
    background: rgba(0, 0, 0, 0.35);
  }
  .vm__range {
    width: 90px;
    height: 6px;
    transform: rotate(-90deg);
    transform-origin: center;
  }
}
/* ✅ Fallback (на всяк випадок) */
.vm__volume[data-open="1"] .vm__volumePopover {
  opacity: 1;
  pointer-events: auto;
}

.vm__volume[data-open="1"] .vm__volumePopover-wrapper {
  pointer-events: auto;
}
/*!*****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/shared/components/PostMedia/PostMedia.scss ***!
  \*****************************************************************************************************************************************/
@charset "UTF-8";
.post-media {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.post-media--fullscreen {
  border-radius: 0;
}

.post-media__video {
  width: 100%;
  display: block;
}

.post-media__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 10px;
}

.post-media__grid--one {
  grid-template-columns: 1fr;
  padding: 0;
}

/* media container */
.post-media__cell {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #0b0f1a;
  /* ❌ прибираємо жорсткий ratio */
  aspect-ratio: auto;
}

/* image */
.post-media__img {
  position: relative;
  display: block;
  width: 100%;
  height: auto; /* ✅ ключове */
  max-height: 78vh; /* щоб не займало весь екран */
  object-fit: contain; /* ✅ НЕ cover */
  background: #0b0f1a;
}

.post-media__more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
}
/*!***************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/shared/components/PostText/PostText.scss ***!
  \***************************************************************************************************************************************/
.post-text {
  width: 100%;
}
/*!***********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/shared/components/ElloInstallOverlay/ElloInstallOverlay.scss ***!
  \***********************************************************************************************************************************************************/
@charset "UTF-8";
.ello-install {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* ✅ щоб не скролилось під попапом */
html.ello-overlay-open,
html.ello-overlay-open body {
  overflow: hidden;
}

.ello-install__card {
  position: relative;
  width: min(520px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 26px 22px 22px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
  text-align: center;
}

.ello-install__close {
  position: absolute;
  right: 14px;
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 28px;
}

.ello-install__icon {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: #000;
  margin: 0 auto 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ello-install__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ello-install__brand {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #0b0b0b;
  text-align: center;
}

.ello-install__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
  margin: 6px 0 18px;
  color: #0b0b0b;
  text-align: center;
}

.ello-install__primary {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgb(10, 73, 165);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.ello-install__primary:disabled {
  opacity: 0.7;
  cursor: default;
}

.ello-install__primary--not-border {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.ello-install__primary--not-border:disabled {
  opacity: 0.7;
  cursor: default;
}

.ello-install__primary--preview-сhannel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgb(10, 73, 165);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-decoration: none;
  padding: 8px 15px;
  margin-bottom: 5px;
}
.ello-install__primary--preview-сhannel:disabled {
  opacity: 0.7;
  cursor: default;
}

.ello-install__stores {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.ello-install__store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: #2f2f2f;
  text-decoration: none;
}
.ello-install__store img {
  display: block;
  height: 28px;
  width: auto;
}

.ello-install__hint {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.ello-install__hintLink {
  font-weight: 700;
  color: #0a49a5;
  text-decoration: none;
}
/*!*********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/shared/components/LinkPreview/LinkPreviewCard.css ***!
  \*********************************************************************************************************/
.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%;
  }
}

/*!*****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/shared/components/AudioPlayer/AudioPlayer.css ***!
  \*****************************************************************************************************/
.audio-player {
  display: flex;
  flex-direction: column; /* ✅ робимо 2 рядки: controls + meta */
  gap: 6px;
  padding: 10px 14px;
  width: 100%;
  height: 100%;
  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: #374151; /* було #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: #4b5563; /* було #7e7e7e */
}

.audio-player__size {
  white-space: nowrap;
  color: #4b5563;
  opacity: 1;
}

/*!*******************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/shared/components/Post/Post.scss ***!
  \*******************************************************************************************************************************/
.post {
  --r: 22px;
  --ring: rgba(10, 73, 165, 0.22); /* brand glow */
  --border: rgba(15, 23, 42, 0.1);
  --shadow1: 0 26px 60px rgba(2, 6, 23, 0.18);
  --shadow2: 0 10px 22px rgba(2, 6, 23, 0.12);
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--r);
  background: radial-gradient(1200px 420px at 50% -50%, rgba(10, 73, 165, 0.14), transparent 60%), linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.post::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r) + 2px);
  filter: blur(14px);
  opacity: 0.9;
  z-index: -1;
}

.post--fullscreen {
  max-width: none;
  margin: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.post__media {
  position: relative;
  padding: 12px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.04) 0%, rgba(2, 6, 23, 0) 100%);
}

.post__mediaInner {
  margin: 0 auto;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* vignette + subtle bottom gradient for controls/text */
.post__mediaInner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 120% at 50% 30%, rgba(255, 255, 255, 0.1), transparent 55%), linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0.9;
}

.post__body {
  padding: 14px 16px 16px;
}

.post__text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(17, 24, 39, 0.92);
  white-space: pre-wrap;
  word-break: break-word;
}

.post__text .link {
  color: #0a49a5;
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 73, 165, 0.25);
}

.post__text .link:hover {
  border-bottom-color: rgba(10, 73, 165, 0.55);
}

.post__text .hashtag {
  color: #0a49a5;
  font-weight: 600;
}

/* optional: make emoji/title line pop */
.post__titleLine {
  font-size: 16px;
  font-weight: 700;
  color: rgba(2, 6, 23, 0.92);
  margin-bottom: 8px;
}

/* cleaner nav buttons */
.post__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.post__nav:active {
  transform: translateY(-50%) scale(0.96);
  background: rgba(0, 0, 0, 0.48);
}

.post__nav--left {
  left: 14px;
}

.post__nav--right {
  right: 14px;
}

.post__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 60;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.post__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.post__dot.is-active {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(10, 73, 165, 0.22);
}
/*!*************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/shared/components/FeedTopLoader/FeedTopLoader.scss ***!
  \*************************************************************************************************************************************************/
.feed-top-loader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.feed-top-loader__spinner {
  position: relative;
  width: 22px;
  height: 22px;
  color: rgba(15, 23, 42, 0.55);
}
.feed-top-loader__tick {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  opacity: 0.2;
  animation: feedTopLoaderFade 1s linear infinite;
}
.feed-top-loader__tick:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-9px);
  animation-delay: -0.9166666667s;
}
.feed-top-loader__tick:nth-child(2) {
  transform: translate(-50%, -50%) rotate(30deg) translateY(-9px);
  animation-delay: -0.8333333333s;
}
.feed-top-loader__tick:nth-child(3) {
  transform: translate(-50%, -50%) rotate(60deg) translateY(-9px);
  animation-delay: -0.75s;
}
.feed-top-loader__tick:nth-child(4) {
  transform: translate(-50%, -50%) rotate(90deg) translateY(-9px);
  animation-delay: -0.6666666667s;
}
.feed-top-loader__tick:nth-child(5) {
  transform: translate(-50%, -50%) rotate(120deg) translateY(-9px);
  animation-delay: -0.5833333333s;
}
.feed-top-loader__tick:nth-child(6) {
  transform: translate(-50%, -50%) rotate(150deg) translateY(-9px);
  animation-delay: -0.5s;
}
.feed-top-loader__tick:nth-child(7) {
  transform: translate(-50%, -50%) rotate(180deg) translateY(-9px);
  animation-delay: -0.4166666667s;
}
.feed-top-loader__tick:nth-child(8) {
  transform: translate(-50%, -50%) rotate(210deg) translateY(-9px);
  animation-delay: -0.3333333333s;
}
.feed-top-loader__tick:nth-child(9) {
  transform: translate(-50%, -50%) rotate(240deg) translateY(-9px);
  animation-delay: -0.25s;
}
.feed-top-loader__tick:nth-child(10) {
  transform: translate(-50%, -50%) rotate(270deg) translateY(-9px);
  animation-delay: -0.1666666667s;
}
.feed-top-loader__tick:nth-child(11) {
  transform: translate(-50%, -50%) rotate(300deg) translateY(-9px);
  animation-delay: -0.0833333333s;
}
.feed-top-loader__tick:nth-child(12) {
  transform: translate(-50%, -50%) rotate(330deg) translateY(-9px);
  animation-delay: -0s;
}

@keyframes feedTopLoaderFade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.15;
  }
}
/*!***********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/shared/components/LanguageSelect/LanguageSelect.css ***!
  \***********************************************************************************************************/
/* 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: 999px;

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

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

.lan-desktop .lan-btn {
	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;
	}
}

/*!*****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/shared/components/ScrollToTopButton/ScrollToTopButton.css ***!
  \*****************************************************************************************************************/
.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);
	}
}

/*!***********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/shared/components/EChannelPage/EChannelPage.scss ***!
  \***********************************************************************************************************************************************/
.wrapper-absolute {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 200ms ease, transform 200ms ease, visibility 0ms linear 200ms;
}
@media (max-width: 1024px) {
  .wrapper-absolute {
    top: 48px;
  }
}
@media (max-width: 480px) {
  .wrapper-absolute {
    top: 59px;
  }
}

.wrapper-absolute.open-player-header {
  display: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 200ms ease, transform 200ms ease, visibility 0ms linear 0ms;
}
@media (max-width: 1024px) {
  .wrapper-absolute.open-player-header {
    display: block;
  }
}

.wrapper-absolute.open-player {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 200ms ease, transform 200ms ease, visibility 0ms linear 0ms;
}
@media (max-width: 1024px) {
  .wrapper-absolute.open-player {
    display: none;
  }
}

.wrapper-absolute.close-player {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
}
/*!*******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/reset.css ***!
  \*******************************************************************************/
/* 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;
}

/*!***********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/variables.css ***!
  \***********************************************************************************/

/*!********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/header.css ***!
  \********************************************************************************/
.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;
}

.player-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	outline: none;
	border: none;
}

/* Кнопка 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: 999px;
	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;
	font-size: 16px;
	line-height: 20px;
}

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

/*!********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/footer.css ***!
  \********************************************************************************/
.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;
	margin-top: 10px;
}

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

/*!*********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/content.css ***!
  \*********************************************************************************/
.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; /* ✅ щоб не прилипало */
}

.wrapper-video-post {
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
}

@media (min-height: 800px) {
  .container {
    min-height: auto !important;
    justify-content: flex-start !important;
  }
}
.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;
  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; /* Додає дефіси там, де можливо */
}

.whiteSpace {
  white-space: pre-line;
}

.link-button {
  margin: 20px 0 0;
  text-decoration: none;
  background-color: rgb(10, 73, 165);
  text-decoration: none;
  border-radius: 999px;
  display: flex;
  width: 100%;
  max-width: 270px;
  height: 51px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: none;
  outline: none;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  cursor: pointer;
}

.link-button-view {
  margin: 20px 0 0;
  text-decoration: none;
  background-color: transparent;
  border: none;
  text-decoration: none;
  display: flex;
  width: fit-content;
  max-width: 270px;
  height: 20px;
  padding: 0;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  outline: none;
  color: #222;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  cursor: pointer;
}

.link-button-view:hover {
  color: #0a49a5;
}

.dot {
  width: 3px;
  height: 3px;
  margin: 20px 0 0;

  background-color: #a2a1a1;
  border-radius: 50%;
}

.wrapper-button-post {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: fit-content;
}

.btn-post {
  gap: 8px;
  margin-bottom: 8px;
}

.btn-post-wrapper {
  margin-bottom: 20px;
}

.btn-post-radius {
  border-radius: 8px;
}

/* @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: fit-content;

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

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

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

/*!*****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/iconButtonGroup.css ***!
  \*****************************************************************************************/
.button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  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;
  }
} */

/*!**************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/eChannelPage.css ***!
  \**************************************************************************************/
/* 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: contain;
	background-color: transparent;
}

.preview-wrapper--loaded img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	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-weight: 500;
	font-size: 16px;
	color: #222;
	text-align: start;
	padding: 0;
	line-height: 18px;
	margin-top: 12px;
}

.only-available span {
	font-weight: 600;
}

.only-available-mobile {
	display: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #222;
	text-align: start;
	padding: 0 0 20px;
	margin-top: 12px;
}

.only-available-mobile span {
	font-weight: 600;
}

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

	.only-available {
		display: none;
	}

	.only-available-mobile {
		display: block;
	}
}

.e-post-media--image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.e-post-media__box {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #000;
}

/* 🔹 Blur фон */
.preview-blur {
	position: absolute;
	inset: 0;
	background-image: var(--preview-image);
	background-size: cover;
	background-position: center;
	filter: blur(24px);
	transform: scale(1.15);
	z-index: 0;
}

/* 🔹 Гарантуємо, що PostImage поверх */
.e-post-media__box > *:not(.preview-blur) {
	position: relative;
	z-index: 1;
}

.legal-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	font-size: 13px;
	color: #6b7280;
}

.legal-links__item {
	position: relative;
	color: #2563eb;
	text-decoration: none;
	font-weight: 400;
	padding-bottom: 2px;
	transition: color 0.2s ease;

	&::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background-color: currentColor;

		transform: scaleX(0);
		transform-origin: left;
		transition: transform 0.25s ease;
	}

	&:hover {
		color: #1d4ed8;
	}

	&:hover::after {
		transform: scaleX(1);
	}
}

.legal-links__separator {
	color: #9ca3af;
	user-select: none;
}

/*!********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/slider.css ***!
  \********************************************************************************/
.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: fit-content;
  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;
  /* height: 100%; */
  max-height: 90dvh;
  /* 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;
  }
}

/*!************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/videoMedia.css ***!
  \************************************************************************************/
/* =========================
   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;

	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;

	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	background: rgba(255, 255, 255, 0.16);

	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;
}

/*!**********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/EChannel.css ***!
  \**********************************************************************************/
/* =========================
   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: 70vh;
	}
}

/* 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: 35px;
}

.e-channel-card-top {
	margin-top: 110px;
}

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

@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;
	padding-right: 62px;
}

.e-channel-avatar-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	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;
	font-weight: 600;
	color: #222;
}

/* 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;
	align-items: center;
	gap: 5px;
}

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

.e-stat-label {
	font-weight: 600;
	font-size: 14px !important;
	color: #222;
}

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

/* CTA button */
.e-download-btn {
	display: block;
	width: 100%;
	padding: 12px 14px;
	border-radius: 999px;
	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;
	top: 12px;
}

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

.seo-channel-head {
	position: absolute;
	top: 0;
	left: 0;

	width: 1px;
	height: 1px;
	overflow: hidden;

	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.seo-posts {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/ChannelFeed.css ***!
  \*************************************************************************************/
/* =========================
   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;
}

/*!**********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/PostCard.css ***!
  \**********************************************************************************/
/* =========================
   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;
}

.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;
}
.e-post-media--placeholder {
	cursor: default;
}

.e-post-media__box--skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 37%, #f0f0f0 63%);
	background-size: 400% 100%;
	animation: skeleton 1.2s ease-in-out infinite;
}

@keyframes skeleton {
	0% {
		background-position: 100% 0;
	}
	100% {
		background-position: 0 0;
	}
}

.e-post-reply__file {
	display: flex;
	align-items: center;
	gap: 10px;
}

.e-post-reply__file svg {
	height: 40px;
	width: 40px;
}

/* =========================
   Telegram-like album grid (2..10)
   НЕ торкаємо single
   ========================= */

.e-post-media-grid.album {
	/* альбом завжди вміщується у viewport */
	width: 100%;
	overflow: hidden;
	border-radius: 0;
	max-height: 70vh;

	/* базова сітка */
	gap: 2px;
	background: transparent;

	/* щоб плитки були "рівні" по висоті */
	grid-auto-rows: 1fr;
	align-items: stretch;
}

/* ✅ у альбомі плитки не керуються inline aspectRatio — керує грід */
.e-post-media-grid.album .e-post-media,
.e-post-media-grid.album .e-post-media__box {
	height: 100%;
}

.e-post-media-grid.album .e-post-media__box {
	aspect-ratio: auto !important; /* перебиває inline style */
}

/* ✅ медіа завжди заповнює плитку */
.e-post-media-grid.album .e-post-media img,
.e-post-media-grid.album .e-post-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ✅ не даємо "odd last-child span 2" ламати album */
.e-post-media-grid.album.odd > .e-post-media:last-child {
	grid-column: auto;
}

/* ---------- 2 ---------- */
.e-post-media-grid.album.count-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: 1fr;
	aspect-ratio: 16 / 9;
}

/* ---------- 3 (1 велика + 2 справа) ---------- */
.e-post-media-grid.album.count-3 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, 1fr);
	grid-template-areas:
		'a b'
		'a c';
	aspect-ratio: 4 / 3;
}

.e-post-media-grid.album.count-3 > .e-post-media:nth-child(1) {
	grid-area: a;
}
.e-post-media-grid.album.count-3 > .e-post-media:nth-child(2) {
	grid-area: b;
}
.e-post-media-grid.album.count-3 > .e-post-media:nth-child(3) {
	grid-area: c;
}

/* ---------- 4 (2x2) ---------- */
.e-post-media-grid.album.count-4 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, 1fr);
	aspect-ratio: 1 / 1;
}

/* ---------- 5 (1 велика + 2 справа + 2 знизу) ---------- */
.e-post-media-grid.album.count-5 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(3, 1fr);
	grid-template-areas:
		'a b'
		'a c'
		'd e';
	aspect-ratio: 4 / 5;
}

.e-post-media-grid.album.count-5 > .e-post-media:nth-child(1) {
	grid-area: a;
}
.e-post-media-grid.album.count-5 > .e-post-media:nth-child(2) {
	grid-area: b;
}
.e-post-media-grid.album.count-5 > .e-post-media:nth-child(3) {
	grid-area: c;
}
.e-post-media-grid.album.count-5 > .e-post-media:nth-child(4) {
	grid-area: d;
}
.e-post-media-grid.album.count-5 > .e-post-media:nth-child(5) {
	grid-area: e;
}

/* ---------- 6 (3x2) ---------- */
.e-post-media-grid.album.count-6 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(2, 1fr);
	aspect-ratio: 3 / 2;
}

/* =========================================================
   7..10 — без дірок: grid-template-areas заповнює ВСІ клітинки
   ========================================================= */

/* ---------- 7 ---------- */
.e-post-media-grid.album.count-7 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(4, 1fr);
	grid-template-areas:
		'a a b'
		'a a c'
		'd e f'
		'g g g';
	aspect-ratio: 3 / 4;
}

/* ---------- 8 ---------- */
.e-post-media-grid.album.count-8 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(4, 1fr);
	grid-template-areas:
		'a a b'
		'a a c'
		'd e f'
		'g h h';
	aspect-ratio: 3 / 4;
}

/* ---------- 9 ---------- */
.e-post-media-grid.album.count-9 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(4, 1fr);
	grid-template-areas:
		'a a b'
		'a a c'
		'd e f'
		'g h i';
	aspect-ratio: 3 / 4;
}

/* ---------- 10 ---------- */
.e-post-media-grid.album.count-10 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(5, 1fr);
	grid-template-areas:
		'a a b'
		'a a c'
		'd e f'
		'g h i'
		'j j j';
	aspect-ratio: 3 / 5;
}

/* ---- area bindings (спільні 1..6) ---- */
.e-post-media-grid.album.count-7 > .e-post-media:nth-child(1),
.e-post-media-grid.album.count-8 > .e-post-media:nth-child(1),
.e-post-media-grid.album.count-9 > .e-post-media:nth-child(1),
.e-post-media-grid.album.count-10 > .e-post-media:nth-child(1) {
	grid-area: a;
}

.e-post-media-grid.album.count-7 > .e-post-media:nth-child(2),
.e-post-media-grid.album.count-8 > .e-post-media:nth-child(2),
.e-post-media-grid.album.count-9 > .e-post-media:nth-child(2),
.e-post-media-grid.album.count-10 > .e-post-media:nth-child(2) {
	grid-area: b;
}

.e-post-media-grid.album.count-7 > .e-post-media:nth-child(3),
.e-post-media-grid.album.count-8 > .e-post-media:nth-child(3),
.e-post-media-grid.album.count-9 > .e-post-media:nth-child(3),
.e-post-media-grid.album.count-10 > .e-post-media:nth-child(3) {
	grid-area: c;
}

.e-post-media-grid.album.count-7 > .e-post-media:nth-child(4),
.e-post-media-grid.album.count-8 > .e-post-media:nth-child(4),
.e-post-media-grid.album.count-9 > .e-post-media:nth-child(4),
.e-post-media-grid.album.count-10 > .e-post-media:nth-child(4) {
	grid-area: d;
}

.e-post-media-grid.album.count-7 > .e-post-media:nth-child(5),
.e-post-media-grid.album.count-8 > .e-post-media:nth-child(5),
.e-post-media-grid.album.count-9 > .e-post-media:nth-child(5),
.e-post-media-grid.album.count-10 > .e-post-media:nth-child(5) {
	grid-area: e;
}

.e-post-media-grid.album.count-7 > .e-post-media:nth-child(6),
.e-post-media-grid.album.count-8 > .e-post-media:nth-child(6),
.e-post-media-grid.album.count-9 > .e-post-media:nth-child(6),
.e-post-media-grid.album.count-10 > .e-post-media:nth-child(6) {
	grid-area: f;
}

/* ---- 7 ---- */
.e-post-media-grid.album.count-7 > .e-post-media:nth-child(7) {
	grid-area: g;
}

/* ---- 8 ---- */
.e-post-media-grid.album.count-8 > .e-post-media:nth-child(7) {
	grid-area: g;
}
.e-post-media-grid.album.count-8 > .e-post-media:nth-child(8) {
	grid-area: h;
}

/* ---- 9 ---- */
.e-post-media-grid.album.count-9 > .e-post-media:nth-child(7) {
	grid-area: g;
}
.e-post-media-grid.album.count-9 > .e-post-media:nth-child(8) {
	grid-area: h;
}
.e-post-media-grid.album.count-9 > .e-post-media:nth-child(9) {
	grid-area: i;
}

/* ---- 10 ---- */
.e-post-media-grid.album.count-10 > .e-post-media:nth-child(7) {
	grid-area: g;
}
.e-post-media-grid.album.count-10 > .e-post-media:nth-child(8) {
	grid-area: h;
}
.e-post-media-grid.album.count-10 > .e-post-media:nth-child(9) {
	grid-area: i;
}
.e-post-media-grid.album.count-10 > .e-post-media:nth-child(10) {
	grid-area: j;
}

/*!**********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/PostBody.css ***!
  \**********************************************************************************/
/* =========================
   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;
  text-decoration: none;
}

.mention {
  color: #0a49a5;
  text-decoration: none;
}

.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;
  z-index: 5;
}

.e-modal__close {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  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;
}

/*!***************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/VideoMediaIOS.css ***!
  \***************************************************************************************/
.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;
}

/*!******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/styles/main.css ***!
  \******************************************************************************/
.wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 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-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: 20px 0 8px;
}

.paragraph1 {
	/* font-family: Roboto, Arial, Helvetica, sans-serif; */
	font-size: 16px;
	line-height: 18px;
	color: #222;
}

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

.logo-placeholder {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgb(10, 73, 165);
	color: #fff;
	display: flex;
	align-items: center;
	letter-spacing: 1.2px;
	justify-content: center;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
}

html,
body,
#root {
	height: 100%;
}

.wrapper {
	/* min-height: 100vh; */
	display: flex;
	flex-direction: column;
}

.main {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
}

