/* Restored QSL styles */
.qsl-thumb {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.qsl-thumb:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.qsl-thumb--placeholder {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.qsl-caption {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-self: stretch;
  padding: 0.8rem 0.9rem;
  border-left: 3px solid #3974bb;
  border-radius: 10px;
  background: rgba(30, 80, 146, 0.379);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.qsl-slogan {
  display: inline-block;
  color: #fff2c8;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
}

.qsl-slogan::before,
.qsl-slogan::after {
  color: #3974bb;
  font-weight: 900;
}

.qsl-slogan::before {
  content: '\201C';
  margin-right: 0.15rem;
}

.qsl-slogan::after {
  content: '\201D';
  margin-left: 0.15rem;
}

.qsl-meta {
  color: rgba(239, 231, 216, 0.82);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qsl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.qsl-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.qsl-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 8, 0.84);
}

.qsl-lightbox-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 1200px);
  max-height: 90vh;
  padding: 24px;
  border-radius: 18px;
  background: rgba(20, 24, 31, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  transform: scale(0.94);
  transition: transform 0.25s ease;
}

.qsl-lightbox.is-open .qsl-lightbox-content {
  transform: scale(1);
}

.qsl-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  margin: 0 auto;
  border-radius: 12px;
  object-fit: contain;
}

.qsl-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.qsl-card--feature {
  padding: 20px;
  border-radius: 12px;
  background: rgba(18, 24, 32, 0.9);
  border: 1px solid rgba(255,255,255,0.06);
}

.qsl-card--feature .qsl-title {
  margin: 0 0 12px;
  font-size: 1.6rem;
  text-align: center;
}

.feature-thumb {
  width: 100%;
  max-height: 72vh;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}
