/* assets/css/index.css */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{background:#0f1014}
body{
  font-family:Arial,Helvetica,sans-serif;
  background:#0f1014;
  color:#fff;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body.modal-open{
  overflow:hidden;
  touch-action:none;
}
a{color:inherit}

.page{
  max-width:430px;
  margin:0 auto;
  min-height:100vh;
  padding:10px 8px 94px;
  background:linear-gradient(180deg,#171922 0%,#0f1014 100%);
}

.logo{
  font-size:28px;
  font-weight:800;
  letter-spacing:.02em;
  margin:6px 4px 4px;
}
.sub{
  color:rgba(255,255,255,.68);
  font-size:13px;
  line-height:1.45;
  margin:0 4px 12px;
}

.msg{
  display:none;
  margin:0 4px 12px;
  padding:12px 14px;
  border-radius:16px;
  font-size:14px;
  white-space:pre-line;
}
.msg.show{display:block}
.msg.error{
  background:rgba(160,32,32,.18);
  color:#ffdada;
  border:1px solid rgba(255,120,120,.24);
}
.msg.success{
  background:rgba(24,112,64,.20);
  color:#dcffe8;
  border:1px solid rgba(120,255,170,.20);
}

.feed{
  display:grid;
  gap:31px;
}

.feed-card{
  background:transparent;
  border:none;
  border-radius:0;
  overflow:visible;
  box-shadow:none;
}

.feed-head{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 6px 8px;
}

.feed-author-link{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  text-decoration:none;
  color:inherit;
  flex:1;
}

.avatar{
  width:34px;
  height:34px;
  border-radius:999px;
  object-fit:cover;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  flex:0 0 auto;
}
.avatar-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.62);
  font-size:14px;
}

.feed-author-meta{
  min-width:0;
  display:flex;
  align-items:center;
  width:100%;
}
.feed-author-name{
  font-size:13px;
  font-weight:700;
  color:#fff;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  max-width:180px;
}
.feed-time{
  font-size:11px;
  color:rgba(255,255,255,.50);
  white-space:nowrap;
  flex:0 0 auto;
}

.feed-media-wrap{
  position:relative;
  width:100%;
  background:#0b0c10;
  overflow:hidden;
}
.media-counter{
  position:absolute;
  top:8px;
  right:8px;
  z-index:4;
  min-width:28px;
  height:24px;
  padding:0 8px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:700;
  color:#fff;
  background:rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
}
.media-track{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.media-track::-webkit-scrollbar{display:none}
.media-slide{
  position:relative;
  flex:0 0 100%;
  width:100%;
  scroll-snap-align:start;
  background:#0b0c10;
}
.media-img,
.media-video,
.reel-video{
  display:block;
  width:100%;
  background:#0b0c10;
  object-fit:cover;
}
.media-img{aspect-ratio:4/5}
.media-video,
.reel-video{
  aspect-ratio:4/5;
  max-height:82vh;
}
.media-slide-btn{
  display:block;
  width:100%;
  padding:0;
  margin:0;
  border:none;
  background:transparent;
  cursor:pointer;
}
.media-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:32px;
  height:32px;
  border:none;
  border-radius:999px;
  background:rgba(0,0,0,.34);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  backdrop-filter:blur(10px);
}
.media-nav.left{left:8px}
.media-nav.right{right:8px}
.media-nav[hidden]{display:none !important}
.media-dots{
  position:absolute;
  left:8px;
  bottom:8px;
  z-index:4;
  display:flex;
  gap:5px;
}
.media-dot{
  width:6px;
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.34);
}
.media-dot.active{
  width:16px;
  background:#fff;
}

.reel-overlay-controls{
  position:absolute;
  right:10px;
  bottom:24px;
  z-index:5;
  display:flex;
  gap:8px;
}
.reel-control-btn{
  width:34px;
  height:34px;
  border:none;
  border-radius:999px;
  background:rgba(0,0,0,.34);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  backdrop-filter:blur(10px);
}
.reel-play-center{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5;
  pointer-events:none;
}
.reel-play-center .icon{
  width:62px;
  height:62px;
  border-radius:999px;
  background:rgba(0,0,0,.34);
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  opacity:0;
  transform:scale(.9);
  transition:opacity .18s ease,transform .18s ease;
  backdrop-filter:blur(10px);
}
.reel-play-center.show .icon{
  opacity:1;
  transform:scale(1);
}

