/* ===== Navbar ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #3b82f6);
  display: flex; align-items: center; justify-content: center; color: #fff;
  flex-shrink: 0;
}
.nav-logo svg { width: 20px; height: 20px; }
.nav-title {
  font-size: 17px; font-weight: 700; color: var(--text-primary);
  max-width: 320px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ===== Top Menu ===== */
.top-menu-wrapper {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 64px;
  z-index: 90;
}
.top-menu {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 2px;
}
.top-menu::-webkit-scrollbar { display: none; }
.top-menu-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 18px;
  height: 46px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: color 0.18s, border-color 0.18s !important;
  user-select: none;
}
.top-menu-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.top-menu-item:hover { color: var(--accent); }
.top-menu-item.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ===== Mini Profile Chip ===== */
.mini-profile {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 6px;
  border: 1.5px solid var(--border); border-radius: var(--radius-full);
  background: var(--bg-surface); cursor: pointer;
  transition: var(--transition);
  max-width: 220px;
}
.mini-profile:hover { border-color: var(--accent); background: var(--accent-light); }
.mini-profile-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #3b82f6);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.mini-profile-avatar svg { width: 14px; height: 14px; }
.mini-profile-name {
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 110px;
}
.mini-profile-status {
  font-size: 10px; font-weight: 700; padding: 2px 7px;
  border-radius: var(--radius-full); white-space: nowrap; flex-shrink: 0;
}

/* ===== Language Switcher ===== */
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  padding: 5px 10px; border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: transparent; cursor: pointer;
  font-size: 12px; font-weight: 600; color: var(--text-secondary);
  font-family: inherit;
  /* Instant switch — global * transition would cause active state to flash */
  transition: none !important;
}
.lang-btn:hover  { background: var(--accent-light); color: var(--accent); border-color: var(--border-focus); }
.lang-btn.active {
  background: var(--accent); color: #fff !important;
  border-color: var(--accent);
  box-shadow: 0 2px 8px var(--accent-glow);
  transform: none;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition);
  text-decoration: none; font-family: inherit;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px var(--accent-glow); }

.btn-secondary { background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--accent-light); color: var(--accent); border-color: var(--border-focus); }

.btn-danger { background: var(--danger-bg); color: var(--danger); border: 1px solid transparent; }
.btn-danger:hover { background: var(--danger); color: #fff; }

.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { background: var(--bg-elevated); }

.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-sm svg { width: 14px; height: 14px; }
.btn-icon { padding: 8px; }

/* ===== Forms ===== */
.form-group  { margin-bottom: 16px; }
.form-label  { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-label span { color: var(--danger); }

.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; color: var(--text-primary); background: var(--input-bg);
  transition: var(--transition); font-family: inherit; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-textarea { min-height: 80px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ===== Dropzone ===== */
.dropzone {
  border: 2px dashed var(--border); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; cursor: pointer;
  transition: var(--transition); position: relative; background: var(--bg-elevated);
}
.dropzone:hover, .dropzone.drag-over {
  border-color: var(--accent); background: var(--accent-light);
}
.dropzone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}
.dropzone-icon {
  width: 44px; height: 44px; margin: 0 auto 12px;
  background: var(--accent-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.dropzone-icon svg { width: 22px; height: 22px; }
.dropzone-title { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.dropzone-sub   { font-size: 12px; color: var(--text-muted); }
.dropzone-file-name {
  margin-top: 10px; font-size: 13px; font-weight: 600;
  color: var(--success); display: none;
}
.dropzone-file-name.visible { display: block; }

/* ===== Modal ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--modal-bg); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); width: 100%; max-width: 500px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
  border: 1px solid var(--border);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-header {
  padding: 24px 24px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.modal-close {
  width: 32px; height: 32px; border-radius: var(--radius);
  background: var(--bg-elevated); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--transition); flex-shrink: 0;
}
.modal-close:hover { background: var(--danger-bg); color: var(--danger); }
.modal-close svg { width: 16px; height: 16px; }
.modal-body   { padding: 20px 24px; }
.modal-footer { padding: 0 24px 24px; display: flex; gap: 10px; justify-content: flex-end; }

/* ===== My Application Status Modal ===== */
.my-status-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #3b82f6);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: #fff;
}
.my-status-avatar svg { width: 36px; height: 36px; }
.my-status-name {
  font-size: 20px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 6px;
}
.my-status-org, .my-status-section {
  font-size: 13px; color: var(--text-muted); margin-bottom: 3px;
}
.my-status-hint {
  font-size: 13px; color: var(--text-secondary);
  background: var(--bg-elevated); border-radius: var(--radius);
  padding: 10px 14px; margin-top: 12px;
}

/* ===== Tabs ===== */
.tabs {
  display: flex; gap: 4px; margin-bottom: 20px;
  background: var(--bg-elevated); padding: 4px; border-radius: var(--radius);
  width: fit-content;
}
.tab-btn {
  padding: 7px 16px; border-radius: 7px; border: none;
  font-size: 13px; font-weight: 600; cursor: pointer;
  background: transparent; color: var(--text-secondary);
  transition: var(--transition); font-family: inherit;
}
.tab-btn.active { background: var(--bg-surface); color: var(--accent); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== Badges & Tags ===== */
.badge {
  padding: 3px 8px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700;
  background: var(--accent-light); color: var(--accent);
}
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700;
}
.tag svg { width: 11px; height: 11px; }
.tag-blue  { background: rgba(29,78,216,0.1); color: var(--accent); }
.tag-green { background: var(--success-bg); color: var(--success); }

/* ===== Divider ===== */
.divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }

/* ===== Toast ===== */
.toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 18px;
  box-shadow: var(--shadow-lg); font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  animation: toastIn 0.3s ease; max-width: 320px;
  color: var(--text-primary);
}
.toast svg { width: 16px; height: 16px; flex-shrink: 0; }
.toast.success { border-left: 3px solid var(--success); }
.toast.success svg { color: var(--success); }
.toast.error { border-left: 3px solid var(--danger); }
.toast.error svg { color: var(--danger); }

@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-surface); border-top: 1px solid var(--border);
  padding: 20px 24px; text-align: center;
  font-size: 13px; color: var(--text-muted);
}

