/* === STUB MODAL (variant A) === */
.stub-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: newsModalFadeIn 0.3s ease;
}

.stub-modal-overlay.active {
  display: flex;
}

.stub-modal {
  background: linear-gradient(135deg, #1a1c22 0%, #0f1115 100%);
  border: 1px solid rgba(152, 158, 161, 0.18);
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: newsModalSlideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.stub-modal-header {
  background: linear-gradient(135deg, #1a1c22 0%, #0f1115 100%);
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(152, 158, 161, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-shrink: 0;
}

.stub-modal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d6940d;
  line-height: 1.35;
  margin: 0;
}

.stub-modal-close {
  background: transparent;
  border: none;
  color: #c1c9d2;
  font-size: 2rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  line-height: 1;
}

.stub-modal-close:hover {
  color: #d6940d;
  transform: rotate(90deg);
}

.stub-modal-body {
  padding: 1.75rem;
  overflow-y: auto;
  flex: 1;
}

.stub-modal-text {
  margin: 0;
  color: #c1c9d2;
  line-height: 1.8;
  font-size: 1rem;
}

.stub-modal-text strong {
  color: #d6940d;
  font-weight: 700;
}

@media (max-width: 768px) {
  .stub-modal {
    max-width: 95vw;
    max-height: 90vh;
  }

  .stub-modal-header {
    padding: 1.25rem;
  }

  .stub-modal-title {
    font-size: 1.25rem;
  }

  .stub-modal-body {
    padding: 1.25rem;
  }

  .stub-modal-text {
    font-size: 0.95rem;
  }
}