.feed-body{
  padding:10px 6px 0;
}
.feed-text-wrap{
  position:relative;
  margin-top:0;
  min-height:20px;
}

.feed-text{
  font-size:13px;
  line-height:1.42;
  color:rgba(255,255,255,.72);
  white-space:pre-wrap;
  word-break:break-word;
}

.feed-text.clamped{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:1;
  line-clamp:1;
  overflow:hidden;
  padding-right:72px;
}

.feed-text-toggle-inline{
  position:absolute;
  right:0;
  bottom:0;
  display:none;
  align-items:center;
  border:none;
  background:none;
  color:rgba(255,255,255,.82);
  font-size:12px;
  font-weight:700;
  line-height:1.45;
  padding:0;
  cursor:pointer;
}

.feed-text-wrap.expanded .feed-text-toggle-inline{
  display:none !important;
}

.feed-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 6px 0;
}
.feed-actions.has-text{padding-top:10px}
.feed-actions.no-text{padding-top:12px}

.feed-actions-left{
  display:flex;
  align-items:center;
  gap:18px;
  min-width:0;
}

.feed-actions-right{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex:0 0 auto;
}

.action-inline{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border:none;
  background:transparent;
  color:rgba(255,255,255,.90);
  padding:0;
  font-size:14px;
  cursor:pointer;
  flex:0 0 auto;
}
.action-inline .fa-regular,
.action-inline .fa-solid{
  font-size:18px;
}
.action-inline .count{
  font-size:13px;
  color:rgba(255,255,255,.76);
  font-weight:700;
}
.like-btn.liked{color:#ff7e97}
.like-btn.liked .count{color:#fff}

.empty{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:20px;
  padding:18px;
  font-size:14px;
  color:rgba(255,255,255,.68);
}

/* OVERLAY И ЩИТ ПОВЕРХ ВСЕГО */
.sheet-overlay{
  position:fixed;
  inset:0;
  z-index:2147483646;
  background:rgba(0,0,0,.58);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
}
.sheet-overlay.show{
  opacity:1;
  pointer-events:auto;
}

.sheet{
  position:fixed;
  left:50%;
  bottom:0;
  transform:translateX(-50%) translateY(104%);
  width:100%;
  max-width:430px;
  height:min(88dvh,820px);
  z-index:2147483647;
  border-radius:28px 28px 0 0;
  background:rgba(18,20,27,.98);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 -20px 60px rgba(0,0,0,.58);
  backdrop-filter:blur(24px);
  transition:transform .26s cubic-bezier(.22,.9,.22,1);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.sheet.show{
  transform:translateX(-50%) translateY(0);
}
.sheet-handle-wrap{
  padding:10px 0 4px;
  display:flex;
  justify-content:center;
  flex:0 0 auto;
}
.sheet-handle{
  width:44px;
  height:5px;
  border-radius:999px;
  background:rgba(255,255,255,.26);
}
.sheet-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:4px 14px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  flex:0 0 auto;
}
.sheet-title{
  font-size:18px;
  font-weight:800;
}
.sheet-meta{
  font-size:12px;
  color:rgba(255,255,255,.58);
}
.sheet-close{
  width:34px;
  height:34px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
}

.sheet-publication{
  padding:10px 14px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
  flex:0 0 auto;
}
.sheet-publication-author{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.sheet-publication-avatar{
  width:30px;
  height:30px;
  border-radius:999px;
  object-fit:cover;
  background:rgba(255,255,255,.08);
}
.sheet-publication-title{
  min-width:0;
}
.sheet-publication-name{
  font-size:13px;
  font-weight:800;
}
.sheet-publication-time{
  font-size:11px;
  color:rgba(255,255,255,.54);
  margin-top:2px;
}
.sheet-publication-text{
  font-size:13px;
  line-height:1.5;
  color:rgba(255,255,255,.84);
  white-space:pre-wrap;
  word-break:break-word;
}
.sheet-publication-text.empty-text{
  color:rgba(255,255,255,.46);
  font-style:italic;
}

.sheet-body{
  flex:1 1 auto;
  min-height:0;
  overflow:auto;
  padding:12px 14px 120px;
  -webkit-overflow-scrolling:touch;
}

/* форма всегда видна */
.sheet-form{
  position:relative;
  z-index:3;
  flex:0 0 auto;
  border-top:1px solid rgba(255,255,255,.08);
  padding:12px 14px calc(12px + env(safe-area-inset-bottom));
  background:linear-gradient(180deg,rgba(18,20,27,.90) 0%,rgba(18,20,27,1) 40%);
  backdrop-filter:blur(20px);
}
.reply-hint{
  display:none;
  font-size:12px;
  color:rgba(255,255,255,.64);
  margin-bottom:8px;
}
.sheet-form-row{
  position:relative;
  display:block;
}

.sheet-textarea{
  display:block;
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:14px 46px 14px 14px;
  font-size:14px;
  background:rgba(255,255,255,.055);
  color:#fff;
  outline:none;
  min-height:80px;
  max-height:180px;
  resize:none;
}

.sheet{
  height:min(92dvh,900px);
}

.sheet-body{
  flex:1 1 auto;
  min-height:0;
  overflow:auto;
  padding:12px 14px 140px;
  -webkit-overflow-scrolling:touch;
}

.sheet-send{
  position:absolute;
  right:10px;
  bottom:10px;
  width:34px;
  height:34px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:#111;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.sheet-login-note{
  font-size:13px;
  color:rgba(255,255,255,.68);
}
.sheet-login-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  min-height:40px;
  padding:10px 14px;
  border-radius:14px;
  text-decoration:none;
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:14px;
  font-weight:800;
}

.comment{
  position:relative;
  padding:8px 0;
  margin-bottom:10px;
  border:none;
  background:transparent;
  border-radius:0;
}
.comment.hidden-comment{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.06);
}
.comment.reply-comment{
  margin-left:22px;
}
.comment.reply-comment::before{
  display:none;
}
.comment-top{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:8px;
}

.comment-main{
  min-width:0;
  flex:1;
}
.comment-name-row{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.reply-to-label{
  display:inline-flex;
  align-items:center;
  margin:0 0 8px;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  color:rgba(255,255,255,.66);
  font-size:11px;
  font-weight:800;
  max-width:100%;
}
.reply-to-label span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.comment-text.hidden-text{
  color:rgba(255,255,255,.54);
  font-style:italic;
}
.comment-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}
.comment-btn{
  border:none;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  min-height:34px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}
.comment-btn.danger{
  background:rgba(255,120,120,.16);
  color:#ffdede;
}

/* новые комменты */
.comment-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.comment-avatar{
  width:32px;
  height:32px;
  border-radius:999px;
  flex:0 0 32px;
}

.comment-content{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
}

.comment-name-line{
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
  margin-bottom:2px;
}

.comment-name{
  font-size:13px;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:180px;
}

.comment-reply-to{
  font-size:11px;
  color:rgba(255,255,255,.42);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:120px;
}

.comment-text{
  font-size:14px;
  line-height:1.45;
  color:#fff;
  white-space:pre-wrap;
  word-break:break-word;
  margin:0;
}

.comment-bottom{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:5px;
}

.comment-date{
  font-size:11px;
  color:rgba(255,255,255,.42);
  white-space:nowrap;
}

.comment-action{
  border:none;
  background:none;
  padding:0;
  margin:0;
  font-size:11px;
  line-height:1.2;
  color:rgba(255,255,255,.48);
  cursor:pointer;
}

.comment-action:hover{
  color:#fff;
}

.comment-inline-editor{
  margin-top:10px;
}

.comment-inline-textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:12px;
  font-size:14px;
  background:rgba(255,255,255,.04);
  color:#fff;
  outline:none;
  min-height:88px;
  resize:vertical;
}

