.trusted-ad-widget {
  width: 100%;
  max-width: 100%;
  height: 300px;
  background: transparent;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column; /* Allows stacking of title and images */
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 25px 20px 20px 20px;
}

.trusted-ad-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #000000 0%, #D4AF37 100%);
}

/* New Header Styles */
.trusted-header {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  z-index: 2;
}

.trusted-title {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  display: inline-block;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 5px;
}

.trusted-ad-container {
  position: relative;
  width: 100%;
  flex-grow: 1; /* Takes up the remaining height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.trusted-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.trusted-slide.active {
  opacity: 1;
  visibility: visible;
}

.trusted-slide img {
  max-width: 90%;
  max-height: 180px; /* Slightly reduced to make room for the title */
  object-fit: contain;
}