:root {
  --najel-red: #e03a3c;
  --najel-ink: #171717;
  --najel-soft: #f5f6f8;
  --najel-border: #e5e7eb;
  --najel-muted: #6b7280;
}

body.najel-board,
body.najel-admin {
  color: #222;
  font-family: "Noto Sans KR", "Open Sans", sans-serif;
}

body.najel-board {
  background: #fff;
  min-height: 101vh;
  overflow-y: scroll;
  overflow-anchor: none;
}

body.najel-admin {
  background: #f6f9ff;
}

body.najel-admin .najel-btn-primary {
  background: #4154f1;
  color: #fff;
}

body.najel-admin .najel-btn-primary:hover {
  background: #3245d8;
  color: #fff;
}

body.najel-admin .najel-toolbar input:focus,
body.najel-admin .najel-toolbar select:focus,
body.najel-admin .najel-field input:focus,
body.najel-admin .najel-field select:focus,
body.najel-admin .najel-field textarea:focus {
  border-color: #4154f1;
  box-shadow: 0 0 0 3px rgba(65, 84, 241, 0.12);
}

.najel-page {
  padding-top: 90px;
}

.najel-public-page {
  padding-bottom: 72px;
}

.najel-board-hero {
  min-height: 260px;
  display: flex;
  align-items: end;
  padding: 82px 0 48px;
  background: linear-gradient(rgba(17, 17, 17, 0.68), rgba(17, 17, 17, 0.68)), url("../img/main.jpg") center 42% / cover no-repeat;
  color: #fff;
}

.najel-board-hero p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.najel-board-hero h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 800;
}

.najel-board-hero span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
}

.najel-board-section {
  padding: 46px 0 72px;
}

.najel-board-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.najel-board-category {
  position: static;
  padding: 22px;
  border: 1px solid var(--najel-border);
  border-top: 3px solid var(--najel-red);
  border-radius: 8px;
  background: #fff;
}

.najel-category-title {
  margin-bottom: 16px;
}

.najel-category-title span {
  display: block;
  color: var(--najel-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.najel-category-title h2 {
  margin: 4px 0 0;
  font-size: 24px;
  font-weight: 800;
}

.najel-board-category button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 6px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  background: transparent;
  color: #333;
  font-weight: 800;
  text-align: left;
}

.najel-category-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 6px;
  border-radius: 6px;
  padding: 0 12px;
  color: #333;
  font-weight: 800;
}

.najel-category-link i {
  color: #9ca3af;
  font-size: 17px;
}

.najel-category-link:hover {
  background: #fff1f1;
  color: #b82c2d;
}

.najel-category-link:hover i {
  color: #b82c2d;
}

.najel-board-category button i {
  color: #9ca3af;
  font-size: 17px;
}

.najel-board-category button:hover,
.najel-board-category button.active {
  background: #fff1f1;
  color: #b82c2d;
}

.najel-board-category button:hover i,
.najel-board-category button.active i {
  color: #b82c2d;
}

.najel-board-content {
  min-width: 0;
}

.najel-toolbar,
.najel-panel,
.najel-auth {
  background: #fff;
  border: 1px solid var(--najel-border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.05);
}

.najel-toolbar {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 12px;
  padding: 14px;
  margin-bottom: 18px;
}

.najel-public-toolbar {
  box-shadow: none;
}

.najel-toolbar input,
.najel-toolbar select,
.najel-field input,
.najel-field select,
.najel-field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8dce3;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  color: #222;
  font-size: 15px;
}

.najel-toolbar input:focus,
.najel-toolbar select:focus,
.najel-field input:focus,
.najel-field select:focus,
.najel-field textarea:focus {
  border-color: var(--najel-red);
  box-shadow: 0 0 0 3px rgba(224, 58, 60, 0.12);
  outline: 0;
}

.najel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 9px 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.najel-btn-primary {
  background: var(--najel-red);
  color: #fff;
}

.najel-btn-primary:hover {
  background: #c92f31;
  color: #fff;
}

.najel-btn-muted {
  background: #fff;
  border-color: #d8dce3;
  color: #333;
}

.najel-btn-muted:hover {
  border-color: var(--najel-red);
  color: var(--najel-red);
}

.najel-icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid #d8dce3;
  border-radius: 6px;
  background: #fff;
  color: #333;
}

.najel-icon-btn:hover {
  border-color: var(--najel-red);
  color: var(--najel-red);
}

.najel-board-list {
  background: #fff;
  border-top: 2px solid #202124;
}