.viewer{
  position:fixed;
  inset:0;
  z-index:2147483645;
  background:rgba(0,0,0,.96);
  display:none;
}
.viewer.show{
  display:block;
}
.viewer-close{
  position:absolute;
  top:max(14px,env(safe-area-inset-top));
  right:14px;
  z-index:4;
  width:38px;
  height:38px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
}
.viewer-counter{
  position:absolute;
  top:max(16px,env(safe-area-inset-top));
  left:14px;
  z-index:4;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:12px;
  font-weight:800;
}
.viewer-track{
  height:100%;
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.viewer-track::-webkit-scrollbar{display:none}
.viewer-slide{
  flex:0 0 100%;
  height:100%;
  scroll-snap-align:start;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:64px 10px 28px;
}
.viewer-slide img,
.viewer-slide video{
  max-width:100%;
  max-height:100%;
  background:#000;
}

/* любой футер ниже щита */
footer,
.bottom-bar,
nav.bottom-bar,
.page-footer{
  z-index:10 !important;
  position:relative;
}

@media (max-width:380px){
  .feed-author-name{max-width:140px}
}

.reel-slide-box{
  position:relative;
}

.reel-progress{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  height:3px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  overflow:hidden;
  z-index:4;
  pointer-events:none;
  backdrop-filter:blur(4px);
}

.reel-progress-loaded{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:0%;
  background:rgba(255,255,255,.28);
  border-radius:999px;
}

.reel-progress-played{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:0%;
  background:#fff;
  border-radius:999px;
  box-shadow:0 0 8px rgba(255,255,255,.35);
}

.reel-progress-loaded{
  transition:width .18s ease-out;
}

.reel-progress-played{
  transition:none;
}

.feed-head{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 6px 8px;
}

.feed-author-link{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  text-decoration:none;
  color:inherit;
  flex:1;
}

.feed-author-side{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  margin-left:-4px;
}

.feed-follow-btn{
  min-height:26px;
  padding:0 11px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  color:rgba(255,255,255,.72);
  font-size:11px;
  font-weight:500;
  letter-spacing:.01em;
  cursor:pointer;
  white-space:nowrap;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:all .18s ease;
}

.feed-follow-btn.is-idle{
  color:rgba(255,255,255,.72);
  border-color:rgba(255,255,255,.18);
}

.feed-follow-btn.is-following{
  color:rgba(255,255,255,.60);
  border-color:rgba(255,255,255,.14);
}

.feed-follow-btn.is-requested{
  color:rgba(255,255,255,.50);
  border-color:rgba(255,255,255,.10);
}

.feed-follow-btn:active{
  transform:scale(.96);
  border-color:rgba(255,255,255,.28);
  color:rgba(255,255,255,.88);
}

.feed-follow-btn[disabled]{
  opacity:.7;
  cursor:default;
}

/* event feed card */
.event-feed-card{
  border:none;
  background:transparent;
}

.event-card-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.event-card-shell{
  position:relative;
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  background:transparent;
  box-shadow:none;
  overflow:visible;
}

.event-card-top{
  padding:12px 6px 0;
}

.event-card-author-row{
  margin-bottom:10px;
}

.event-card-author-row .feed-author-link{
  gap:10px;
}

.event-card-author-row .feed-author-name{
  max-width:none;
}

.event-card-info-pane{
  position:relative;
  background:linear-gradient(180deg,rgba(255,255,255,.03) 0%,rgba(255,255,255,.018) 100%);
   border:none;
  border-radius:0;
 padding:12px 6px 0;
  background:none;
  backdrop-filter:none;
}

.event-card-copy-wrap{
  position:relative;
  min-height:auto;
  padding-right:0;
}

.event-card-horn-badge{
  position:absolute;
  top:-2px;
  right:2px;
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.24);
  z-index:2;
  pointer-events:none;
  line-height:1;
}

