.first-bell-home-banner {
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(calc(100% - 32px), 1200px);
  min-height: 360px;
  margin: 24px auto 32px;
  border-radius: 24px;
  background: #fff7f4;
  color: inherit;
  box-shadow: 0 12px 32px rgba(100, 66, 54, 0.08);
  text-decoration: none;
  transition: box-shadow 0.2s ease;
}

.first-bell-home-banner:hover {
  box-shadow: 0 16px 38px rgba(100, 66, 54, 0.14);
}

.first-bell-home-banner::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, #fff7f4 0%, rgba(255, 247, 244, 0.98) 29%, rgba(255, 247, 244, 0.62) 52%, rgba(255, 247, 244, 0.04) 78%),
    linear-gradient(0deg, #fff7f4 0%, rgba(255, 247, 244, 0.04) 38%);
}

.first-bell-home-banner__media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
}

.first-bell-home-banner__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 48%;
}

.first-bell-home-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 68%;
  min-height: 300px;
  padding: 30px 20px 32px;
  box-sizing: border-box;
}

.first-bell-home-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #d9f3e7;
  color: #2f6251;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.first-bell-home-banner__title {
  max-width: 300px;
  margin: 0;
  color: #392b28;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.first-bell-home-banner__offer {
  margin: 18px 0 0;
  color: #ff5f5a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.first-bell-home-banner__gift {
  margin: 6px 0 0;
  color: #8d8581;
  font-size: 14px;
  line-height: 1.35;
}

.first-bell-home-banner:focus-visible {
  outline: 3px solid #1769aa;
  outline-offset: -3px;
}

@media (min-width: 700px) {
  .first-bell-home-banner {
    min-height: 320px;
    box-sizing: border-box;
    margin-top: 32px;
  }

  .first-bell-home-banner__media {
    width: 54%;
  }

  .first-bell-home-banner__content {
    width: 56%;
    min-height: 270px;
    padding: 42px 48px 32px;
  }

  .first-bell-home-banner__title {
    font-size: clamp(36px, 5vw, 48px);
  }

}

@media (min-width: 1100px) {
  .first-bell-home-banner__content {
    padding-left: 64px;
  }
}
