iframe {
  height: 385px;
  width: 650px;
}

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

a {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

body, html {
  font-family: "Gilroy";
  font-size: 16px;
  background-color: white;
  color: #000;
}

.title {
  font-size: 24px;
  font-weight: 600;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.12);
  user-select: none;
}
.btn:hover {
  background-color: rgba(255, 255, 255, 0.24);
}

.navbar {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: linear-gradient(#1F2425, #000);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 64px;
  z-index: 10;
}
.navbar__logo {
  height: 26px;
}
.navbar__region {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 26px;
  border-radius: 16px;
  padding: 0;
  margin-left: 32px;
  margin-right: auto;
  cursor: default;
  pointer-events: none;
}
.navbar__region-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.navbar__region-text {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.navbar__region-name {
  color: white;
  font-size: 16px;
  font-weight: 700;
  font-family: "Gilroy", sans-serif;
  white-space: nowrap;
}
.navbar__region-current {
  color: white;
  font-size: 16px;
  font-weight: 700;
  font-family: "Gilroy", sans-serif;
  white-space: nowrap;
}
.navbar__others {
  margin-left: auto;
  display: block;
  padding-right: 32px;
  position: relative;
  color: white;
}
.navbar__others::after {
  content: "";
  position: absolute;
  right: 30px;
  transform: translateX(100%);
  height: 20px;
  width: 20px;
  background: url(/img/up_right.svg);
}
.navbar__language {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  font-size: 14px;
  margin-right: 24px;
}
.navbar__language-icon {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}
.navbar__language-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-family: "Gilroy";
  font-size: 14px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}
.navbar__language-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}
.navbar__language-btn.active {
  color: white;
  font-weight: 600;
}
.navbar__language-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}
.navbar__language__select {
  display: none;
}
.navbar__mobile {
  display: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  gap: 12px;
  height: 48px;
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
}
.navbar__mobile-logo {
  margin: 0;
  padding: 0;
}
.navbar__mobile-logo img {
  height: 24px;
}
.navbar__mobile-country {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 26px;
  border-radius: 16px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  color: white;
  cursor: default;
  pointer-events: none;
  white-space: nowrap;
}
.navbar__mobile-country-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.navbar__mobile-country-text {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.navbar__mobile-country-name {
  font-size: 14px;
  font-weight: 700;
  font-family: "Gilroy", sans-serif;
  white-space: nowrap;
}
.navbar__mobile-country-current {
  font-size: 14px;
  font-weight: 700;
  font-family: "Gilroy", sans-serif;
  white-space: nowrap;
}
.navbar__mobile-menu {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.navbar__mobile-menu svg {
  width: 24px;
  height: 24px;
}
.navbar__desktop {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .navbar {
    height: 48px;
    padding: 0;
  }
  .navbar__desktop {
    display: none;
  }
  .navbar__mobile {
    display: flex;
  }
}

.telegram-snackbar {
  display: none;
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 999;
  min-height: 44px;
  padding: 8px 16px;
  background-image: linear-gradient(180deg, #3AAFEF 0%, #118BD0 100%);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
@media (max-width: 768px) {
  .telegram-snackbar {
    display: flex;
  }
}
.telegram-snackbar__link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  flex: 1;
  min-width: 0;
}
.telegram-snackbar__icon-wrapper {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.telegram-snackbar__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.telegram-snackbar__text {
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}
.telegram-snackbar__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  height: 28px;
  min-width: 66px;
  background: white;
  border-radius: 6px;
  text-decoration: none;
  color: #000000;
  font-size: 10px;
  font-weight: 600;
  font-family: "Gilroy", sans-serif;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.04);
  flex-shrink: 0;
  transition: all 0.2s;
}
.telegram-snackbar__button:hover {
  background: #F9FAFC;
  box-shadow: 0px 2px 4px rgba(16, 24, 40, 0.08);
}
.telegram-snackbar__button:active {
  transform: scale(0.98);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  display: none;
  pointer-events: none;
}
.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 331px;
  max-width: 88%;
  padding-top: 67px;
  height: 100%;
  background: #F9FAFC;
  box-shadow: 3px 0px 47px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu__logo img {
  height: 24px;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 25px;
  border: 1px solid rgba(249, 250, 251, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu__close svg {
  width: 24px;
  height: 24px;
  stroke: white;
}
.mobile-menu__body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}
.mobile-menu__item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: white;
  border: 1px solid #EDEDED;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Gilroy", sans-serif;
  color: #252525;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  margin: 0 !important;
}
.mobile-menu__item--select {
  justify-content: space-between;
}
.mobile-menu__item--select svg:first-child {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mobile-menu__item--select span {
  flex: 1;
  text-align: left;
}
.mobile-menu__item--select svg:last-child {
  width: 9px;
  height: 4px;
  flex-shrink: 0;
}
.mobile-menu__item--button {
  justify-content: flex-start;
  background: white;
  color: #667085;
  padding: 10px 12px;
  gap: 12px;
  margin-bottom: 12px;
}
.mobile-menu__item--button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.mobile-menu__item--button span {
  flex: 1;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.mobile-menu__item--button:hover {
  background: #F9FAFC;
}
.mobile-menu__item--button--publish {
  min-height: 52px;
  background: #F4F6FF;
  gap: 8px;
  margin: 0;
}
.mobile-menu__item--button--publish svg {
  width: 20px;
  height: 20px;
}
.mobile-menu__item--button--publish span {
  font-size: 16px;
  text-align: center;
}
.mobile-menu__item--link {
  justify-content: space-between;
  background: white;
}
.mobile-menu__item--link span {
  flex: 1;
  text-align: center;
}
.mobile-menu__item--link svg {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
}
.mobile-menu__item--link:hover {
  background: #F9FAFC;
}
.mobile-menu__item:hover {
  border-color: #CAD6EC;
}
.mobile-menu.open {
  display: block;
  pointer-events: all;
}
.mobile-menu.open .mobile-menu__overlay {
  opacity: 1;
}
.mobile-menu.open .mobile-menu__content {
  transform: translateX(0);
}

.container {
  max-width: 1440px;
  padding: 32px 64px;
  margin: 0 auto;
  margin-top: 64px;
  position: relative;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 16px;
    margin-top: 92px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.content {
  width: 100%;
  justify-self: start;
}

.filters {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
  align-items: center;
}

.date-filter-wrapper {
  position: relative;
  min-width: auto;
}
.date-filter-wrapper::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 5.83334L7 9.33334L10.5 5.83334' stroke='%2368727D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.2s;
}

.month-picker-placeholder {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 500;
  color: #68727D;
  pointer-events: none;
  z-index: 3;
  user-select: none;
  -webkit-user-select: none;
  transition: opacity 0.2s;
}
.month-picker-placeholder.hidden {
  opacity: 0;
  visibility: hidden;
}

.month-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  padding-right: 32px;
  background: white;
  border: 1px solid #d7dce4;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  height: 32px;
  font-family: "Gilroy", sans-serif;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  caret-color: transparent;
  position: relative;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-align: center;
  pointer-events: auto;
}
.month-picker.empty {
  color: transparent !important;
}
.month-picker.empty::-webkit-datetime-edit {
  color: transparent !important;
}
.month-picker.empty::-webkit-datetime-edit-fields-wrapper {
  color: transparent !important;
}
.month-picker.empty::-webkit-datetime-edit-text {
  color: transparent !important;
}
.month-picker.empty::-webkit-datetime-edit-month-field {
  color: transparent !important;
}
.month-picker.empty::-webkit-datetime-edit-year-field {
  color: transparent !important;
}
.month-picker:hover {
  border-color: #CAD6EC;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}
.month-picker:focus {
  outline: none;
  border-color: #CAD6EC;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
}
.month-picker:invalid {
  color: #68727D;
}
.month-picker::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  z-index: 2;
}
.month-picker::selection {
  background: transparent !important;
  color: inherit !important;
}
.month-picker::-moz-selection {
  background: transparent !important;
  color: inherit !important;
}
.month-picker::-webkit-datetime-edit {
  user-select: none !important;
  -webkit-user-select: none !important;
}
.month-picker::-webkit-datetime-edit-fields-wrapper {
  user-select: none !important;
  -webkit-user-select: none !important;
}
.month-picker::-webkit-datetime-edit-text {
  user-select: none !important;
  -webkit-user-select: none !important;
}
.month-picker::-webkit-datetime-edit-month-field {
  user-select: none !important;
  -webkit-user-select: none !important;
}
.month-picker::-webkit-datetime-edit-year-field {
  user-select: none !important;
  -webkit-user-select: none !important;
}
.month-picker::-webkit-inner-spin-button {
  display: none;
}
.month-picker:active {
  user-select: none !important;
}

input[type=month]::-webkit-calendar-picker-indicator:hover {
  background-color: transparent;
}

::-webkit-datetime-edit {
  font-family: "Gilroy", sans-serif !important;
}

::-webkit-datetime-edit-fields-wrapper {
  font-family: "Gilroy", sans-serif !important;
}

::-webkit-datetime-edit-text {
  font-family: "Gilroy", sans-serif !important;
}

::-webkit-datetime-edit-month-field {
  font-family: "Gilroy", sans-serif !important;
}

::-webkit-datetime-edit-year-field {
  font-family: "Gilroy", sans-serif !important;
}

input[type=month] {
  color-scheme: light;
}
input[type=month]::-webkit-calendar-picker-indicator {
  filter: none;
}

.date-filter-wrapper * {
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

.custom-select {
  position: relative;
  min-width: auto;
  user-select: none;
}
.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  height: 32px;
  background: white;
  border: 1px solid #d7dce4;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s;
  gap: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.custom-select__trigger:hover {
  border-color: #CAD6EC;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}
.custom-select__value {
  white-space: nowrap;
  text-align: center;
  line-height: 16px;
}
.custom-select__value[data-default=true] {
  color: #68727D;
}
.custom-select__arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: #68727D;
}
.custom-select__options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #d7dce4;
  border-radius: 8px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
  max-height: 280px;
  overflow-y: auto;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.custom-select__options::-webkit-scrollbar {
  width: 6px;
}
.custom-select__options::-webkit-scrollbar-track {
  background: #F4F6FF;
  border-radius: 8px;
}
.custom-select__options::-webkit-scrollbar-thumb {
  background: #CAD6EC;
  border-radius: 8px;
}
.custom-select__options::-webkit-scrollbar-thumb:hover {
  background: #B0C4E0;
}
.custom-select__option {
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 14px;
  color: #000000;
  text-align: center;
  line-height: 16px;
}
.custom-select__option:hover {
  background: #F4F6FF;
  color: #000;
}
.custom-select__option:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.custom-select__option:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}
.custom-select.open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select.open .custom-select__trigger {
  border-color: #CAD6EC;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-reset-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: white;
  border: 1px solid #d7dce4;
  border-radius: 8px;
  color: #68727D;
  cursor: pointer;
  transition: all 0.2s;
  height: 32px;
  min-width: 32px;
  aspect-ratio: 1;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  flex-shrink: 0;
}
.filter-reset-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.filter-reset-btn:hover {
  border-color: #CAD6EC;
  background: #F4F6FF;
  color: #1a1a1a;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}
.filter-reset-btn:active {
  transform: scale(0.95);
}
.filter-reset-btn:focus {
  outline: none;
  border-color: #CAD6EC;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
}

.create-event-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #F4F6FF;
  border: 1px solid #EDEDED;
  border-radius: 12px;
  color: #667085;
  padding: 16px;
  margin: 16px 0;
  font-size: 16px;
  font-weight: 700;
  font-family: "Gilroy", sans-serif;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.04);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.create-event-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.create-event-btn:hover {
  background: #E8EBFF;
  border-color: #D1D5DB;
  box-shadow: 0px 2px 4px rgba(16, 24, 40, 0.08), 0px 1px 2px rgba(16, 24, 40, 0.04);
  transform: translateY(-1px);
}
.create-event-btn:hover::before {
  left: 100%;
}
.create-event-btn:active {
  transform: translateY(0);
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.04);
}
.create-event-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) saturate(100%) invert(40%) sepia(8%) saturate(800%) hue-rotate(195deg) brightness(95%) contrast(85%);
}
.create-event-btn:hover .create-event-btn__icon {
  transform: rotate(90deg) scale(1.1);
}
.create-event-btn p {
  margin: 0;
  color: #667085;
  font-weight: 700;
  transition: color 0.3s;
}
.create-event-btn:hover p {
  color: #4B5563;
}
@media (max-width: 768px) {
  .create-event-btn {
    font-size: 16px;
  }
  .create-event-btn__icon {
    width: 20px;
    height: 20px;
  }
}