/* ===== Multi-step Form ===== */
.step-progress {
  display: flex; align-items: center;
  padding: 20px 28px 0; gap: 0;
}
.step-item {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--bg-surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--text-muted);
  transition: var(--transition);
}
.step-dot.active  { border-color: var(--accent); background: var(--accent); color: #fff; }
.step-dot.done    { border-color: var(--success); background: var(--success); color: #fff; }
.step-label {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  transition: var(--transition); white-space: nowrap;
}
.step-item.active .step-label  { color: var(--accent); }
.step-item.done .step-label    { color: var(--success); }
.step-line {
  flex: 1; height: 2px; background: var(--border);
  margin: 0 8px; transition: var(--transition);
}
.step-line.done { background: var(--success); }

.step-panel { display: none; animation: stepIn 0.28s ease; }
.step-panel.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== Section Cards Picker ===== */
.section-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px; margin: 4px 0 16px;
}
.section-card {
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 14px; cursor: pointer; transition: var(--transition);
  background: var(--bg-surface); display: flex; align-items: flex-start; gap: 10px;
  position: relative; overflow: hidden;
}
.section-card:hover { border-color: var(--border-focus); transform: translateY(-2px); box-shadow: var(--shadow); }
.section-card.sel {
  border-color: var(--accent); background: var(--accent-light);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.section-card-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--accent-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); transition: var(--transition);
}
.section-card.sel .section-card-icon { background: var(--accent); color: #fff; }
.section-card-icon svg { width: 18px; height: 18px; }
.section-card-name {
  font-size: 12px; font-weight: 600; color: var(--text-secondary);
  line-height: 1.4; flex: 1; padding-top: 2px; transition: var(--transition);
}
.section-card.sel .section-card-name { color: var(--accent); }
.section-card-check {
  position: absolute; top: 8px; right: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.5); transition: var(--transition);
}
.section-card-check svg { width: 12px; height: 12px; }
.section-card.sel .section-card-check { opacity: 1; transform: scale(1); }

