/* ══ CLOSURE NOTICE 2026 — MODAL CSS ══ */

#closurenotice2026-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

#closurenotice2026-modal.closurenotice2026-open {
  display: flex;
}

/* ── Dialog box ── */
.closurenotice2026-dialog {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ── Close button ── */
#closurenotice2026-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  z-index: 10;
  transition: background 0.2s;
}

#closurenotice2026-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Header ── */
.closurenotice2026-head {
  background: #7a1c1c;
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 12px 12px 0 0;
}

.closurenotice2026-head h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.closurenotice2026-head p {
  margin: 0;
  font-size: 13px;
  color: #fca5a5;
  line-height: 1.5;
}

/* ── Badge ── */
.closurenotice2026-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 500;
  color: #fecaca;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.closurenotice2026-badge .fa-circle {
  font-size: 7px;
  color: #f87171;
  animation: closurenotice2026blink 1.2s infinite;
}

@keyframes closurenotice2026blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── Body ── */
.closurenotice2026-body {
  padding: 1.5rem;
}

/* ── Alert box ── */
.closurenotice2026-alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 1rem 1.1rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.closurenotice2026-alert .fa-exclamation-triangle {
  color: #dc2626;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.closurenotice2026-alert strong {
  display: block;
  color: #991b1b;
  font-size: 15px;
  margin-bottom: 4px;
}

.closurenotice2026-alert p {
  margin: 0;
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.55;
}

/* ── Details grid ── */
.closurenotice2026-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.closurenotice2026-detail-item {
  background: #f9fafb;
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.closurenotice2026-detail-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.closurenotice2026-detail-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.closurenotice2026-status-closed {
  color: #dc2626;
}

/* ── Notes ── */
.closurenotice2026-notes {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.closurenotice2026-notes p {
  margin: 0;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
}

/* ── Footer ── */
.closurenotice2026-footer {
  padding: 1rem 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
  gap: 10px;
}

.closurenotice2026-footer-note {
  font-size: 12px;
  color: #9ca3af;
}

/* ── CTA Button ── */
.closurenotice2026-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #7a1c1c;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.closurenotice2026-cta-btn:hover {
  background: #991b1b;
  transform: translateY(-2px);
}

.closurenotice2026-cta-btn:active {
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .closurenotice2026-details {
    grid-template-columns: 1fr;
  }

  .closurenotice2026-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .closurenotice2026-cta-btn {
    width: 100%;
    justify-content: center;
  }
}