/* Винный клуб — лендинг (шапка/футер сайта не затрагиваем) */
.vc {
  --vc-black: #303030;
  --vc-grey-900: #4e4e4e;
  --vc-grey-600: #6d6d6e;
  --vc-grey-550: #949596;
  --vc-grey-500: #cbcccd;
  --vc-grey-400: #e9e9eb;
  --vc-white: #fff;
  --vc-green-800: #384614;
  --vc-green-200: #76b929;
  --vc-radius: 20px;
  --vc-btn-radius: 24px;
  --vc-font: "Nunito", "Segoe UI", sans-serif;
  --vc-display: "Petersburg", "Peterburg", "Times New Roman", serif;
  --vc-max-banner: 1360px;
  --vc-max: 1200px;
  --vc-pad-x: 40px;
  box-sizing: border-box;
  color: var(--vc-black);
  font-family: var(--vc-font);
  margin: 0 auto;
  max-width: 100%;
  overflow-x: hidden;
  padding: 0 var(--vc-pad-x) 80px;
}

.vc *,
.vc *::before,
.vc *::after {
  box-sizing: border-box;
}

.vc a {
  text-decoration: none;
}

.vc-inner {
  margin: 0 auto;
  max-width: var(--vc-max);
}

.vc-title {
  align-items: center;
  display: flex;
  gap: 16px;
  margin: 0 0 60px;
}

.vc-title__text {
  font-family: var(--vc-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 0.9;
  margin: 0;
  white-space: nowrap;
}

.vc-title__line {
  background: var(--vc-grey-500);
  flex: 1;
  height: 1px;
  min-width: 0;
}

.vc-title__icon {
  display: block;
  flex-shrink: 0;
  height: 24px;
  width: 24px;
}

.vc-btn {
  align-items: center;
  background: var(--vc-green-200);
  border: none;
  border-radius: var(--vc-btn-radius);
  color: var(--vc-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--vc-font);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  padding: 12px 40px 14px;
  transition: opacity 0.2s ease;
}

.vc-btn:hover {
  opacity: 0.92;
}

.vc-btn--outline {
  background: transparent;
  border: 1px solid var(--vc-green-200);
  color: var(--vc-green-200);
}

.vc-btn--wide {
  width: 100%;
}

/* Hero logo */
.vc-logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 20px auto 0;
  max-width: 320px;
  padding-top: 20px;
}

.vc-logo__label-row {
  margin: 0 auto;
  width: 100%;
  max-width: 264px;
}

.vc-logo__label {
  color: #7b7b7b;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.vc-logo__line {
  display: none;
}

.vc-logo__mark {
  display: block;
  height: auto;
  max-width: 320px;
  width: 100%;
}

.vc-logo__compose {
  height: 170px;
  position: relative;
  width: 320px;
}

.vc-logo__letters {
  display: block;
  height: auto;
  left: 0;
  position: absolute;
  bottom: -13px;
  width: 295px;
}

.vc-logo__leaf--left {
  left: 0;
  position: absolute;
  top: 88px;
  transform: rotate(-18.5deg);
  width: 68px;
}

.vc-logo__leaf--right {
  position: absolute;
  right: 4px;
  top: 92px;
  width: 84px;
}

.vc-logo__grapes {
  left: 24px;
  position: absolute;
  top: 46px;
  width: 64px;
}