.najel-board-row {
  display: grid;
  grid-template-columns: 88px 120px 1fr 120px 82px;
  gap: 16px;
  align-items: center;
  padding: 18px 10px;
  border-bottom: 1px solid var(--najel-border);
  color: #333;
  position: relative;
}

a.najel-board-row:hover {
  background: #fafafa;
  color: #333;
}

.najel-board-row-notice {
  background: #fffafa;
}

.najel-board-row-notice::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: var(--najel-red);
}

a.najel-board-row-notice:hover {
  background: #fff5f5;
}

.najel-board-head {
  padding-top: 14px;
  padding-bottom: 14px;
  color: #111;
  font-weight: 800;
}

.najel-board-row strong {
  color: #171717;
  font-weight: 800;
}

a.najel-board-row:hover strong {
  color: var(--najel-red);
}

.najel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 58px;
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.najel-badge i {
  font-size: 13px;
}

.najel-badge-notice {
  background: var(--najel-red);
  border-color: var(--najel-red);
  color: #fff;
  box-shadow: 0 6px 14px rgba(224, 58, 60, 0.18);
}

.najel-badge-data {
  background: #f3f6fb;
  border-color: #d9e2f0;
  color: #31526f;
}

.najel-badge-qna {
  background: #f6f7f4;
  border-color: #dfe4d8;
  color: #566249;
}

.najel-badge-default {
  background: #f5f6f8;
  border-color: #e5e7eb;
  color: #555;
}

.najel-empty {
  padding: 52px 24px;
  text-align: center;
  color: var(--najel-muted);
}

.najel-back-link {
  margin-bottom: 16px;
}

.najel-back-link a {
  color: #333;
  font-weight: 800;
}

.najel-post {
  padding: 0;
  border-top: 2px solid #202124;
  background: #fff;
}

.najel-post h2 {
  margin: 12px 0 0;
  font-size: 28px;
  font-weight: 800;
}

.najel-post-head {
  padding: 26px 10px 20px;
  border-bottom: 1px solid var(--najel-border);
}

.najel-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 10px;
  border-bottom: 1px solid var(--najel-border);
  color: var(--najel-muted);
  font-size: 14px;
}

.najel-post-body {
  min-height: 300px;
  padding: 34px 10px 44px;
  line-height: 1.9;
  white-space: pre-wrap;
}

.najel-post-image {
  margin: 28px 10px 0;
}

.najel-post-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border: 1px solid var(--najel-border);
  border-radius: 8px;
  background: #f8f9fb;
}

.najel-attachment {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-top: 1px solid var(--najel-border);
  border-bottom: 1px solid var(--najel-border);
  background: #f8fafc;
}

.najel-attachment span {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 800;
}

.najel-attachment strong {
  display: inline-block;
  max-width: 100%;
  color: #111;
  font-weight: 800;
  word-break: break-all;
}

.najel-attachment a {
  color: #111;
  font-weight: 800;
}

.najel-attachment a:hover {
  color: var(--najel-red);
}

.najel-attachment small {
  display: inline-block;
  margin-left: 8px;
  color: var(--najel-muted);
  font-weight: 700;
}

.najel-download-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid #d9e2f0;
  border-radius: 6px;
  background: #fff;
  white-space: nowrap;
}

.najel-dashboard {
  min-height: 100vh;
}

.najel-dashboard-login {
  max-width: 460px;
  margin: 12vh auto 0;
  padding: 32px;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(1, 41, 112, 0.1);
}

.najel-login-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.najel-login-brand img {
  width: 52px;
  height: 52px;
}

.najel-login-brand span,
.najel-dashboard-top p,
.najel-panel-head span {
  display: block;
  margin-bottom: 4px;
  color: #6b7db3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.najel-login-brand h1,
.najel-dashboard-top h1 {
  margin: 0;
  color: #012970;
  font-size: 28px;
  font-weight: 800;
}

.najel-admin-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 997;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(1, 41, 112, 0.1);
}

.najel-admin-header-left,
.najel-admin-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.najel-admin-header-right {
  margin-left: auto;
}

.najel-header-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 4px;
  color: #012970;
  font-size: 14px;
  font-weight: 800;
}

.najel-header-link:hover {
  background: #f6f9ff;
  color: #4154f1;
}

.najel-sidebar-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #012970;
  font-size: 28px;
}

.najel-dashboard-sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  z-index: 996;
  width: 300px;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  background: #fff;
  box-shadow: 0 0 20px rgba(1, 41, 112, 0.1);
  transition: left 0.3s ease;
}

.najel-dashboard-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  color: #012970;
  font-weight: 800;
  text-decoration: none;
}

.najel-dashboard-brand:hover {
  color: #012970;
  text-decoration: none;
}

