/* merch-soft.css */
.retailer-merch {
  padding: 3.75rem 0;
  margin-bottom: 3.5rem;
}

.retailer-merch-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}

.retailer-merch-content-img {
  position: relative;
  width: 100%;
  max-width: 789px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.retailer-merch-content-img .logo {
  width: 100%;
  max-width: 376px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.retailer-merch-content-img .logo-bg {
  width: 100%;
  border-radius: 50px;
  overflow: auto;
}

.retailer-merch-content-text {
  width: 100%;
  max-width: 789px;
}

.retailer-merch-content-text .section-title {
  margin-bottom: 1rem;
}

/* In order to display correct with wagtail RichTextField */
.list-items-with-2-images-in-the-right-section-title :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 1rem;
}

.retailer-merch-content-text .section-description {
  margin-bottom: 2rem;
}

.retailer-merch-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}

.retailer-merch-list p {
  font-size: clamp(0.875rem, 0.8143rem + 0.2589vw, 1.125rem);
  color: var(--primary-brown);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.retailer-merch-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.retailer-merch-item:last-child {
  margin-bottom: 0;
}

.retailer-merch-item img {
  width: 24px;
  height: 24px;
}

.retailer-merch-item span {
  font-size: clamp(0.875rem, 0.8143rem + 0.2589vw, 1.125rem);
  color: var(--typography-black-2);
  max-width: 550px;
}

@media screen and (max-width: 768px) {
  .retailer-merch {
    padding: 2.375rem 0;
  }

  .retailer-merch-content {
    flex-direction: column;
  }

  .retailer-merch-content-text .section-title {
    margin-bottom: 1.75rem;
  }

  .list-items-with-2-images-in-the-right-section-title :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 1.75rem;
  }

  .retailer-merch-content-img .logo {
    max-width: 230px;
  }
}