/* Banner — в потоке, боковые 40px даёт padding у .vc */
.vc-banner {
  background:
    radial-gradient(ellipse at center bottom, rgba(101, 147, 12, 0.95) 0%, rgba(56, 70, 20, 1) 70%),
    linear-gradient(180deg, #384614 0%, #3a4815 100%);
  border-radius: var(--vc-radius);
  color: var(--vc-white);
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto 100px;
  padding: 40px 40px 20px;
  text-align: center;
  width: 100%;
  max-width: var(--vc-max-banner);
}

.vc-banner__title {
  font-family: var(--vc-display);
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.05;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.vc-banner__cols {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 768px;
  text-align: left;
}

.vc-banner__cols p {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.vc-banner__actions {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vc-banner__download {
  align-items: center;
  color: var(--vc-grey-500);
  display: inline-flex;
  gap: 4px;
  justify-content: center;
}

.vc-banner__download img {
  display: block;
  height: 18px;
  width: 15px;
}

.vc-banner__download span {
  font-size: 16px;
  line-height: 1.2;
}

/* Баннер без ближайших встреч */
.vc-banner--empty {
  align-items: center;
  gap: 40px;
}

.vc-banner--empty .vc-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 692px;
  width: 100%;
}

.vc-banner--empty .vc-banner__title {
  display: flex;
  margin: 0;
  width: 100%;
}

.vc-banner--empty .vc-banner__title-line {
  display: block;
  text-align: left;
  width: 100%;
}

.vc-banner--empty .vc-banner__title-line--end {
  text-align: right;
}

.vc-banner__soon {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
}

.vc-banner__soon-line {
  background: rgba(255, 255, 255, 0.45);
  flex: 1;
  height: 1px;
  min-width: 0;
}

.vc-banner__soon-text {
  color: var(--vc-white);
  flex-shrink: 0;
  font-family: var(--vc-font);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0 4px;
}

.vc-banner--empty .vc-banner__cols {
  max-width: none;
  width: 100%;
}

.vc-banner--empty .vc-banner__actions {
  max-width: 692px;
  width: 100%;
}

.vc-section {
  max-width: var(--vc-max);
  margin: 0 auto 100px;
}

/* Upcoming event cards */
.vc-events {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vc-event {
  border: 1px solid var(--vc-grey-500);
  border-radius: var(--vc-radius);
  display: flex;
  gap: 16px;
  min-height: 400px;
  overflow: hidden;
}

.vc-event__photo {
  flex: 1;
  min-width: 0;
  padding: 8px;
}

.vc-event__photo img {
  border-radius: 12px;
  display: block;
  height: 100%;
  min-height: 384px;
  object-fit: cover;
  width: 100%;
}

.vc-event__photo-placeholder {
  background: #d9d9d9;
  border-radius: 12px;
  min-height: 384px;
  width: 100%;
}

.vc-event__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 40px 20px;
}

.vc-event__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-tag {
  align-items: center;
    background: var(--vc-green-800);
    border-radius: 20px;
    color: var(--vc-white);
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    gap: 8px;
    line-height: 1.2;
    padding: 4px 12px;
    white-space: nowrap;
}

.vc-tag__sep {
  display: inline-block;
}

.vc-event__name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.vc-event__title {
  font-family: var(--vc-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
}

.vc-event__subtitle {
  color: var(--vc-grey-900);
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.vc-event__place-divider {
  align-items: center;
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  width: 100%;
}

.vc-event__place-divider span {
  background: var(--vc-grey-500);
  flex: 1;
  height: 1px;
}

.vc-event__place-divider img {
  display: block;
  height: 24px;
  width: 24px;
}

.vc-event__place {
  align-items: center;
  display: flex;
  gap: 12px;
  padding-top: 0;
}

.vc-event__place-logo {
  flex-shrink: 0;
  height: 60px;
  object-fit: cover;
  width: 60px;
}

.vc-event__place-text {
  color: var(--vc-grey-900);
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

/* Facts */
.vc-facts__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}

.vc-fact {
  border: 1px solid var(--vc-grey-500);
  border-radius: var(--vc-radius);
  display: flex;
  gap: 12px;
  padding: 20px;
}

.vc-fact__icon {
  display: block;
  flex-shrink: 0;
  height: 32px;
  width: 32px;
}

.vc-fact__value {
  font-family: var(--vc-display);
  font-size: 26px;
  line-height: 0.9;
  margin: 4px 0;
}

.vc-fact__desc {
  color: var(--vc-grey-600);
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.vc-quote {
  background: linear-gradient(175.53deg, #384614 14.75%, #7dae1e 119.47%);
  border-radius: var(--vc-radius);
  color: var(--vc-white);
  display: flex;
  gap: 12px;
  padding: 40px;
}

.vc-quote__mark {
  display: flex;
  flex-shrink: 0;
  height: 29px;
  width: 25px;
}

.vc-quote__mark:last-of-type {
  align-self: flex-end;
}

.vc-quote__content {
  flex: 1;
  min-width: 0;
}

.vc-quote__lead {
  font-family: var(--vc-display);
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 4px;
}

.vc-quote__text {
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}

/* Reviews (Swiper) */
.vc-reviews {
  width: 100%;
}

.vc-reviews-swiper {
  overflow: hidden;
  width: 100%;
}

.vc-reviews-swiper .swiper-wrapper {
  display: flex;
  box-sizing: content-box;
}

.vc-reviews-swiper .swiper-slide {
  box-sizing: border-box;
  flex-shrink: 0;
  height: auto;
  width: 100%;
}

.vc-review {
  border: 1px solid var(--vc-grey-500);
  border-radius: var(--vc-radius);
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vc-review.is-expandable {
  cursor: pointer;
}

.vc-review.is-expandable:hover,
.vc-review.is-expandable:focus-visible {
  border-color: var(--vc-green-200);
  box-shadow: 0 8px 24px rgba(48, 48, 48, 0.06);
  outline: none;
}

.vc-review__name {
  color: var(--vc-grey-550);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.vc-review__text-wrap {
  position: relative;
}

.vc-review__text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
  overflow: hidden;
}

.vc-review__text-wrap.is-clamped::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--vc-white) 78%);
  bottom: 0;
  content: "";
  height: 2.7em;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.vc-review__divider {
  background: var(--vc-grey-500);
  height: 1px;
  margin: 0;
  width: 100%;
}

.vc-review__meta-tag {
  border: 1px solid var(--vc-grey-500);
  border-radius: 20px;
  color: var(--vc-grey-550);
  display: inline-flex;
  font-size: 14px;
  line-height: 1.2;
  padding: 4px 12px;
  width: fit-content;
}

.vc-review__event {
  color: var(--vc-grey-550);
  font-size: 16px;
  line-height: 1.2;
  margin: 4px 0 0;
}

.vc-review--modal {
  border: none;
  box-shadow: none;
  cursor: default;
  max-height: min(64vh, 560px);
  overflow: auto;
  padding: 0 12px 8px 4px;
  scrollbar-color: var(--vc-green-200) var(--vc-grey-400);
  scrollbar-width: thin;
}

.vc-review--modal::-webkit-scrollbar {
  width: 8px;
}

.vc-review--modal::-webkit-scrollbar-track {
  background: var(--vc-grey-400);
  border-radius: 8px;
}

.vc-review--modal::-webkit-scrollbar-thumb {
  background: var(--vc-green-200);
  border-radius: 8px;
}

.vc-review--modal::-webkit-scrollbar-thumb:hover {
  background: var(--vc-green-800);
}

.vc-review--modal:hover,
.vc-review--modal:focus-visible {
  border: none;
  box-shadow: none;
}

.vc-review__text--full {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
  white-space: pre-wrap;
}

.vc-reviews__nav {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 16px;
  position: relative;
}

.vc-reviews__arrow {
  align-items: center;
  background: var(--vc-white);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  left: auto;
  margin: 0;
  padding: 0;
  position: static;
  right: auto;
  top: auto;
  width: 44px;
}

.vc-reviews__arrow::after {
  display: none;
}

.vc-reviews__arrow.swiper-button-disabled {
  cursor: default;
  opacity: 0.4;
}

.vc-reviews__dots {
  display: flex;
  gap: 8px;
  position: static!important;
  width: auto;
}

.vc-reviews__dot {
  background: var(--vc-grey-400);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: block;
  height: 12px;
  margin: 0 !important;
  opacity: 1;
  padding: 0;
  width: 12px;
}

.vc-reviews__dot.is-active {
  background: transparent;
  border: 1px solid var(--vc-green-800);
}

/* Reviews modal */
html.vc-reviews-modal-open,
html.vc-reviews-modal-open body {
  overflow: hidden;
}

.vc-reviews-modal {
  align-items: center;
  display: flex !important;
  inset: 0;
  justify-content: center;
  padding: 24px 16px;
  position: fixed;
  z-index: 10050;
}

.vc-reviews-modal[hidden] {
  display: none !important;
}

.vc-reviews-modal__backdrop {
  background: rgba(48, 48, 48, 0.72);
  inset: 0;
  position: absolute;
}

.vc-reviews-modal__dialog {
  animation: vc-reviews-modal-in 0.28s ease;
  background: var(--vc-white);
  border-radius: var(--vc-radius);
  box-shadow: 0 24px 64px rgba(48, 48, 48, 0.18);
  display: flex;
  flex-direction: column;
  max-height: min(90vh, 760px);
  max-width: 720px;
  overflow: hidden;
  padding: 16px 20px 20px;
  position: relative;
  width: min(100%, 720px);
  z-index: 1;
}

@keyframes vc-reviews-modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vc-reviews-modal__head {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  margin: 0 0 8px;
  min-height: 40px;
}

.vc-reviews-modal__close {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 40px;
  color: var(--vc-grey-900);
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: static;
  width: 40px;
  z-index: 2;
}

.vc-reviews-modal__close:hover {
  background: var(--vc-grey-400);
}

.vc-reviews-modal__swiper {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  width: 100%;
}

.vc-reviews-modal__nav {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .vc-reviews-modal__dialog {
    padding: 12px 12px 16px;
  }

  .vc-review--modal {
    max-height: min(58vh, 480px);
    padding: 0 10px 8px 2px;
  }
}

/* Past meetings */
.vc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.vc-filter {
  background: transparent;
  border: 1px solid var(--vc-grey-500);
  border-radius: 28px;
  color: var(--vc-black);
  cursor: pointer;
  font-family: var(--vc-font);
  font-size: 16px;
  font-weight: 400;
  height: 44px;
  line-height: 1.2;
  padding: 12px 32px 14px;
}

.vc-filter.is-active {
  border-color: var(--vc-green-200);
  font-weight: 700;
}

.vc-past__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.vc-past-card {
  background: var(--vc-white);
  border: 1px solid #cdcdcd;
  border-radius: var(--vc-radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  padding-bottom: 20px;
}

.vc-past-card.is-hidden {
  display: none;
}

.vc-past-card__photo {
  padding: 8px;
}

.vc-past-card__photo img {
  border-radius: 12px;
  display: block;
  height: 246px;
  object-fit: cover;
  width: 100%;
}

.vc-past-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
}

.vc-past-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-past-tag {
  border: 1px solid var(--vc-grey-500);
  border-radius: 20px;
  color: #4d4d4e;
  font-size: 12px;
  line-height: 1.2;
  padding: 4px 12px;
}

.vc-past-card__date {
  color: var(--vc-grey-900);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.vc-past-card__name {
  color: var(--vc-grey-900);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.vc-past__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.vc-past__more-wrap.is-hidden {
  display: none;
}

.vc-past.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.vc-past.is-loading [data-vc-past-more] {
  opacity: 0.5;
}

@media (max-width: 1100px) {
  .vc-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vc-past__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .vc-event {
    flex-direction: column;
    min-height: 0;
  }

  .vc-event__photo img,
  .vc-event__photo-placeholder {
    min-height: 220px;
  }

  .vc-event__body {
    padding: 24px 16px 20px;
    gap: 20px;
  }
  
  .vc-logo {
    gap: 12px;
    max-width: none;
    width: 100%;
  }

  .vc-logo__label-row {
    align-items: center;
    display: flex;
    gap: 8px;
  }

  .vc-logo__label {
    font-size: 18px;
    flex-shrink: 0;
  }

  .vc-logo__line {
    background: #6D6D6E;
    display: block;
    flex: 1;
    height: 1px;
    min-width: 0;
  }

  .vc-logo__letters {
    top: 0px;
    left: 5px;
    bottom: auto;
  }

  .vc-event__place-logo {
    height: 40px;
    width: 40px;
  }

  .vc-banner__title {
    font-size: 36px;
    letter-spacing: 0.04em;
  }

  .vc-banner--empty .vc-banner__title {
    flex-direction: column;
    font-size: 40px;
    letter-spacing: 0.04em;
  }

  .vc-banner {
    gap: 32px;
    margin-bottom: 64px;
    padding: 28px 16px 16px;
  }

  .vc-banner--empty {
    gap: 28px;
  }

  .vc-banner__soon-text {
    font-size: 16px;
  }

  .vc-banner__cols {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vc-title {
    margin-bottom: 32px;
  }

  .vc-title__text {
    font-size: 28px;
    white-space: normal;
  }

  .vc-section {
    margin-bottom: 64px;
  }

  .vc-event__title {
    font-size: 24px;
  }

  .vc-quote {
    padding: 24px 16px;
  }

  .vc-quote__lead {
    font-size: 28px;
  }

  .vc-quote__text {
    font-size: 16px;
  }
}

/* ========== Страница предстоящего мероприятия ========== */
.vc-event-page {
  padding-top: 0;
}

.vc-eh {
  margin: 0 0 80px;
  position: relative;
}

.vc-eh__logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 50%;
  max-width: 140px;
  padding-top: 4px;
  position: absolute;
  top: -35px;
  transform: translateX(-50%);
  width: 140px;
  z-index: 2;
}

.vc-eh__logo-label {
  color: var(--vc-grey-600);
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.vc-eh__logo-mark {
  display: block;
  height: auto;
  width: 100%;
}

.vc-eh__banner {
  background-color: #ffffff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: var(--vc-radius);
  color: var(--vc-white);
  margin: 36px auto 0;
  max-width: var(--vc-max-banner);
  min-height: 420px;
  overflow: visible;
  padding: 120px 40px 48px;
  position: relative;
  width: 100%;
}

.vc-eh__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.vc-eh__titles {
  text-align: center;
}

.vc-eh__title {
  font-family: var(--vc-display);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.vc-eh__subtitle {
  font-size: 22px;
  line-height: 1.2;
  margin: 8px 0 0;
}

.vc-eh__meta {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.vc-eh__date-row {
  align-items: center;
  display: flex;
  gap: 20px;
  width: 100%;
}

.vc-eh__line {
  background: rgba(255, 255, 255, 0.45);
  flex: 1;
  height: 1px;
}

.vc-eh__date,
.vc-eh__time {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.vc-eh__place {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-size: 20px;
  line-height: 1.2;
  max-width: 100%;
  text-align: center;
}

.vc-eh__place span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.vc-eh__place img {
  display: block;
  flex-shrink: 0;
  height: 28px;
  width: 28px;
}

.vc-eh__actions {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.vc-eh__ticket {
  gap: 12px;
  min-width: 280px;
}

.vc-eh__ticket-sep {
  align-self: stretch;
  background: rgba(255, 255, 255, 0.55);
  width: 1px;
}

.vc-eh__note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

.vc-about__row {
  align-items: flex-start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.vc-about__texts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vc-about__texts p {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.vc-about__media {
  border-radius: var(--vc-radius);
  min-height: 360px;
  overflow: hidden;
}

.vc-about__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.vc-about__media--empty,
.vc-venue__photo.is-empty {
  background: linear-gradient(145deg, #e9e9eb 0%, #f5f5f5 100%);
}

.vc-venue {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.vc-venue__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.vc-info-card {
  background: var(--vc-green-800);
  border-radius: var(--vc-radius);
  color: var(--vc-white);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
  padding: 32px 40px;
}

.vc-info-card__head {
  align-items: center;
  display: flex;
  gap: 16px;
}

.vc-info-card__title {
  font-family: var(--vc-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 0.95;
  margin: 0;
  white-space: nowrap;
}

.vc-info-card__line {
  background: rgba(255, 255, 255, 0.35);
  flex: 1;
  height: 1px;
}

.vc-info-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vc-info-card__body--place {
  justify-content: space-between;
  height: 100%;
}

.vc-info-card__row {
  align-items: center;
  display: flex;
  gap: 20px;
}

.vc-info-card__media {
  align-items: center;
  display: flex;
  flex: 0 0 120px;
  justify-content: center;
  width: 120px;
}

.vc-info-card__row > :not(.vc-info-card__media),
.vc-info-card__body--partner > :not(.vc-info-card__media) {
  flex: 1 1 auto;
  min-width: 0;
}

.vc-info-card__icon {
  display: block;
  flex-shrink: 0;
  height: 54px;
  width: 54px;
}

.vc-info-card__icon--place {
  width: 120px;
  height: 44px;
}

.vc-info-card__place {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.vc-info-card__logo {
  display: block;
  height: 90px;
  object-fit: contain;
  width: 120px;
}

.vc-info-card__row--desc p,
.vc-info-card__partner-text p {
  font-size: 15px;
  line-height: 1.25;
  margin: 0;
}

.vc-info-card__partner-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-info-card__body--partner {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.vc-venue__photos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-venue__photo {
  border-radius: var(--vc-radius);
  color: inherit;
  display: block;
  overflow: hidden;
  position: relative;
}

.vc-venue__photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.vc-venue__photo--wide {
  height: 280px;
}

.vc-venue__photos-bottom {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.vc-venue__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-venue__col .vc-venue__photo {
  flex: 1;
  min-height: 180px;
}

.vc-venue__photo--tall {
  min-height: 100%;
}

/* Программа */
.vc-program-slider {
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

.vc-program-main {
  max-width: 100%;
  overflow: hidden;
}

.vc-program-main .swiper-wrapper {
  overflow: visible;
}

.vc-wine {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 384px minmax(0, 1fr);
  min-height: 480px;
}

.vc-wine__info {
  align-self: end;
  padding-bottom: 120px;
}

.vc-wine__info--mobile {
  display: none;
}

.vc-wine__name {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 8px;
}

.vc-wine__desc {
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
}

.vc-wine__side {
  align-self: end;
  min-width: 0;
}

.vc-wine__bottle-wrap {
  align-items: center;
  background-image: url(assets/program-slot.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  padding: 0 24px 24px;
  position: relative;
  background-position: center;
}

.vc-wine__bottle {
  height: 360px;
  position: relative;
  width: 110px;
  z-index: 1;
}

.vc-wine__bottle img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.vc-wine__price-row {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 16px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.vc-wine__price-line {
  background: var(--vc-grey-500);
  flex: 1;
  height: 1px;
}

.vc-wine__price {
  background: var(--vc-green-200);
  border-radius: 20px;
  color: var(--vc-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  padding: 4px 16px;
  white-space: nowrap;
}

.vc-wine__price sup {
  font-size: 14px;
}

.vc-wine__food {
  padding-bottom: 120px;
}

.vc-wine--no-food .vc-wine__side .vc-wine__desc {
  padding-bottom: 120px;
}

.vc-wine__food img {
  display: block;
  height: 44px;
  margin-bottom: 8px;
  width: 44px;
}

.vc-wine__food p {
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
}

.vc-program__nav {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

.vc-program__arrow {
  align-items: center;
  background: var(--vc-white);
  border: 1px solid var(--vc-grey-500);
  border-radius: 40px;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.vc-program__arrow:hover {
  border-color: var(--vc-green-200);
}

.vc-program-thumbs {
  max-width: 520px;
  overflow: hidden;
}

.vc-program-thumbs .swiper-slide {
  width: 56px;
}

.vc-program-thumb {
  background: var(--vc-grey-400);
  border: 2px solid transparent;
  border-radius: 9999px;
  height: 60px;
  width: 60px;
  overflow: hidden;
}

.vc-program-thumbs .swiper-slide-thumb-active .vc-program-thumb {
  border-color: #384614;
}

.vc-program-thumb img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
  padding: 4px;
}

.vc-program__footnote {
  color: var(--vc-grey-550);
  font-size: 16px;
  margin: 16px 0 0;
  text-align: center;
}

.vc-hosts__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vc-host {
  align-items: flex-start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 384px) minmax(0, 1fr);
}

.vc-host__person {
  display: flex;
  gap: 16px;
}

.vc-host__icon {
  flex-shrink: 0;
  height: 32px;
  width: 32px;
}

.vc-host__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 4px;
}

.vc-host__role,
.vc-host__text {
  font-size: 16px;
  line-height: 1.25;
  margin: 0;
}

.vc-promo__card {
  align-items: center;
  background-image: url(assets/banner-promo.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  border-radius: var(--vc-radius);
  color: var(--vc-white);
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr auto 1fr;
  padding: 48px 40px;
}

.vc-promo__side {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.vc-promo__center {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vc-promo__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  white-space: nowrap;
}

.vc-promo__underline {
  background: rgba(255, 255, 255, 0.55);
  height: 1px;
  width: 100%;
}

@media (max-width: 1100px) {
  .vc-wine {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .vc-wine__info,
  .vc-wine__side,
  .vc-wine__food {
    align-self: stretch;
    padding-bottom: 0;
  }

  .vc-wine--no-food .vc-wine__side .vc-wine__desc {
    padding-bottom: 0;
  }

  .vc-wine__food {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .vc-wine--no-food .vc-wine__info {
    text-align: center;
  }

  .vc-venue {
    grid-template-columns: 1fr;
  }

  .vc-about__row {
    grid-template-columns: 1fr;
  }

  .vc-promo__card {
    gap: 20px;
    grid-template-columns: 1fr;
    text-align: center;
    background-size: cover;
    background-position: 42% top;
  }

  .vc-promo__center {
    align-items: baseline;
  }

  .vc-promo__side {
    text-align: left;
  }

  .vc-wine__price-row {
    margin-top: auto;
    max-width: 410px;
  }

  .vc-wine__bottle-wrap {
    padding: 0 24px 20px;
    background-position: bottom;
    min-height: 530px;
  }

  .vc-wine__info--desktop {
    display: none;
  }

  .vc-wine__info--mobile {
    display: block;
    color: #fff;
    z-index: 1;
    margin-top: 16px;
    text-align: left;
    max-width: 410px;
    margin: 16px auto;
  }

  .vc-wine__food {
    align-items: center;
    flex-direction: row;
    padding: 20px;
    background-color: #384614;
    border-radius: 20px;
    color: var(--vc-white);
    margin: 0 auto;
    gap: 4px;
    max-width: 493px;
  }

  .vc-wine__food p {
    text-align: left;
  }

  .vc-wine {
    gap: 2px;
  }

  .vc-wine__bottle {
    height: 344px;
  }
}

@media (max-width: 768px) {
  .vc.vc-event-page {
    overflow-x: visible;
  }

  .vc-eh {
    overflow: visible;
  }

  .vc-eh__logo {
    max-width: 88px;
    top: -24px;
    width: 88px;
  }

  .vc-eh__logo-label {
    font-size: 14px;
  }

  .vc-eh__banner {
    left: 50%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
    max-width: 100vw;
    background-size: 100% 100%;
    min-height: 0;
    padding: 96px 20px 28px;
    position: relative;
    transform: translateX(-50%);
    width: 100vw;
  }

  .vc-eh__inner {
    gap: 24px;
    max-width: 100%;
    width: 100%;
  }

  .vc-eh__titles {
    max-width: 100%;
    width: 100%;
  }

  .vc-eh__title {
    font-size: clamp(22px, 6.4vw, 30px);
    letter-spacing: 0.02em;
    line-height: 1.12;
  }

  .vc-eh__subtitle {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .vc-eh__date-row {
    gap: 10px;
  }

  .vc-eh__date,
  .vc-eh__time {
    font-size: 16px;
    white-space: normal;
  }

  .vc-eh__place {
    font-size: 14px;
  }

  .vc-eh__ticket {
    max-width: 100%;
    width: 100%;
  }

  .vc-info-card {
    padding: 24px 20px;
  }

  .vc-info-card__title {
    font-size: 24px;
    white-space: normal;
  }

  .vc-info-card__body--partner,
  .vc-info-card__row--desc {
    align-items: flex-start;
  }

  .vc-venue__photo--wide {
    height: 200px;
  }

  .vc-venue__photos-bottom {
    min-height: 0;
  }

  .vc-venue__photo--tall {
    min-height: 220px;
  }

  .vc-wine__name {
    font-size: 24px;
  }

  .vc-wine__desc,
  .vc-wine__food p {
    font-size: 14px;
  }

  .vc-host {
    grid-template-columns: 1fr 1fr;
  }

  .vc-promo__title {
    font-size: 36px;
  }
}

/* ========== Прошедшее мероприятие (раздел IB 28) ========== */
.vc-past-page {
  padding-top: 0;
}

.vc-ph {
  margin: 0 0 60px;
  position: relative;
}

.vc-ph__logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 50%;
  max-width: 140px;
  padding-top: 4px;
  position: absolute;
  top: -35px;
  transform: translateX(-50%);
  width: 140px;
  z-index: 2;
}

.vc-ph__logo-mark {
  display: block;
  height: auto;
  width: 100%;
}

.vc-ph__banner {
  align-items: start;
  background-color: #ffffff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: var(--vc-radius);
  color: var(--vc-white);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  margin: 36px auto 0;
  max-width: var(--vc-max-banner);
  overflow: visible;
  padding: 120px 80px 100px;
  position: relative;
  width: 100%;
  min-height: 480px;
}

.vc-ph__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vc-ph__title {
  font-family: var(--vc-display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.vc-ph__subtitle {
  font-size: 20px;
  line-height: 1.2;
  margin: 8px 0 0;
}

.vc-ph__date-row {
  align-items: center;
  display: flex;
  gap: 16px;
  width: 100%;
}

.vc-ph__line {
  background: rgba(255, 255, 255, 0.45);
  flex: 1;
  height: 1px;
}

.vc-ph__date {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.vc-ph__place {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 18px;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
}

.vc-ph__place img {
  flex-shrink: 0;
  height: 28px;
  width: 28px;
}

.vc-ph__text {
  font-size: 16px;
  line-height: 1.25;
  margin: 0;
  padding-top: 48px;
}

.vc-report__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vc-report__item {
  display: block;
  overflow: hidden;
  position: relative;
}

.vc-report__item img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.vc-report__item:hover img {
  transform: scale(1.03);
}

.vc-report__item--wide {
  aspect-ratio: 2 / 1;
  border-radius: 20px;
  grid-column: span 2;
}

.vc-report__item--square {
  aspect-ratio: 1;
  border-radius: 12px;
  grid-column: span 1;
}

.vc-report__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.vc-report.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .vc-ph__banner {
    grid-template-columns: 1fr;
  }

  .vc-ph__text {
    padding-top: 0;
  }

  .vc-ph__title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .vc.vc-past-page {
    overflow-x: visible;
  }

  .vc-ph {
    overflow: visible;
  }

  .vc-ph__logo {
    max-width: 88px;
    top: -24px;
    width: 88px;
  }

  .vc-ph__banner {
    background-size: 100% 100%;
    left: 50%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
    max-width: 100vw;
    min-height: 0;
    padding: 96px 20px 28px;
    position: relative;
    transform: translateX(-50%);
    width: 100vw;
  }
}

@media (max-width: 640px) {
  .vc {
    --vc-pad-x: 16px;
    padding-bottom: 48px;
  }

  .vc-facts__grid,
  .vc-past__grid {
    grid-template-columns: 1fr;
  }

  .vc-filters {
    flex-wrap: nowrap;
    margin: 0 -16px 24px;
    overflow-x: auto;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
  }

  .vc-filter {
    flex: 0 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .vc-banner__download span {
    font-size: 13px;
    text-align: left;
  }

  .vc-ph__banner {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .vc-ph__title {
    font-size: 36px;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .vc-ph__subtitle,
  .vc-ph__text {
    text-align: center;
  }

  .vc-ph__date {
    font-size: 18px;
  }

  .vc-ph__place {
    font-size: 15px;
  }

  .vc-report__grid {
    grid-template-columns: 1fr 1fr;
  }

  .vc-report__item--wide {
    aspect-ratio: 2 / 1;
    grid-column: 1 / -1;
  }

  .vc-report__item--square {
    aspect-ratio: 1;
  }

  .vc-title__text {
    white-space: normal;
  }
}



