/* ===== АФИША: карточки потоков ===== */

/* Жирный текст: капс + иконка даты */
.uc-afisha .t-feed__post-descr strong,
.uc-afisha .t-feed__post-descr b {
  font-size: 20px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1 !important;
  margin-top: 10px;
}

.uc-afisha .t-feed__post-descr strong::before,
.uc-afisha .t-feed__post-descr b::before {
  content: '';
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='0'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Курсив: нормальное начертание, меньше кегль, цвет + иконка локации */
.uc-afisha .t-feed__post-descr em,
.uc-afisha .t-feed__post-descr i {
  font-style: normal !important;
  font-size: 14px !important;
  color: #b1a094 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.55 !important;
  margin-top: 10px;
}

.uc-afisha .t-feed__post-descr em::before,
.uc-afisha .t-feed__post-descr i::before {
  content: '';
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b1a094' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== Кнопки ===== */

.uc-afisha .t-feed__textwrapper {
  display: flex;
  flex-direction: column;
}

.uc-afisha .afisha-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* Общее для обеих кнопок */
.uc-afisha .afisha-buy-btn,
.uc-afisha .afisha-more-btn {
  display: inline-block;
  padding: 14px 48px;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
}

/* Купить билеты: красная заливка */
.uc-afisha .afisha-buy-btn {
  background-color: #ff3d1f;
  color: #fffcfa !important;
}

.uc-afisha .afisha-buy-btn:hover {
  background-color: #e0300f;
}

/* Подробнее: тонкая бежевая рамка, тёмный текст */
.uc-afisha .afisha-more-btn {
  background-color: transparent;
  color: #2b292a !important;
  border: 1px solid #ccbaae;
  padding: 13px 47px; /* минус рамка, чтобы высота совпала с красной */
}

.uc-afisha .afisha-more-btn:hover {
  border-color: #b1a094;
  background-color: rgba(204, 186, 174, 0.12);
}

/* ===== Мобильная версия ===== */

@media screen and (max-width: 640px) {
  .uc-afisha .afisha-btn-row {
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 18px;
  }

  /* Кнопки делят ширину карточки пополам и всегда в один ряд */
  .uc-afisha .afisha-buy-btn,
  .uc-afisha .afisha-more-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 10px;
    font-size: 15px;
    white-space: nowrap;
  }

  .uc-afisha .afisha-more-btn {
    padding: 11px 10px;
  }

  .uc-afisha .t-feed__post-descr strong,
  .uc-afisha .t-feed__post-descr b {
    font-size: 18px !important;
  }

  .uc-afisha .t-feed__post-descr em,
  .uc-afisha .t-feed__post-descr i {
    font-size: 13px !important;
  }
}