.btn-linkFS,  .btn-linkFSColour{
  font-weight: 500;
  color: #666666 !important;
  text-decoration: underline;
}
.btn-linkFS:hover, .btn-linkFSColour:hover {
  color: #333333 !important;
  transform: none !important;
  box-shadow: none !important;
}
.btn-linkFSColour:hover {
  border-color: #8c8c8c !important;
}
.btn-linkFS:disabled, .btn-linkFS.disabled, .btn-linkFSColour:disabled, .btn-linkFSColour.disabled {
  color: #a6a6a6;
}
.btn-check:focus + .btn-linkFS, .btn-linkFS:focus, .btn-check:focus + .btn-linkFSColour, .btn-linkFSColour:focus {
  color: #000 !important;
}
.btn-check:checked + .btn-linkFS, .btn-check:active + .btn-linkFS, .btn-linkFS:active, .btn-linkFS.active, .show > .btn-linkFS.dropdown-toggle, 
.btn-check:checked + .btn-linkFSColour, .btn-check:active + .btn-linkFSColour, .btn-linkFSColour:active, .btn-linkFSColour.active, .show > .btn-linkFSColour.dropdown-toggle {
  color: #000 !important;
}

.btn-check:focus + .btn-linkFSColour, .btn-linkFSColour:focus {
  border-color: #8c8c8c !important;
}
.btn-check:checked + .btn-linkFSColour, .btn-check:active + .btn-linkFSColour, .btn-linkFSColour:active, .btn-linkFSColour.active, .show > .btn-linkFSColour.dropdown-toggle {
  border-color: #ef7c00 !important;
}

.btn-linkFSColour{
  padding: 0px;
  margin: 0.2rem !important;
}

.imageRadioMaxWidth {
  max-width: 35px;
}

.fsList {
  padding-left: 1rem;
}

.btn-linkFS {
  font-size: 0.75rem;
}

@media (min-width: 992px) {
  .btn-linkFS {
    font-size: 0.9rem;
  }
}

.lg-backdrop {
  background-color: #fff;
}
.lg-outer .lg-thumb-outer {
  background-color: #fff;
}
.lg-outer .lg-thumb-item {
  border: 2px solid #b3b3b3;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #ef7c00;
}

.inlineLightGallery {
  padding-bottom: 140%;
}
@media only screen and (min-width: 992px) {
  .inlineLightGallery {
    padding-bottom: 80%;
  }
}

/* 1. Set the initial state of the paragraph */
.custom-hover-card .hover-content {
  opacity: 0;
  transition: all 0.4s ease;
}

/* 2. Set the initial state of the image */
.custom-hover-card .img-fluid {
  transition: all 0.4s ease;
}

@media (min-width: 992px) {
  /* 3. The Hover Effects */
  .custom-hover-card:hover .img-fluid {
    filter: blur(4px) brightness(50%); /* Blurs and Darkens */
    transform: scale(1.05); /* Optional: slight zoom for extra "pop" */
  }

  .custom-hover-card:hover .hover-content {
    opacity: 1;
  }
}

.cards-container {
  position: relative; /* Overlay is scoped to this */
}

.cards-container .card-title {
  color: #fff !important;
}

/* --- Overlay --- */
.cards-overlay {
  position: absolute;
  inset: 0; /* top/right/bottom/left: 0 */
  background: rgba(30,30,30,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.cards-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.overlay-content {
  width: 90%;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.overlay-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.overlay-body {
  color: #fff;
  line-height: 1.6;
}

.overlay-close {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: #f2f2f2;
}

.overlay-close:hover {
  color: #d9d9d9;
}