/* =============================================
   OFFER – RELATED (Vertical Single Column)
============================================= */
.offer-related__inner {
  max-width: 300px; /* wąska kolumna */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* -------------------------
   SIDEBAR (LIST)
------------------------- */

.offer-related__sidebar {
  background: var(--color-blue-grey-900);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.offer-related__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-light-blue);
  margin-bottom: 1.6rem;
}

.offer-related__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-related__btn {
  display: block;
  padding: 0.8rem 1.2rem;
  background: #1c2a2e;
  color: var(--blue-grey-50);
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background 0.2s ease,
    transform 0.25s ease;
}

.offer-related__btn:hover {
  background: var(--color-dark-blue);
  transform: translateX(4px);
}

/* -------------------------
   CTA (with visible image)
------------------------- */

.offer-related__cta {
  background-color: var(--blue-grey-50);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.offer-related__cta-logo img {
  margin: auto;
  width: 100%;
  min-width: 150px;
  height: auto;
  max-width: 300px; /* większe, bardziej widoczne */
  margin-bottom: 1.6rem;
  display: block;
}

/* CTA Text */
.offer-related__cta-text {
  color: var(--blue-grey-900);
  margin-bottom: 1.8rem;
  font-size: 1rem;
  line-height: 1.6;
}