.event-card-horn-badge i{
  display:block;
  font-size:21px;
  text-shadow:none;
  opacity:1;
}

.event-card-badges{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:7px;
  margin-bottom:10px;
  padding-right:28px;
}

.event-card-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:24px;
  padding:5px 9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.72);
  font-size:11px;
  font-weight:800;
  line-height:1;
  letter-spacing:.01em;
  white-space:nowrap;
}

.event-card-badge.is-strong{
  color:#fff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
}

.event-card-badge.is-soft{
  color:rgba(255,255,255,.60);
  background:rgba(255,255,255,.035);
  border-color:rgba(255,255,255,.08);
}

.event-card-title-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.event-card-title-row{
  display:block;
}

.event-card-title{
  font-size:19px;
  line-height:1.12;
  font-weight:900;
  color:#fff;
  letter-spacing:-.025em;
  word-break:break-word;
  text-wrap:balance;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
  overflow:hidden;
  padding-right:14px;
}

.event-card-time-box{
  margin-top:10px;
  display:block;
}

.event-card-time-main{
  min-width:0;
  display:flex;
  align-items:flex-start;
  gap:8px;
}

.event-card-time-icon{
  width:15px;
  min-width:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.42);
  font-size:12px;
  line-height:16px;
  margin-top:1px;
}

