/* Unique banner container */
.union-membership-promo-2024 {
  --union-membership-blue: #dbf2fd;f
  --union-membership-blue-dark: #012a54;
  --union-membership-gold: #fcb814;
  --union-membership-orange: #e7532e;
  --union-membership-white: #ffffff;
  --union-membership-text-dark: #333333;

  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;

  box-sizing: border-box;
}

/* Main container */
.union-membership-promo-container {
  position: relative;
  background:var(--union-membership-blue);
    overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Content layout */
.union-membership-promo-content {
  display: flex;
  align-items: center;
  padding: 7px 0;
  position: relative;
  z-index: 0;
}

/* remove o-btn margin top */
.union-membership-promo-content .o-btn{
  margin-top: 0;
}

/* Badge styling */
.union-membership-promo-badge {
  background-color: var(--union-membership-gold);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 25px;
}

.union-membership-promo-icon {
  width: 32px;
  height: 32px;
  color: var(--union-membership-blue);
}

/* Text styling */
.union-membership-promo-text {
  flex-grow: 1;
  color: var(--union-membership-white);
}

.union-membership-promo-heading {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.union-membership-promo-subtext {
  font-size: 16px;
  margin: 0;
  opacity: 0.95;
  font-family: Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #000000 !important;
}

/* Button styling */
.union-membership-promo-cta {
  display: flex;
  gap: 15px;
  margin-left: 25px;
}

.union-membership-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.join-now-text {
  color: black !important;
}
.union-membership-promo-btn-primary {
  background-color: var(--union-membership-gold);
  color: var(--union-membership-text-dark);
}

.union-membership-promo-btn-primary:hover {
  background-color: var(--union-membership-orange);
  color: var(--union-membership-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.union-membership-promo-btn-icon {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.union-membership-promo-btn-primary:hover .union-membership-promo-btn-icon {
  transform: translateX(4px);
}

/* New highlight element */
.union-membership-promo-highlight {
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: radial-gradient(
    circle at 75% 25%,
    rgba(252,184,20,0.15) 0%,
    transparent 50%
  );
  z-index: 0;
  pointer-events: none;
  animation: union-membership-promo-pulse 12s infinite alternate;
}

@keyframes union-membership-promo-pulse {
  0% { opacity: 0.3; transform: scale(0.95); }
  100% { opacity: 0.5; transform: scale(1.05); }
}

/* Responsive adjustments */
@media (max-width: 950px) {
  .union-membership-promo-content {
    flex-wrap: wrap;
  }

  .union-membership-promo-text {
    margin: 20px 0;
    min-width: 100%;
  }

  .union-membership-promo-cta {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .union-membership-promo-content {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .union-membership-promo-badge {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .union-membership-promo-text {
    text-align: center;
  }

  .union-membership-promo-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .union-membership-promo-btn {
    width: 100%;
    padding: 14px;
  }

  .union-membership-promo-heading {
    font-size: 20px;
  }

  .union-membership-promo-subtext {
    font-size: 15px;

  }
}