.sidebar {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  max-height: calc(100vh - 120px);
  overflow-y: hidden;
  min-width: 323px;
}
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
}
.sidebar .title {
  margin: 16px 0;
}

.widget {
  height: 70px;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #EDEDED;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.04);
  margin: 8px 0;
  font-weight: bold;
  color: #666F80;
  display: flex;
}
.widget__img {
  height: 32px;
  margin-right: 24px;
}
.widget-telegram {
  color: white;
  background: linear-gradient(to right, #3AAFEF, #118BD0);
}

.options {
  background-color: #3A3A3A;
  padding: 12px 4px;
  border: 1px solid #494949;
  border-radius: 12px;
  z-index: 5;
  box-shadow: 3px 0px 47px 3.3px rgba(0, 0, 0, 0.12);
}

.option {
  opacity: 0.6;
  font-weight: 300;
  padding: 8px 12px;
  border-radius: 12px;
  transition: 0.3s;
  display: list-item;
  list-style: none;
  line-height: 28px;
}
.option.selected {
  padding: 8px 12px;
  font-weight: bold;
  opacity: 1;
  background-color: #252525;
}
.option:hover {
  opacity: 1;
  transition: 0.3s;
}

.event_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .event_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .event_list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.no-events {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  text-align: center;
  min-height: 400px;
}
.no-events__icon {
  margin-bottom: 24px;
  opacity: 0.6;
}
.no-events__title {
  font-size: 24px;
  font-weight: 600;
  color: #252525;
  margin-bottom: 12px;
  font-family: "Gilroy", sans-serif;
}
.no-events__message {
  font-size: 16px;
  color: #68727D;
  line-height: 1.5;
  max-width: 500px;
  font-family: "Gilroy", sans-serif;
}
@media (max-width: 768px) {
  .no-events {
    padding: 48px 24px;
    min-height: 300px;
  }
  .no-events__icon {
    margin-bottom: 20px;
  }
  .no-events__icon svg {
    width: 48px;
    height: 48px;
  }
  .no-events__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .no-events__message {
    font-size: 14px;
  }
}

.event_card {
  height: 353px;
  width: 100%;
  max-width: 100%;
  border: 1px solid #EAEBF0;
  border-radius: 12px;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.04);
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 768px) {
  .event_card {
    height: auto;
    min-height: 353px;
  }
}
.event_card-md {
  height: 177px;
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 8px;
  border-radius: 12px;
}
.event_card-md::after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  pointer-events: none;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
}
.event_card__preview {
  height: 168px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
}
.event_card__preview__cover {
  width: 100%;
  filter: brightness(0.8);
}
.event_card__preview-md {
  width: 100%;
  z-index: 0;
}
.event_card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 64px;
  width: 64px;
  background-color: white;
  border-radius: 6px;
  z-index: 3;
}
.event_card__date__month {
  background-color: #CAD6EC;
  font-size: 12px;
  font-weight: 600;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  text-align: center;
  line-height: 18px;
  text-transform: uppercase;
}
.event_card__date__day {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  vertical-align: auto;
  margin: 4px;
}
.event_card__content {
  padding: 24px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .event_card__content {
    padding: 16px;
  }
}
.event_card__tags {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.event_card__tag {
  background-color: #F3F3F3;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.event_card__title {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .event_card__title {
    font-size: 20px;
    margin: 4px 0;
  }
}
.event_card__title-md {
  color: white;
  font-size: 20px;
  z-index: 3;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 14px;
  font-weight: 600;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  width: calc(100% - 28px);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .event_card__title-md {
    font-size: 20px;
    padding: 12px;
    width: calc(100% - 24px);
  }
}
.event_card__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #68727D;
  font-size: 14px;
  line-height: 1.4em;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .event_card__description {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.event_card__views {
  color: #68727D;
  font-size: 12px;
}

.event-detail {
  max-width: 1440px;
  padding: 32px 64px;
  margin: 0 auto;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .event-detail {
    padding: 16px;
    margin-top: 92px;
    padding-bottom: 80px;
  }
}
.event-detail__breadcrumb {
  font-size: 14px;
  color: #68727D;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .event-detail__breadcrumb {
    font-size: 12px;
    margin-bottom: 16px;
  }
}
.event-detail__breadcrumb a {
  color: #3366FF;
  text-decoration: none;
}
.event-detail__breadcrumb a:hover {
  text-decoration: underline;
}
.event-detail__breadcrumb span {
  margin: 0 8px;
}
@media (max-width: 768px) {
  .event-detail__breadcrumb span {
    margin: 0 4px;
  }
}
.event-detail__container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .event-detail__container {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }
}
.event-detail__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #FFFFFF;
  border: 1px solid #EAEBF0;
  border-radius: 10px;
  padding: 24px;
}
@media (max-width: 768px) {
  .event-detail__main {
    padding: 16px;
    gap: 16px;
    border-radius: 10px;
  }
}
.event-detail__mobile-info {
  display: none;
}
@media (max-width: 768px) {
  .event-detail__mobile-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }
}
.event-detail__mobile-info-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.event-detail__image-wrapper {
  max-width: 492px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .event-detail__image-wrapper {
    max-width: 100%;
    border-radius: 10px;
  }
}
.event-detail__image {
  width: 100%;
  height: auto;
  display: block;
}
.event-detail__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .event-detail__content {
    gap: 12px;
  }
}
.event-detail__title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin: 0;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .event-detail__title {
    font-size: 20px;
    line-height: 1.4;
  }
}
.event-detail__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.event-detail__tag {
  background: #FF1493;
  color: white;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}
