.brand-banner-container.compact {
  margin-bottom: 20px;
  padding-top: 30px;
}

.brand-header-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.brand-meta {
  flex: 1;
  min-width: 200px;
}

.brand-title {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
}

.brand-segment {
  font-size: 1rem;
  color: #666;
  margin: 0 0 10px;
}

.brand-usps {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 10px;
}

.brand-usps li {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 4px;
}

.brand-cta-button {
  display: inline-block;
  margin-top: 10px;
}

.brand-banners {
  margin-top: 10px;
}

.brand-banner-desktop {
  display: block;
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.brand-banner-mobile {
  display: none;
}

@media (max-width: 768px) {
  .brand-header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-banner-desktop {
    display: none;
  }

  .brand-banner-mobile {
    display: block;
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
  }
}

.brand-usps-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.usp-block {
  display: flex;
  align-items: center;
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
  transition: background 0.3s ease;
}

.usp-block:hover {
  background-color: #efefef;
}

.usp-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Przykładowe ikonki – możesz zmienić wg potrzeb */
.usp-block:nth-child(1) .usp-icon {
  background-image: url('/wp-content/uploads/usp-sneakers.svg');
}
.usp-block:nth-child(2) .usp-icon {
  background-image: url('/wp-content/uploads/usp-superstar.svg');
}
.usp-block:nth-child(3) .usp-icon {
  background-image: url('/wp-content/uploads/usp-style.svg');
}