.event-card-time-meta{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}

.event-card-time-primary{
  font-size:13px;
  line-height:1.38;
  font-weight:700;
  color:rgba(255,255,255,.88);
  word-break:break-word;
}

.event-card-time-secondary{
  font-size:11px;
  line-height:1.3;
  font-weight:600;
  color:rgba(255,255,255,.48);
  margin-top:2px;
}

.event-card-quote{
  position:relative;
  margin-top:10px;
  display:block;
  min-height:20px;
}

.event-card-quote-mark{
  display:none;
}

.event-card-quote-text{
  font-size:13px;
  line-height:1.5;
  color:rgba(255,255,255,.66);
  white-space:pre-wrap;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.event-card-quote-text.is-clamped{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
  overflow:hidden;
}

.event-card-quote-toggle{
  display:none;
  margin-top:4px;
  border:none;
  background:none;
  color:rgba(255,255,255,.88);
  font-size:12px;
  font-weight:700;
  line-height:1.2;
  padding:0;
  cursor:pointer;
}

.event-card-quote.expanded .event-card-quote-toggle{
  display:none !important;
}

.event-card-place-stack{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-top:12px;
}

.event-card-place-line,
.event-card-place-subline{
  display:flex;
  align-items:flex-start;
  gap:8px;
  min-width:0;
}

.event-card-place-line i,
.event-card-place-subline i{
  width:14px;
  min-width:14px;
  margin-top:2px;
  text-align:center;
  color:rgba(255,255,255,.46);
  font-size:12px;
}

.event-card-place-line span,
.event-card-place-subline span{
  min-width:0;
  max-width:100%;
  white-space:normal;          /* ключевая правка */
  overflow-wrap:anywhere;      /* ломает длинные слова/URL */
  word-break:break-word;
}

.event-card-place-line{
  font-size:12px;
  line-height:1.42;
  color:rgba(255,255,255,.78);
}

.event-card-place-subline{
  font-size:12px;
  line-height:1.38;
  color:rgba(255,255,255,.46);
}

.event-card-media-block{
  margin-top:14px;
  overflow:hidden;
  border-radius:0;
}

.event-card-media-block .feed-media-wrap{
  border-radius:0;
  background:#0b0c10;
}

.event-card-media-block .media-img{
  aspect-ratio:4/3;
}

.event-card-media-block .media-video{
  aspect-ratio:4/3;
  max-height:none;
}

.event-card-bottom{
  padding:0 12px 12px;
}

.event-card-bottom .feed-actions{
  padding-top:12px;
}

.event-card-bottom .feed-actions-right .feed-time{
  font-size:11px;
  color:rgba(255,255,255,.46);
}

@media (max-width:380px){
  .event-card-shell{
    border-radius:0;
  }

  .event-card-info-pane{
    border-radius:0;
    padding:13px 14px 13px;
  }

  .event-card-horn-badge{
    top:10px;
    right:12px;
    width:22px;
    height:22px;
  }

  .event-card-horn-badge i{
    font-size:20px;
  }

  .event-card-badges{
    padding-right:24px;
  }

  .event-card-title{
    font-size:17px;
    padding-right:10px;
  }

  .event-card-time-primary{
    font-size:12px;
  }

  .event-card-quote-text{
    font-size:12px;
  }
}

.feed-actions .share-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:rgba(255,255,255,.90);
}

.feed-actions .share-btn i{
  font-size:15px;
  color:rgba(255,255,255,.90);
  -webkit-text-fill-color:transparent;
  -webkit-text-stroke:1.5px currentColor;
}