section {
  position: relative;
  width: 100%;
}

#examples-promo-header {
  font-size: clamp(22px, 4vw, 30px);
  text-decoration: none;
  position: relative;
  display: inline-block;
  font-family: 'MontserratBold', sans-serif;
}

#examples-promo-header::after {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  width: 100%;
  bottom: -6px;
  height: 1.5px;
  background: #f6af43;
  transition: .35s;
}

.examples-promo-text {
  text-align: justify;
}

.social-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.social-network-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,
              rgba(0, 0, 0, 0.8) 0%,
              rgba(0, 0, 0, 0.3) 60%,
              rgba(0, 0, 0, 0) 100%);
  padding: 30px 20px 20px;
  color: white;
  z-index: 2;
}

.product-title {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 0;
  text-align: center;
  letter-spacing: 1px;
  max-width: 100%;
}

.product-card {
  aspect-ratio: 13 / 16;
  position: relative;
  background: white;
  overflow: hidden;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.card-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: white;
  clip-path: polygon(0 100%, 0 50%, 100% 0, 100% 100%);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  z-index: 2;
}

.product-name {
  font-size: clamp(13px, 2vw, 20px);
  color: #3a4247;
  letter-spacing: 1px;
  display: block;
  text-align: right;
  max-width: 70%;
  line-height: 1.1;
  margin-left: 5px;
}