.najel-dashboard-brand img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
}

.najel-dashboard-brand span {
  color: #012970;
  font-size: 22px;
  font-weight: 800;
}

.najel-dashboard-sidebar nav {
  display: grid;
  gap: 5px;
}

.najel-dashboard-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 4px;
  color: #012970;
  font-size: 15px;
  font-weight: 800;
  transition: 0.2s ease;
}

.najel-dashboard-sidebar nav a i {
  color: #899bbd;
  font-size: 16px;
  transition: 0.2s ease;
}

.najel-dashboard-sidebar nav a:hover,
.najel-dashboard-sidebar nav a.active {
  background: #f6f9ff;
  color: #4154f1;
}

.najel-dashboard-sidebar nav a:hover i,
.najel-dashboard-sidebar nav a.active i {
  color: #4154f1;
}

.najel-sidebar-heading {
  margin: 16px 0 6px 15px;
  color: #899bbd;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.najel-dashboard-main {
  margin-left: 300px;
  padding: 84px 30px 32px;
  transition: margin-left 0.3s ease;
}

.najel-admin.sidebar-collapsed .najel-dashboard-sidebar {
  left: -300px;
}

.najel-admin.sidebar-collapsed .najel-dashboard-main {
  margin-left: 0;
}

.najel-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.najel-dashboard-top span {
  display: block;
  margin-top: 7px;
  color: #6b7280;
}

.najel-admin-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #ebeef4;
  border-radius: 4px;
  background: #fff;
  color: #012970;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(1, 41, 112, 0.06);
}

.najel-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.najel-stat-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.najel-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 20px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 30px rgba(1, 41, 112, 0.1);
}

.najel-stat-card span {
  color: #6b7db3;
  font-size: 13px;
  font-weight: 800;
}

.najel-stat-card strong {
  display: block;
  margin-top: 5px;
  color: #012970;
  font-size: 28px;
  font-weight: 800;
}

.najel-stat-gold strong {
  font-size: 24px;
  line-height: 1.28;
}

.najel-stat-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  border-radius: 999px;
  font-size: 25px;
}

.najel-stat-blue .najel-stat-icon {
  background: #f6f6fe;
  color: #4154f1;
}

.najel-stat-red .najel-stat-icon {
  background: #fff1f1;
  color: var(--najel-red);
}

.najel-stat-green .najel-stat-icon {
  background: #eaf7ef;
  color: #2eca6a;
}

.najel-stat-gold .najel-stat-icon {
  background: #fff8e6;
  color: #ffb000;
}

.najel-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  margin-bottom: 24px;
}

.najel-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.najel-panel {
  padding: 0 22px 22px;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(1, 41, 112, 0.1);
}

.najel-quick-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 178px;
  padding-top: 22px;
  color: #012970;
}

.najel-quick-card:hover {
  color: #012970;
  transform: translateY(-2px);
}

.najel-quick-card > i {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  border-radius: 999px;
  background: #f6f6fe;
  color: #4154f1;
  font-size: 24px;
}

.najel-quick-card span {
  display: block;
  margin-bottom: 5px;
  color: #6b7db3;
  font-size: 12px;
  font-weight: 800;
}

.najel-quick-card h2 {
  margin: 0 0 10px;
  color: #012970;
  font-size: 20px;
  font-weight: 800;
}

.najel-quick-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
}

.najel-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-top: 22px;
}

.najel-panel h2 {
  margin: 0;
  color: #012970;
  font-size: 20px;
  font-weight: 800;
}

.najel-panel-head > i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f6f9ff;
  color: #4154f1;
  font-size: 18px;
}

.najel-admin-section-title {
  margin: 24px 0 14px;
  padding-top: 18px;
  border-top: 1px solid #ebeef4;
  color: #012970;
  font-size: 16px;
  font-weight: 800;
}

.najel-admin-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.najel-field {
  margin-bottom: 14px;
}

.najel-field label {
  display: block;
  margin-bottom: 7px;
  color: #012970;
  font-weight: 800;
}

.najel-field textarea {
  min-height: 160px;
  resize: vertical;
}

.najel-admin-list {
  display: grid;
  gap: 10px;
}

.najel-admin-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid #ebeef4;
  border-radius: 6px;
  background: #fbfcff;
}

.najel-admin-item strong {
  display: block;
  margin-bottom: 5px;
}

.najel-admin-item span {
  color: var(--najel-muted);
  font-size: 13px;
}

.najel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.najel-asset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.najel-asset-uploader {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #ebeef4;
  border-radius: 6px;
  background: #fbfcff;
}