/* ===== Status Badges ===== */
.status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; white-space: nowrap;
}
.status-badge svg { width: 11px; height: 11px; }
.status-pending  { background: #fef3c7; color: #d97706; }
.status-accepted { background: #d1fae5; color: #059669; }
.status-rejected { background: #fee2e2; color: #dc2626; }

/* Slightly adjust status badge colors for dark mode */
[data-theme="dark"] .status-pending  { background: rgba(217,119,6,0.18);  color: #fbbf24; }
[data-theme="dark"] .status-accepted { background: rgba(5,150,105,0.18);  color: #34d399; }
[data-theme="dark"] .status-rejected { background: rgba(220,38,38,0.18);  color: #f87171; }

/* ===== Public Participants Section ===== */
.pub-participants-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 24px 48px;
}
.pub-participants-card {
  background: var(--bg-surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--border); overflow: hidden;
}
.pub-participants-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--accent-light) 0%, transparent 100%);
  display: flex; align-items: center; justify-content: space-between;
}
.pub-participants-header h2 { font-size: 18px; font-weight: 700; color: var(--text-primary); }
.pub-participant-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 24px; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.pub-participant-item:last-child { border-bottom: none; }
.pub-participant-item:hover { background: var(--accent-light); }
.pub-participant-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pub-participant-info { flex: 1; min-width: 0; }
.pub-participant-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.pub-participant-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pub-empty { padding: 40px; text-align: center; color: var(--text-muted); font-size: 14px; }

/* ===== Participants Pagination ===== */
.pub-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; padding: 16px 24px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.pag-btn {
  min-width: 36px; height: 36px; padding: 0 6px;
  border-radius: var(--radius); border: 1.5px solid var(--border);
  background: var(--bg-surface); color: var(--text-secondary);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: var(--transition); font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center;
}
.pag-btn svg { width: 14px; height: 14px; }
.pag-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.pag-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.pag-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.pag-ellipsis { padding: 0 4px; color: var(--text-muted); font-size: 14px; font-weight: 600; line-height: 36px; }

/* ===== Section image upload (admin) ===== */
.admin-dropzone-sm {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1.5px dashed var(--border);
  border-radius: var(--radius); cursor: pointer;
  background: var(--bg-elevated); transition: var(--transition);
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  margin-bottom: 4px;
}
.admin-dropzone-sm:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.admin-dropzone-sm svg { width: 15px; height: 15px; flex-shrink: 0; }
.mi-img-preview {
  width: 100%; max-height: 130px; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--border); margin-top: 8px; display: block;
}
.or-divider {
  text-align: center; font-size: 11px; color: var(--text-muted);
  margin: 6px 0; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}

/* ===== Auth Modal (Login + Register combined) ===== */
.auth-modal-box { padding: 0 !important; overflow-x: hidden; overflow-y: auto; }

.auth-tab-bar {
  display: flex; align-items: center;
  gap: 4px; padding: 8px 48px 8px 8px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.auth-tab-pill {
  position: absolute; top: 8px; bottom: 8px;
  border-radius: var(--radius);
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  transition: left 0.28s cubic-bezier(0.4,0,0.2,1), width 0.28s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none; z-index: 0;
}
.auth-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 16px; border: none; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer;
  background: transparent; color: var(--text-muted);
  font-family: inherit; position: relative; z-index: 1;
  transition: color 0.2s !important;
}
.auth-tab svg { width: 15px; height: 15px; }
.auth-tab.active { color: var(--accent); }
.auth-tab-close {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  z-index: 2;
}

/* Fixed-height panels container — prevents size jump on tab switch */
.auth-panels-host {
  position: relative;
  min-height: 480px;
  display: flex; flex-direction: column;
}
.auth-panel { display: none; flex-direction: column; }
.auth-panel.active {
  display: flex; flex: 1;
  animation: authPanelIn 0.22s cubic-bezier(0.4,0,0.2,1);
}
#auth-panel-login {
  justify-content: center;
  min-height: 480px;
}
@keyframes authPanelIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== Login Modal ===== */
.login-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; color: #fff;
}
.login-icon svg { width: 28px; height: 28px; }
.login-demo {
  background: var(--bg-elevated); border-radius: var(--radius);
  padding: 8px 14px; font-size: 12px; color: var(--text-secondary);
  margin-bottom: 20px; text-align: center; border: 1px dashed var(--border);
}
.login-demo b { color: var(--accent); }

/* ===== Participants table modal ===== */
.modal-xl { max-width: min(92vw, 1200px); width: 100%; }
.ptable-wrap { overflow-x: auto; max-height: 60vh; overflow-y: auto; }
.ptable-wrap table { min-width: 900px; }
.ptable-wrap thead { position: sticky; top: 0; z-index: 1; }
.ptable-wrap thead th { white-space: nowrap; font-size: 12px; }
.ptable-wrap tbody td { font-size: 12px; }
.empty-cell { text-align: center; color: var(--text-muted); padding: 40px !important; }

/* ===== Admin status action buttons ===== */
.status-actions { display: flex; gap: 4px; flex-wrap: wrap; }
.btn-accept { background: #d1fae5; color: #059669; border: none; border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: inherit; }
.btn-accept:hover { background: #059669; color: #fff; }
.btn-reject { background: #fee2e2; color: #dc2626; border: none; border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: inherit; }
.btn-reject:hover { background: #dc2626; color: #fff; }
.btn-reset  { background: #fef3c7; color: #d97706; border: none; border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: inherit; }
.btn-reset:hover  { background: #d97706; color: #fff; }

[data-theme="dark"] .btn-accept { background: rgba(5,150,105,0.18); color: #34d399; }
[data-theme="dark"] .btn-accept:hover { background: #059669; color: #fff; }
[data-theme="dark"] .btn-reject { background: rgba(220,38,38,0.18); color: #f87171; }
[data-theme="dark"] .btn-reject:hover { background: #dc2626; color: #fff; }
[data-theme="dark"] .btn-reset  { background: rgba(217,119,6,0.18); color: #fbbf24; }
[data-theme="dark"] .btn-reset:hover  { background: #d97706; color: #fff; }

/* ===== File download tag ===== */
.file-dl-btn {
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 4px;
}
.file-dl-btn:hover { background: var(--accent); color: #fff; }
.file-dl-btn svg  { width: 11px; height: 11px; }

/* ===== Mobile ===== */
@media (max-width: 640px) {
  .nav { padding: 0 14px; height: 56px; }
  .nav-title { max-width: 120px; font-size: 14px; }
  .lang-switcher { display: none; }
  .step-progress { padding: 14px 16px 0; }
  .step-label { display: none; }
  .section-grid { grid-template-columns: 1fr; }
  .modal { border-radius: var(--radius-lg); }
  .modal-footer { flex-direction: column-reverse; }
  .modal-footer .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .pub-participants-wrap { padding: 0 12px 32px; }
  .mini-profile-status { display: none; }
}
