/* --- Banner --- */
.customBanner {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.customBanner img {
  width: 100%;
  height: auto;
  object-fit: contain; /* Keeps full image visible */
  display: block;
  cursor: pointer;
}

.hero-placeholder {
  width: 100%;
  min-height: clamp(320px, 48vw, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  background:
    radial-gradient(circle at 75% 30%, rgba(228, 53, 130, 0.35), transparent 28%),
    linear-gradient(135deg, #050505 0%, #151515 48%, #263d00 100%);
}

.hero-placeholder h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-eyebrow,
.hero-copy {
  margin: 0;
  color: #E43582;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  margin-top: 20px;
  color: #f2f2f2;
  letter-spacing: 0.02em;
}

#submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Only affects lists with outline-bullets class */
.session-block .row {
    row-gap: 28px;
}

.session-block .session-column {
    margin-bottom: 0;
}

.session-block .event-details-row {
    align-items: flex-start;
    column-gap: 24px;
    display: flex;
    flex-wrap: nowrap;
    margin-top: 28px !important;
}

.session-block .event-details-row .session-column {
    flex: 1 1 0;
    max-width: none;
    width: auto;
}

.session-block .event-details-row .session-column:last-child {
    flex: 1.6 1 0;
}

.session-block .event-details-row .session-column:last-child li {
    white-space: nowrap;
}

.session-block .session-column h4,
.session-block .session-column h6 {
    margin-bottom: 10px !important;
}

.session-block .outline-bullets {
    list-style: none !important;
    padding-left: 1.5rem !important;
    margin: 0;
}

.session-block .outline-bullets > li {
    position: relative;
    padding-left: 1rem !important;
    /* Typography */
    font-size: 0.95rem;      /* adjust as needed */
    font-weight: 500;        /* medium weight */
    line-height: 1.6;
    margin: 0;
}

/* Green outline bullet */
.session-block .outline-bullets > li::before {
    content: "" !important;
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 0.55em;
    height: 0.55em;
    border: 2px solid #E43582; /* Bootstrap success green */
    border-radius: 50%;
    transform: translateY(-50%);
}

.session-block .outline-bullets a:hover,
.session-block .outline-bullets a:focus {
    color: #808080 !important;
}

.customPara {
  padding: 0px !important;
  font-size: large;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .session-block {
    padding-left: 22px;
    padding-right: 22px;
  }

  .session-block .event-details-row {
    display: block;
    margin-top: 20px !important;
  }

  .session-block .event-details-row .session-column {
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
  }

  .session-block .event-details-row .session-column:last-child {
    margin-bottom: 0;
  }

  .session-block .event-details-row .session-column:last-child li {
    white-space: normal;
  }

  .session-block .outline-bullets {
    padding-left: 1.25rem !important;
  }

  .form-group {
    width: 90%;
  }

  .sub-header h2 {
    border-bottom-width: 2px;
  }


  input[type=text], select {
    width: 300px;
  }

  select.black-select {
    font-size: 12px;
    max-width: 300px;
  }
}
