.sidebar_dynamic {
	min-height: 860px;
}
.medal-bronze {
	color: #CE8946;
}

.medal-silver {
	color: #C0C0C0;
}

.medal-gold {
	color: #FFD700;
}

.text-truncate-wrap {
	overflow-wrap: anywhere;
}

.text-truncate-word {
  word-wrap: break-word;
}

.star-rating {
  direction: rtl;
  display: inline-flex;
  font-size: 2rem;
  cursor: pointer;
}

.star-rating input {
  display: none;
}

.star-rating label {
  color: #ccc;
  transition: color 0.2s;
  padding: 0 3px;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #FFD700;
}

.star-rating.disabled label {
  cursor: not-allowed;
  opacity: 0.4;
}

/* overlay styles */
#imgOverlay {
  display: none;
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: rgba(0,0,0,0.95);
  z-index: 2147483646; /* very high */
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

#imgOverlay .overlay-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#imgOverlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

#imgOverlay .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 2;
}

/* cascade country/province select */
#stateID:disabled {
    opacity: 0.6;           /* makes it look greyed-out */
    background-color: #f8f9fa; /* light gray background */
    color: #6c757d;         /* gray text */
    cursor: not-allowed;    /* visual cue that it’s disabled */
}

blockquote[id^="msg"], blockquote[id^="comment"] {
  cursor: pointer;
}

/* banner full edge-to-edge section */
section.full-image-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
}

section.full-image-section a {
  display: block;           /* make the entire image clickable */
  width: 100%;
}

section.full-image-section img {
  width: 100%;
  height: auto;             /* keep aspect ratio */
  display: block;
}