.event-detail__description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
@media (max-width: 768px) {
  .event-detail__description {
    font-size: 14px;
    line-height: 1.5;
  }
}
.event-detail__location {
  margin-top: 16px;
  padding: 16px;
  background: #F4F6FF;
  border-radius: 12px;
}
.event-detail__location h3 {
  font-size: 18px;
  margin: 0 0 8px 0;
}
.event-detail__location p {
  margin: 0;
  color: #666;
}
.event-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
  height: fit-content;
  overflow-y: hidden;
}
@media (max-width: 768px) {
  .event-detail__sidebar {
    display: none;
  }
}
.event-detail__info-card {
  background: white;
  border: 1px solid #EAEBF0;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .event-detail__info-card .event-detail__register-btn {
    display: none;
  }
}
.event-detail__register-btn--mobile {
  display: none !important;
}
@media (min-width: 769px) {
  .event-detail__register-btn--mobile {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .event-detail__register-btn--mobile {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 16px;
    border-radius: 0;
    z-index: 1000;
    box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, #667EEA, #764BA2);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: none;
  }
  .event-detail__register-btn--mobile svg {
    width: 16px;
    height: 16px;
  }
}
.event-detail__info-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .event-detail__info-header {
    gap: 16px;
  }
}
.event-detail__info-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .event-detail__info-text {
    gap: 4px;
  }
}
@media (max-width: 768px) {
  .event-detail__info-text--mobile {
    gap: 4px;
  }
}
.event-detail__date-badge {
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid #EDEDED;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .event-detail__date-badge {
    width: 64px;
    height: 64px;
    border-radius: 6px;
  }
}
@media (max-width: 768px) {
  .event-detail__date-badge--mobile {
    width: 64px;
    height: 64px;
    border-radius: 6px;
  }
}
.event-detail__date-month {
  background: #CAD6EC;
  font-size: 14px;
  font-weight: 600;
  padding: 4px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .event-detail__date-month {
    font-size: 12px;
    padding: 2px;
  }
}
.event-detail__date-day {
  font-size: 32px;
  font-weight: bold;
  padding: 8px;
  line-height: 1;
}
@media (max-width: 768px) {
  .event-detail__date-day {
    font-size: 24px;
    padding: 4px;
  }
}
.event-detail__city {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .event-detail__city {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .event-detail__city--mobile {
    font-size: 20px;
    margin: 0;
  }
}
.event-detail__datetime {
  font-size: 14px;
  color: #68727D;
  margin: 0;
}
@media (max-width: 768px) {
  .event-detail__datetime {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .event-detail__datetime--mobile {
    font-size: 12px;
    margin: 0;
  }
}
.event-detail__info-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .event-detail__info-tags {
    gap: 4px;
  }
}
@media (max-width: 768px) {
  .event-detail__info-tags--mobile {
    gap: 4px;
  }
}
.event-detail__info-tag {
  background: #F3F3F3;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .event-detail__info-tag {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 4px;
  }
}
.event-detail__register-btn {
  background: linear-gradient(to right, #667EEA, #764BA2);
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s;
}
.event-detail__register-btn:hover {
  transform: translateY(-2px);
}
.event-detail__register-btn svg {
  width: 20px;
  height: 20px;
}
.event-detail__calendar-btn {
  background: #F4F6FF;
  border: 1px solid #EDEDED;
  color: #666F80;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.2s;
}
.event-detail__calendar-btn:hover {
  background: #E8ECFF;
}
.event-detail__telegram-widget {
  background: linear-gradient(to right, #3AAFEF, #118BD0);
  color: white;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.04);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.2s;
}
@media (max-width: 768px) {
  .event-detail__telegram-widget--desktop {
    display: none;
  }
}
.event-detail__telegram-widget:hover {
  transform: translateY(-2px);
}
.event-detail__telegram-widget p {
  margin: 0;
  font-size: 14px;
}
.event-detail__telegram-icon {
  width: 40px;
  height: 40px;
}
.event-detail__other-events {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .event-detail__other-events {
    margin-top: 24px;
  }
}
.event-detail__other-events .title {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .event-detail__other-events .title {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
.event-detail__other-events .event_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(308px, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .event-detail__other-events .event_list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/*# sourceMappingURL=main.css.map */
