#imgOverlay[hidden] {
  display: none;
}

#imgOverlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

#imgOverlay .img-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.90);
}

#imgOverlay .img-overlay__dialog {
  position: absolute;
  /* instead of relative */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  /* remove the 5vh auto behavior */
  width: min(2000px, 90vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  /* gives room for the close button */
  box-sizing: border-box;
}

/* Keep the image constrained and centered */
#imgOverlay .img-overlay__img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
}

#imgOverlay .img-overlay__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 24px;
  line-height: 38px;
  text-align: center;
}

.buttons.campaign .btn:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.grid-ip-1-right .buttons.campaign .btn {
  background-color: #a91f24;
  color: #fff;
  border: 2px solid #a91f24;
  /*padding: 20px 30px 20px 30px;
  margin: 5px;*/
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /*width: 50%;*/
  letter-spacing: .1em;
}







#memberchallenge li p {
  margin-bottom: 0.5rem;
}

#memberchallenge ul {
  margin-bottom: 2rem;
}



/* Static sections (replaces collapsible behavior) */
.section-wrapper {
  width: 100%;
  margin: auto;
}

.section-block {
  border-bottom: 1px solid #ccc;
  margin-top: 2rem;
  padding: 32px 0 20px;
  clear: both;
  display: flow-root;
}

.section-header {
  display: block;
  padding: 20px 20px 20px 0;
  background-color: white;
  width: 100%;
}

.section-header .header-title {
  margin: 0;
}


.section-divider {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.section-body {
  display: block;
  overflow: visible;
  margin-top: 6px;
}

/* Keep any formerly-collapsible content always visible */
.section-body[hidden] {
  display: block !important;
}

/* Make main section headers more prominent (no font changes, just scale/layout) */
.section-header {
  padding: 0 0 10px;
  margin-bottom: 8px;
}

.section-header .section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-size: 3rem;
  line-height: 1.1;
}

.section-header .section-title:after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #ccc;
  opacity: 0.9;
  transform: translateY(0.15em);
}


/* override smaller header-title sizing */
.section-header .description {
  margin-top: 6px;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.naming-jump {
  margin-top: 16px;
  margin-bottom: 4px;
}

.naming-jump .btn {
  display: inline-block;
}

/* Restore original bullet marker for custom list styling */
.grid-ip-1-right ol li::before,
.grid-ip-1-right ul li::before {
  content: "•";
}


.buttons.campaign {
  margin: 2rem 0rem 2rem 0rem;
}














.exp-photo-panels {
  width: 100%;
  float: left;           /* keeps compatibility with surrounding float layout */
  margin-bottom: 40px;
}

.exp-photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 11px;        /* vertical / horizontal spacing similar to your existing margins */
}

.exp-photo-card {
  margin: 0;
  flex: 1 1 calc(50% - 11px);  /* two-up */
  max-width: calc(50% - 11px);
}

@media (max-width: 740px) {
  .exp-photo-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.exp-photo-link {
  display: block;
  cursor: pointer;
  overflow: hidden;
}

.exp-photo-img {
  display: block;
  width: 100%;
  height: 205px;         /* match your current look */
  object-fit: cover;
}

.exp-photo-title {
  margin: 6px 0 0 0;
  font-size: 18px;
  line-height: 19px;
  letter-spacing: -0.025em;
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
  font-family: ag-book, sans-serif;
  font-style: normal;
  color: var(--raw-red, #ee3b33);
  overflow-wrap: break-word;
  word-break: break-word;
}




/* Naming tiles toggle */
#naming-tiles[hidden] { display: none !important; }
#naming-tiles { margin-top: 20px; }




/* Naming Opportunities tiles: 2-up grid with equal-height cards */
#naming-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

#naming-tiles .tile {
  /* Two per row */
  flex: 1 1 calc(50% - 18px);
  max-width: calc(50% - 18px);

  /* Equal-height cards */
  display: flex;
  flex-direction: column;

  /* Card look (lightweight, doesn’t change fonts) */
  border: 1px solid #ddd;
  padding: 18px;
  box-sizing: border-box;
}

#naming-tiles .tile h2 { margin-top: 0; }
#naming-tiles .tile p { margin-bottom: 0; }

/* Keep the price (“$…”) aligned consistently */
#naming-tiles .tile h3 {
  margin-top: 8px;
  margin-bottom: 6px;
}

/* Mobile: stack */
@media (max-width: 740px) {
  #naming-tiles .tile {
    flex-basis: 100%;
    max-width: 100%;
  }
}