/* =============================================
   Gorvita — B2B Banner
   Scoped: .gorvita-b2b
   ============================================= */

.gorvita-b2b {
  display: flex;
  height: 320px;
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Lewa kolumna — tekst */
.gorvita-b2b__content {
  flex: 0 0 44%;
  background: #F5F0E8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
  gap: 0;
}

.gorvita-b2b__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4A7C5F;
  margin: 0 0 10px 0;
}

.gorvita-b2b__title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--ga-green);
  line-height: 1.15;
  margin: 0 0 6px 0;
}

.gorvita-b2b__subtitle {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 24px 0;
  line-height: 1.4;
}

.gorvita-b2b__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ga-green);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 14px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.gorvita-b2b__cta:hover {
  background: #2d5016;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.gorvita-b2b__note {
  font-size: 0.76rem;
  color: #999;
  margin: 0;
}

/* Prawa kolumna — zdjęcie */
.gorvita-b2b__image {
  flex: 0 0 56%;
  overflow: hidden;
  position: relative;
}

.gorvita-b2b__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 0.4s ease;
}

.gorvita-b2b:hover .gorvita-b2b__image img {
  transform: scale(1.03);
}

/* =============================================
   Responsive — tablet (900px)
   ============================================= */
@media (max-width: 900px) {
  .gorvita-b2b {
    height: 260px;
  }

  .gorvita-b2b__content {
    flex: 0 0 48%;
    padding: 28px 32px;
  }

  .gorvita-b2b__image {
    flex: 0 0 52%;
  }

  .gorvita-b2b__title {
    font-size: 1.3rem;
  }
}

/* =============================================
   Responsive — mobile (640px)
   ============================================= */
@media (max-width: 640px) {
  .gorvita-b2b {
    flex-direction: column;
    height: auto;
    margin: 24px 0;
    border-radius: 16px;
  }

  .gorvita-b2b__content {
    flex: none;
    padding: 28px 24px;
    order: 2;
  }

  .gorvita-b2b__image {
    flex: none;
    height: 220px;
    order: 1;
  }

  .gorvita-b2b__image img {
    position: absolute;
    object-position: center 15%;
  }

  .gorvita-b2b__title {
    font-size: 1.4rem;
  }

  .gorvita-b2b__cta {
    width: 100%;
    justify-content: center;
  }
}