.najel-asset-uploader strong,
.najel-asset-uploader span {
  display: block;
}

.najel-asset-uploader strong {
  margin-bottom: 4px;
  color: #012970;
}

.najel-asset-uploader span {
  color: var(--najel-muted);
  font-size: 13px;
  font-weight: 700;
}

.najel-asset-uploader input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.najel-file-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid #d5def0;
  border-radius: 5px;
  background: #fff;
  color: #012970;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.najel-certificate-preview {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid #ebeef4;
  border-radius: 6px;
  background: #fff;
}

.najel-certificate-preview img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.najel-certificate-preview span {
  display: block;
  margin-bottom: 4px;
  color: #6b7db3;
  font-size: 12px;
  font-weight: 800;
}

.najel-certificate-preview strong {
  color: #012970;
  font-size: 18px;
}

.najel-seal-preview {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #c82124;
  border-radius: 50%;
  color: #c82124;
  font-size: 13px;
  font-weight: 900;
}

.najel-seal-preview img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.najel-site-preview {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(rgba(17, 17, 17, 0.6), rgba(17, 17, 17, 0.6)), url("../img/main.jpg") center / cover no-repeat;
  color: #fff;
}

.najel-preview-note {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding: 13px;
  border-radius: 6px;
  background: #f6f9ff;
  color: #52627d;
  font-size: 13px;
  font-weight: 700;
}

.najel-site-preview span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.najel-site-preview h3 {
  margin: 8px 0;
  font-size: 30px;
  font-weight: 800;
}

.najel-site-preview p {
  color: rgba(255, 255, 255, 0.84);
}

.najel-site-preview strong {
  font-size: 14px;
}

.najel-auth small,
#siteSaveMessage {
  display: block;
  margin-top: 10px;
  color: var(--najel-muted);
}

.najel-hidden {
  display: none !important;
}

.najel-footer-admin {
  opacity: 0.28;
  margin-left: 8px;
  color: #aaa;
  font-size: 12px;
}

.najel-footer-admin:hover {
  opacity: 1;
  color: #fff;
}

@media (max-width: 1100px) {
  .najel-stat-grid,
  .najel-dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .najel-toolbar,
  .najel-board-layout,
  .najel-stat-grid,
  .najel-dashboard-grid,
  .najel-quick-grid,
  .najel-asset-grid {
    grid-template-columns: 1fr;
  }

  .najel-board-category {
    position: static;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .najel-category-title {
    grid-column: 1 / -1;
  }

  .najel-board-category button {
    justify-content: center;
    margin-top: 0;
  }

  .najel-category-link {
    justify-content: center;
    margin-top: 0;
  }

  .najel-board-row {
    grid-template-columns: 72px 1fr;
    gap: 8px 14px;
  }

  .najel-board-head {
    display: none;
  }

  .najel-board-row > span:nth-child(2),
  .najel-board-row > span:nth-child(4),
  .najel-board-row > span:nth-child(5) {
    color: var(--najel-muted);
    font-size: 13px;
  }

  .najel-board-row > strong {
    grid-column: 2;
  }

  .najel-admin-header {
    align-items: center;
    padding: 0 14px;
  }

  .najel-dashboard-brand {
    min-width: 0;
  }

  .najel-dashboard-brand span {
    font-size: 19px;
  }

  .najel-admin-header-right .najel-header-link {
    display: none;
  }

  .najel-dashboard-sidebar {
    left: -300px;
  }

  .najel-dashboard-main {
    margin-left: 0;
    padding: 82px 20px 24px;
  }

  .najel-admin.sidebar-open .najel-dashboard-sidebar {
    left: 0;
  }

  .najel-admin.sidebar-collapsed .najel-dashboard-sidebar {
    left: -300px;
  }
}

@media (max-width: 575px) {
  .najel-page {
    padding-top: 82px;
  }

  .najel-board-hero h1,
  .najel-post h2,
  .najel-dashboard-top h1 {
    font-size: 25px;
  }

  .najel-post,
  .najel-panel,
  .najel-auth {
    padding: 20px;
  }

  .najel-dashboard-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .najel-admin-header-right #logoutButton {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0;
  }

  .najel-admin-header-right #logoutButton i {
    font-size: 16px;
  }

  .najel-stat-card {
    min-height: 96px;
  }

  .najel-board-category {
    grid-template-columns: 1fr 1fr;
  }

  .najel-attachment {
    grid-template-columns: 1fr;
  }

  .najel-asset-uploader,
  .najel-certificate-preview {
    grid-template-columns: 1fr;
  }

  .najel-file-button {
    justify-content: center;
  }
}
