/* === HERO БЛОК === */

.hero_section {
  align-items: stretch;
  display: flex;
  gap: 16px;
  margin-bottom: 15px;
}

@media (max-width: 900px) {
  .hero_section {
    flex-direction: column;
    gap: 12px;
    height: auto;
  }
}

/* Слайдер (30%) */
.hero_slider {
  align-items: stretch;
  background: linear-gradient(108deg, #5d0422 2.83%, #1c0d13 90.63%);
  border-radius: 18px;
  display: flex;
  flex: 1 1 30%;
  overflow: hidden;
  position: relative;
  min-height: 324px;
  min-width: 0;
}

@media (max-width: 900px) {
  .hero_slider {
    flex: 1 1 auto;
    min-height: 199px;
  }
}

@media (max-width: 900px) {
  .hero_slider {
    border-radius: 18px;
    height: 199px;
  }
}

.hero_slider:before {
  background: url(/assets/img/slider-bg.png) no-repeat;
  background-size: auto 100%;
  bottom: 0;
  content: "";
  height: 324px;
  position: absolute;
  right: 0;
  width: 588px;
}

.hero_slider_sticker {
  position: absolute;
  top: 16px;
  right: 0;
  bottom: 0;
  transform: rotate(0deg);
  z-index: 3;
  width: auto;
  height: calc(100% - 16px);
  object-fit: contain;
  object-position: right bottom;
}

@media (max-width: 1800px) {
  .hero_slider:before {
    height: 300px;
    width: 545px;
  }
}

@media (max-width: 1300px) {
  .hero_slider:before {
    height: 276px;
    width: 500px;
  }
}

@media (max-width: 900px) {
  .hero_slider:before {
    height: 199px;
    width: 361px;
  }
}

.hero_slider_content {
  display: grid;
  gap: 10px;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  justify-items: left;
  left: 0;
  max-width: 284px;
  padding: 28px 0 28px 32px;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 2;
}

@media (max-width: 1800px) {
  .hero_slider_content {
    padding: 24px 0 24px 24px;
  }
}

@media (max-width: 1300px) {
  .hero_slider_content {
    max-width: 300px;
  }
}

@media (max-width: 900px) {
  .hero_slider_content {
    gap: 4px;
    padding: 16px;
  }
}

.hero_title {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 32px;
}

.hero_title_vibeee {
  color: #ff0054;
}

@media (max-width: 1800px) {
  .hero_title {
    font-size: 24px;
    line-height: 28px;
  }
}

@media (max-width: 1300px) {
  .hero_title {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 900px) {
  .hero_title {
    font-size: 18px;
    line-height: 22px;
  }
}

.hero_text {
  color: hsla(24, 61%, 89%, 0.8);
  font-size: 14px;
  line-height: 20px;
}

.hero_twitch_link {
  color: #ffffff;
  text-decoration: underline;
  opacity: 1;
  font-weight: 600;
  transition: all 0.2s ease;
}

.hero_twitch_link:hover {
  opacity: 0.8;
}

@media (max-width: 1800px) {
  .hero_text {
    font-size: 13px;
    line-height: 18px;
  }
}

@media (max-width: 1300px) {
  .hero_text {
    font-size: 12px;
    line-height: 16px;
  }
}

/* Правая часть - плашки (70%) */
.hero_right {
  display: grid;
  flex: 1 1 70%;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-width: 0;
}

@media (max-width: 1200px) {
  .hero_right {
    flex: 1 1 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero_right {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 599px) {
  .hero_right {
    grid-template-columns: 1fr;
  }
}

/* Плашки */
.hero_widget {
  align-items: stretch;
  background: linear-gradient(180deg, #ffffff0f 11.59%, #000000 101.93%);
  border-radius: 18px;
  color: #fff;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  height: 100%;
  min-height: 324px;
  min-width: 0;
  overflow: hidden;
  padding: 32px;
  position: relative;
  text-decoration: none;
  transition: none;
}

@media (max-width: 1800px) {
  .hero_widget {
    padding: 30px;
  }
}

@media (max-width: 1200px) {
  .hero_widget {
    border-radius: 18px;
    order: 1;
  }
}

@media (max-width: 900px) {
  .hero_widget {
    padding: 25px;
    min-height: 199px;
  }
}

@media (max-width: 599px) {
  .hero_widget {
    padding: 20px;
    min-height: 199px;
  }
}

.hero_widget:before {
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 350px;
  bottom: 0;
  content: "";
  height: 348px;
  position: absolute;
  right: 0;
  transform-origin: right bottom;
  transition: transform 0.5s;
  width: 100%;
}

@media (max-width: 1200px) {
  .hero_widget:before {
    background-size: 300px;
  }
}

@media (max-width: 599px) {
  .hero_widget:before {
    background-size: 160px;
    height: 100%;
    width: 100%;
  }
}

.hero_widget:hover {
  color: #fff;
}

.hero_widget:hover:before {
  transform: scale(1.05);
}

.hero_widget_content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.hero_widget_main {
  flex-grow: 1;
}

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

.hero_widget_title {
  flex-grow: 1;
  font-size: 20px;
  font-weight: 900;
  padding: 0 10px 0 0;
}

@media (max-width: 1800px) {
  .hero_widget_title {
    font-size: 19px;
  }
}

@media (max-width: 900px) {
  .hero_widget_title {
    font-size: 17px;
  }
}

@media (max-width: 599px) {
  .hero_widget_title {
    font-size: 15px;
  }
}

.hero_widget_description {
  color: #bebfc5;
  font-size: 14px;
  line-height: 20px;
  margin-top: 6px;
  max-width: 240px;
}

@media (max-width: 1800px) {
  .hero_widget_description {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 900px) {
  .hero_widget_description {
    font-size: 11px;
    line-height: 16px;
  }
}

.hero_widget_price {
  color: #ffc23d;
  font-size: 18px;
  font-weight: 700;
  /* margin-top: 10px; */
}

.hero_widget_price img {
  display: inline-block;
  vertical-align: middle;
}

.hero_widget_timer {
  align-items: center;
  backdrop-filter: blur(3px);
  background: rgba(13, 13, 18, 0.92);
  border-radius: 18px;
  box-shadow: 0 17px 25px 0 rgba(0, 0, 0, 0.34);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 4px;
  margin-top: 10px;
  padding: 12px 16px 12px 33px;
  position: relative;
  width: fit-content;
}

/* Текст перед таймером ежедневного кейса */
.hero_daily_case_cooldown_text {
  color: #bebfc5;
  font-size: 14px;
  line-height: 20px;
  margin-top: 12px;
  max-width: 240px;
}

@media (max-width: 1800px) {
  .hero_daily_case_cooldown_text {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 900px) {
  .hero_daily_case_cooldown_text {
    font-size: 11px;
    line-height: 16px;
  }
}

/* Таймер ежедневного кейса */
.hero_daily_case_timer {
  align-items: center;
  display: flex;
  gap: 4px;
  margin-top: 12px;
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
  flex-wrap: wrap;
}

.hero_timer_item {
  align-items: center;
  background: rgb(13 13 18 / 60%);
  border-radius: 6px;
  display: flex;
  height: 39px;
  justify-content: center;
  min-width: 34px;
  flex: 0 0 auto;
  padding: 0 6px;
  box-sizing: border-box;
}

.hero_timer_value {
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.hero_timer_separator {
  color: #ffffff94;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Таймер розыгрыша */
.hero_giveaway_timer {
  align-items: center;
  display: flex;
  gap: 4px;
  margin-top: 12px;
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
  flex-wrap: wrap;
}

.hero_widget_timer:before {
  background: url(/assets/img/timer.svg) no-repeat;
  background-size: 100%;
  content: "";
  height: 19px;
  left: 9px;
  margin-top: -9px;
  position: absolute;
  top: 50%;
  width: 18px;
}

@media (max-width: 1800px) {
  .hero_widget_timer {
    border-radius: 8px;
    font-size: 12px;
    padding: 10px 12px 10px 30px;
  }

  .hero_widget_timer:before {
    height: 17px;
    margin-top: -9px;
    width: 16px;
  }
}

.timer_text {
  font-family: 'Courier New', monospace;
  font-weight: 600;
}

.hero_widget_btn {
  align-items: center;
  background: #f3a45d;
  border-radius: 7px;
  color: #413327;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 4px;
  margin-top: 20px;
  opacity: 0;
  padding: 12px 14px;
  position: relative;
  text-transform: uppercase;
  top: 5px;
  transition: opacity 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}

.hero_widget:hover .hero_widget_btn {
  opacity: 1;
  transform: translateY(-5px);
}

.hero_widget--promocode:hover .hero_widget_btn {
  transform: translateY(-50%);
}

/* Кнопка в ежедневном кейсе всегда видна, если кейс доступен */
.hero_widget--daily-case .hero_widget_btn,
.hero_widget--promocode .hero_widget_btn {
  opacity: 1;
  transform: translateY(0);
  align-items: center;
  background: linear-gradient(307deg, #ff0054 3.2%, #ba134d 99.71%);
  border-radius: 14px;
  color: #f3efe7;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 6px;
  height: 46px;
  justify-content: center;
  overflow: hidden;
  padding: 0 18px;
  position: relative;
  text-decoration: none;
  text-shadow: 0 2px 1px rgba(137, 65, 14, .34);
  text-transform: uppercase;
  top: 0;
  margin-top: 20px;
}

.hero_widget--daily-case .hero_widget_btn:before,
.hero_widget--promocode .hero_widget_btn:before {
  background: linear-gradient(307deg, #ff0054 3.2%, #ff0054 99.71%);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity .3s;
  width: 100%;
}

.hero_widget--daily-case .hero_widget_btn:hover:before,
.hero_widget--promocode .hero_widget_btn:hover:before {
  opacity: 1;
}

.hero_widget--daily-case:hover .hero_widget_btn {
  transform: translateY(0);
}

.hero_widget--daily-case .hero_widget_btn:hover,
.hero_widget--promocode .hero_widget_btn:hover {
  background: linear-gradient(307deg, #ff0054 3.2%, #ba134d 99.71%);
  color: #f3efe7;
}

.hero_widget_btn:hover {
  background-color: #f8bc76;
  color: #684933;
}


/* Заблокированная кнопка */
.hero_widget_btn--disabled {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  display: none;
  opacity: 0.6;
  pointer-events: none;
}

.hero_widget_btn--disabled:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: none;
}

.hero_widget_btn svg {
  height: 16px;
  transition: transform 0.3s;
  width: 16px;
}

.hero_widget_btn svg path {
  transition: fill 0.3s;
}

/* Стрелочка в кнопке ежедневного кейса */
.hero_widget--daily-case .hero_widget_btn svg {
  height: 20px;
  width: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero_widget--daily-case .hero_widget_btn svg path {
  fill: #fff;
  transition: fill 0.3s;
}

.hero_widget--daily-case .hero_widget_btn:hover svg {
  transform: translateX(4px);
}

.hero_widget--daily-case .hero_widget_btn span {
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 2;
}

.hero_widget--promocode .hero_widget_btn svg {
  height: 20px;
  width: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero_widget--promocode .hero_widget_btn svg path {
  fill: #fff;
  transition: fill 0.3s;
}

.hero_widget--promocode .hero_widget_btn:hover svg {
  transform: scale(1.1);
}

@media (max-width: 1800px) {
  .hero_widget_btn {
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .hero_widget_btn {
    opacity: 1;
    transform: translateY(-5px);
  }
}

@media (max-width: 900px) {
  .hero_widget--daily-case .hero_widget_btn {
    border-radius: 10px;
    font-size: 13px;
    height: 40px;
    padding: 0 14px;
  }

  .hero_widget--daily-case .hero_widget_btn svg {
    height: 18px;
    width: 18px;
  }
}

@media (max-width: 599px) {
  .hero_widget_btn {
    font-size: 11px;
    padding: 10px 12px;
  }

  .hero_widget--daily-case .hero_widget_btn {
    border-radius: 10px;
    font-size: 13px;
    height: 40px;
    padding: 0 14px;
  }

  .hero_widget--daily-case .hero_widget_btn svg {
    height: 18px;
    width: 18px;
  }
}

/* Промокод */
.hero_widget--promocode:before {
  background-image: url(/assets/img/hero/bonus.png);
}

.hero_widget_description .social-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.hero_widget_description .social-link:hover {
  border-bottom-color: currentColor;
  transform: translateY(-1px);
}

.hero_widget_description .twitch-link {
  color: #ffffff;
}

.hero_widget_description .telegram-link {
  color: #ffffff;
}

.hero_widget_description .youtube-link {
  color: #ffffff;
}

.hero_promocode_form {
  margin-top: 20px;
  width: 100%;
}

.hero_promocode_input_block {
  position: relative;
  width: 100%;
}

.hero_promocode_input_field {
  width: 100%;
  height: 46px;
  background: rgb(0 0 0 / 50%);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  padding: 0 60px 0 16px;
  outline: none;
  transition: all 0.3s;
  box-sizing: border-box;
}

.hero_promocode_input_field::placeholder {
  color: rgb(255 255 255);
}

.hero_promocode_input_field:focus {
  background: rgb(0 0 0 / 90%);
  border-color: rgb(0 0 0 / 40%);
}

.hero_widget--promocode .hero_widget_btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  height: 38px;
  width: 38px;
  min-width: 38px;
  padding: 0;
  margin-top: 0;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
}

.hero_widget--promocode .hero_widget_btn span {
  display: none;
}

.hero_widget--promocode:hover .hero_widget_btn {
  transform: translateY(-50%);
}

.hero_widget--promocode .hero_widget_btn:hover {
  transform: translateY(-50%);
}

.hero_widget--promocode .hero_widget_btn:disabled,
.hero_widget--promocode .hero_widget_btn.disabled {
  opacity: 0.7 !important;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 1800px) {
  .hero_promocode_input_field {
    height: 40px;
    font-size: 13px;
    padding: 0 54px 0 14px;
  }

  .hero_widget--promocode .hero_widget_btn {
    border-radius: 8px;
    height: 32px;
    width: 32px;
    min-width: 32px;
  }
}

@media (max-width: 900px) {
  .hero_promocode_input_field {
    height: 40px;
    font-size: 12px;
    padding: 0 50px 0 14px;
  }

  .hero_widget--promocode .hero_widget_btn {
    border-radius: 8px;
    height: 32px;
    width: 32px;
    min-width: 32px;
  }
}

@media (max-width: 599px) {
  .hero_promocode_input_field {
    height: 40px;
    font-size: 12px;
    padding: 0 48px 0 12px;
  }

  .hero_widget--promocode .hero_widget_btn {
    height: 32px;
    width: 32px;
    min-width: 32px;
  }
}

/* Фоновые изображения для плашек */

/* Стили для плашки топ дроп */
.hero_top_drop_user {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
}

.hero_top_drop_avatar {
  border: 2px solid rgb(89 84 77 / 65%);
  border-radius: 50%;
  flex-shrink: 0;
  height: 60px;
  overflow: hidden;
  width: 60px;
}

.hero_top_drop_avatar img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero_top_drop_user_info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
  justify-content: center;
  align-items: flex-start;
}

.hero_top_drop_username {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
}

.hero_widget--top-drop .hero_widget_price {
  bottom: 1px;
  color: #fff;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  position: absolute;
  text-align: left;
}

.hero_widget--top-drop .hero_widget_price img {
  display: block;
  flex-shrink: 0;
  height: 24px;
  width: 24px;
}

.hero_top_drop_item_name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.3;
  margin-top: 0;
  text-align: left;
}

.hero_top_drop_image {
  bottom: 10px;
  height: auto;
  max-height: 50%;
  max-width: 65%;
  object-fit: contain;
  position: absolute;
  right: 10px;
  transition: transform 0.5s ease;
  width: auto;
  z-index: 2;
}

/* Hover эффект для изображения предмета */
.hero_widget--top-drop:hover .hero_top_drop_image {
  transform: translateY(-5px);
}

.hero_widget--top-drop {
  overflow: hidden;
  position: relative;
}

/* Фоновое изображение topdrop для топ дропа */
.hero_widget--top-drop:before {
  background-image: url(/assets/img/hero/topdrop.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  transition: transform 0.5s ease;
  width: 100%;
  z-index: 1;
}

/* Hover эффект для фонового изображения topdrop */
.hero_widget--top-drop:hover:before {
  transform: scale(1.05);
}

/* Фоновое размытое изображение */
.hero_top_drop_bg_image {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 115%;
  filter: blur(30px);
  height: calc(100% + 60px);
  left: -30px;
  opacity: 1;
  position: absolute;
  right: -30px;
  top: -30px;
  width: calc(100% + 60px);
  z-index: 1;
  margin-top: 48px;
  will-change: transform;
  transform: translateZ(0);
}

.hero_widget--top-drop .hero_widget_content {
  position: relative;
  z-index: 2;
}

.hero_widget--daily-case:before {
  background-image: url(/assets/img/hero/freecase.png);
}

/* Заблокированная кнопка всегда скрыта для ежедневного кейса */
.hero_widget--daily-case .hero_widget_btn--disabled {
  display: none !important;
}

.hero_widget--giveaway:before {
  background-image: url(/assets/img/hero/topdrop.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  transition: transform 0.5s ease;
  width: 100%;
  z-index: 1;
}

/* Стили для блока розыгрыша */
.hero_giveaway_participate_btn {
  align-items: center !important;
  background: linear-gradient(307deg, #ff0054 3.2%, #ba134d 99.71%) !important;
  border-radius: 14px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #f3efe7;
  display: flex !important;
  gap: 12px;
  height: auto;
  min-height: 46px;
  justify-content: space-between !important;
  margin-top: 18px;
  padding: 8px 18px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  box-sizing: border-box;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  flex-wrap: nowrap !important;
}

.hero_giveaway_participate_btn:hover {
  transform: translateY(-2px);
}

.hero_giveaway_participate_btn.is-disabled,
.hero_giveaway_participate_btn.is-disabled:hover {
  opacity: 0.6;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.hero_giveaway_participate_text {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  flex-shrink: 0;
  text-align: left;
}

.hero_giveaway_participants_badge {
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 999px;
  display: inline-flex;
  color: #f3efe7;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  padding: 8px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto !important;
}

.hero_giveaway_participants_icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.hero_giveaway_participants_number {
  display: inline-block;
}

/* Название предмета теперь выводится как hero_widget_description выше кнопки */

.hero_widget--giveaway .hero_widget_price {
  bottom: 1px;
  color: #fff;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  position: absolute;
  text-align: left;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.hero_widget--giveaway .hero_widget_price img {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  height: 24px;
  width: 24px;
}

.hero_giveaway_item_name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.3;
  margin-top: 0;
  text-align: left;
}

.hero_giveaway_image {
  bottom: 0px;
  height: auto;
  max-height: 50%;
  max-width: 65%;
  object-fit: contain;
  position: absolute;
  right: 10px;
  transition: transform 0.5s ease;
  width: auto;
  z-index: 2;
}

/* Hover эффект для изображения предмета */
.hero_widget--giveaway:hover .hero_giveaway_image {
  transform: translateY(-5px);
}

.hero_widget--giveaway {
  overflow: hidden;
  position: relative;
}

/* Hover эффект для фонового изображения */
.hero_widget--giveaway:hover:before {
  transform: scale(1.05);
}

/* Фоновое размытое изображение */
.hero_giveaway_bg_image {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 115%;
  filter: blur(30px);
  height: calc(100% + 60px);
  left: -31px;
  opacity: 1;
  position: absolute;
  right: -30px;
  top: -30px;
  width: calc(100% + 60px);
  z-index: 1;
  margin-top: 48px;
  will-change: transform;
  transform: translateZ(0);
}

.hero_widget--giveaway .hero_widget_content {
  position: relative;
  z-index: 2;
}

.hero_widget--giveaway .hero_widget_main {
  padding-bottom: 36px;
}

