.offer-card {
  justify-content: center;
  flex-direction: row;
  align-items: center;
  display: flex;
  gap: 10px;
}

.offer-card__body {
  display: flex;
  flex-direction: column;
  font-family: var(--e-global-typography-primary-font-family) !important;
  align-items: flex-start;
  max-width: 420px;
}

.offer-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: 0;
  max-width: 350px;
}

.offer-card__img {
  width: 100%;
  object-fit: contain;
  display: block;
}

.offer-card__title {
  margin: 0;
  padding: 0;
  color: var(--e-global-color-0d41130);
  line-height: 1.6 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}

.offer-card__desc {
  text-shadow: 0 1px 0 rgba(20, 78, 78, 0.55), 0 3px 0 rgba(3, 19, 19, 0.55);
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: var(--e-global-color-text) !important;
}

.offer-card__moreline {
  background-image: var(--offers-btn-left, none), var(--offers-btn-middle, none),
    var(--offers-btn-right, none);
  background-position: left center, center, right 0 center;
  background-size: 35px 100%, calc(100% - (35px * 2 - 2px)) 100%, 35px 100%;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  overflow: hidden;
  padding: 26px 30px;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1;
  color: var(--e-global-color-0d41130) !important;
  text-shadow: 0 2px 0px #34130880;
  cursor: pointer;
  transition: 0.2s;
}
.offer-card__moreline::after {
  position: absolute;
  content: '';
  background-image: var(--offers-btn-loop, none);
  background-position: bottom center;
  background-size: cover;
  filter: blur(6px);
  inset: 7px;
  mix-blend-mode: soft-light;
}
.offer-card__moreline:hover,
.offer-card__moreline:focus-visible {
  background-image: var(--offers-btn-left-hover, none),
    var(--offers-btn-middle-hover, none), var(--offers-btn-right-hover, none);
}

@media (max-width: 1024px) {
  .offer-card__media {
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  .offer-card__media {
    display: none;
  }
}
