:root {
  --bg: #f7f3ec;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --surface-soft: #f7f8fc;
  --line: rgba(37, 45, 67, 0.08);
  --text: #1f2430;
  --muted: #687386;
  --accent: #ff6a1a;
  --accent-dark: #d55310;
  --brand: #1d4ed8;
  --good: #1d9d5c;
  --shadow: 0 22px 60px rgba(37, 45, 67, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 148, 77, 0.16), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(29, 78, 216, 0.1), transparent 24%),
    linear-gradient(180deg, #fcfaf6 0, #f7f3ec 360px, #f7f3ec 100%);
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 106, 26, 0.08), transparent 26%),
    radial-gradient(circle at 80% 18%, rgba(29, 78, 216, 0.06), transparent 24%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.header {
  position: relative;
  padding: 14px 0 18px;
}

.header.compact {
  padding-bottom: 12px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 40px rgba(35, 41, 55, 0.08);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--accent), #ff9a56);
  color: #fff;
  font-family: "Unbounded", sans-serif;
}

.topnav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 18px;
  padding: 18px 0 6px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.search-panel,
.benefit-card,
.job-card,
.sidebar-card,
.apply-form,
.admin-card,
.admin-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-copy {
  padding: 22px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Unbounded", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 10px;
  max-width: 9ch;
}

.hero-text {
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.button,
button,
.ghost-button {
  min-height: 50px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.button:hover,
button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.primary-button,
button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff8b47);
  box-shadow: 0 16px 30px rgba(255, 106, 26, 0.24);
}

.secondary-button,
.ghost-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(31, 36, 48, 0.08);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.trust-item {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(247, 249, 255, 0.92);
  border: 1px solid rgba(29, 78, 216, 0.08);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
}

.trust-item span {
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.8rem;
}

.hero-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.search-panel-modal {
  width: 100%;
  margin: 0;
  box-shadow: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.hero-panel,
.search-panel,
.sidebar-card,
.apply-form,
.admin-card,
.admin-panel {
  padding: 18px;
  border-radius: var(--radius-xl);
}

.hero-panel-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 26, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(247, 248, 255, 0.92) 100%);
}

.hero-panel-main::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.12), transparent 72%);
}

.hero-stat {
  display: grid;
  gap: 7px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(31, 36, 48, 0.08);
}

.hero-stat:last-child {
  border-bottom: 0;
}

.hero-stat-value {
  font-family: "Unbounded", sans-serif;
  font-size: 2rem;
  color: var(--accent);
}

.hero-stat-label,
.benefit-card p,
.sidebar-card p,
.job-body p,
.admin-list p,
.contact-lines p {
  color: var(--muted);
  line-height: 1.7;
}

.search-title {
  margin-bottom: 14px;
  font-weight: 800;
  font-size: 1.02rem;
}

.search-main,
.apply-form,
.stack-form {
  display: grid;
  gap: 12px;
}

.search-main {
  grid-template-columns: 1.6fr 1fr 150px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(37, 45, 67, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(29, 78, 216, 0.14);
  border-color: rgba(29, 78, 216, 0.28);
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quick-tags .tag-filter,
.tags span,
.badge,
.status-pill,
.results-sort {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.quick-tags .tag-filter,
.tags span {
  background: #f6f4ef;
  color: var(--muted);
}

.quick-tags .tag-filter {
  border: 0;
  min-height: auto;
  cursor: pointer;
  box-shadow: none;
}

.quick-tags .tag-filter.is-active {
  background: rgba(29, 78, 216, 0.12);
  color: var(--brand);
}

.catalog-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  padding: 8px 0 18px;
}

.catalog-section.no-sidebar {
  grid-template-columns: 1fr;
}

.catalog-section.with-filters {
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: start;
}

.filters-panel {
  position: sticky;
  top: 14px;
}

.filters-card {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 45, 67, 0.08);
  box-shadow: 0 12px 28px rgba(37, 45, 67, 0.08);
}

.filter-group {
  display: grid;
  gap: 7px;
  margin-bottom: 10px;
}

.filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #58657d;
}

.filters-reset {
  width: 100%;
  min-height: 36px;
}

.results-head,
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.results-head h2,
.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
}

.results-sort {
  background: rgba(29, 78, 216, 0.08);
  color: var(--brand);
}

.jobs-list,
.admin-list,
.sidebar {
  display: grid;
  gap: 16px;
}

.jobs-list {
  grid-template-columns: 1fr;
  align-items: start;
}

.job-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 251, 247, 0.96) 100%);
  border: 1px solid rgba(255, 140, 66, 0.14);
  box-shadow: 0 10px 24px rgba(255, 140, 66, 0.07);
  max-width: 760px;
}

.job-card.featured {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 26, 0.14), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
  border-color: rgba(255, 106, 26, 0.24);
  box-shadow: 0 24px 48px rgba(255, 106, 26, 0.12);
}

.compact-panel {
  min-height: auto;
}

.job-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #eef2f8;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(255, 140, 66, 0.08);
}

.job-body {
  display: grid;
  align-content: start;
  gap: 4px;
}

.job-meta,
.tags,
.job-inline-actions,
.card-actions,
.tiny-actions,
.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge,
.status-pill {
  background: #e7f4ec;
  color: var(--good);
}

.badge-premium {
  background: #fff1e6;
  color: #d4550f;
}

.badge-urgent {
  background: #ffe7e7;
  color: #c53b3b;
}

.badge-today {
  background: #e8f0ff;
  color: #1d4ed8;
}

.badge-verified {
  background: #ebf8ef;
  color: #167c4e;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 7px;
  border-radius: 999px;
  background: #f5f6fa;
  color: #69758c;
  font-size: 0.68rem;
  font-weight: 700;
}

.meta-location {
  background: #fff7ee;
  color: #9a531d;
}

.salary {
  margin-bottom: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: #1f3f8f;
}

.company-line {
  font-size: 0.8rem;
  font-weight: 700;
  color: #425066 !important;
}

.description-line {
  max-width: 34ch;
  line-height: 1.25;
  font-size: 0.76rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-actions {
  display: flex;
  grid-column: auto;
  align-items: center;
  align-self: center;
  justify-content: flex-end;
  gap: 0;
  margin-top: 0;
}

.card-actions .button,
.card-actions button {
  width: auto;
  min-width: 92px;
  min-height: 34px;
  border-radius: 999px;
  font-size: 0.72rem;
  padding: 0 14px;
  box-shadow: none;
}

.card-actions .secondary-button {
  background: #fff8f1;
  border: 1px solid rgba(255, 140, 66, 0.18);
  color: #9a531d;
}

.job-body h3 {
  margin-bottom: 0;
  color: #172033;
  font-size: 0.98rem;
  line-height: 1.14;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-body p {
  margin-bottom: 0;
}

.tags {
  margin-top: 2px;
}

.job-inline-actions {
  position: absolute;
  right: 16px;
  bottom: 14px;
  margin-top: 0;
  z-index: 1;
}

.like-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 66, 0.18);
  background: #fff8f1;
  color: #b46835;
  box-shadow: none;
}

.like-button:hover {
  background: #fff1e3;
}

.like-button.is-liked {
  background: #ffe3e3;
  border-color: rgba(210, 71, 71, 0.22);
  color: #d24747;
}

.like-icon {
  font-size: 0.92rem;
  line-height: 1;
}

.tags span {
  background: #fff7f0;
  color: #9a531d;
  border: 1px solid rgba(255, 140, 66, 0.16);
  padding: 3px 6px;
  font-size: 0.58rem;
}

.tags span:nth-child(n + 4) {
  display: none;
}

.contact-card {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 26, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.86);
}

.contact-lines {
  display: grid;
  gap: 4px;
}

.note-card a {
  color: var(--brand);
  font-weight: 800;
}

.response {
  padding: 16px 0 42px;
}

.hero-actions a[href="#response"],
.topnav a[href="#response"],
.response {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

.search-modal,
.publish-modal,
.job-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.search-modal-backdrop,
.publish-modal-backdrop,
.job-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 25, 38, 0.48);
  backdrop-filter: blur(4px);
}

.search-modal-dialog,
.publish-modal-dialog,
.job-modal-dialog {
  position: relative;
  width: min(920px, calc(100% - 24px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  padding: 20px;
  overflow: auto;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 70px rgba(22, 28, 40, 0.22);
}

.search-modal-dialog {
  width: min(760px, calc(100% - 24px));
  padding: 24px;
}

.search-modal-close,
.publish-modal-close,
.job-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 999px;
  background: #fff4ea;
  color: #9a531d;
  box-shadow: none;
}

.publish-modal-dialog {
  width: min(860px, calc(100% - 24px));
  padding: 24px;
}

.publish-form {
  display: grid;
  gap: 18px;
}

.publish-head h3,
.publish-head p {
  margin-bottom: 0;
}

.publish-note,
.publish-message {
  color: var(--muted);
}

.publish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.publish-grid textarea,
.publish-upload,
.publish-preview {
  grid-column: 1 / -1;
}

.publish-grid textarea {
  min-height: 110px;
}

.publish-upload {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f9fafc;
  border: 1px dashed rgba(37, 45, 67, 0.14);
  color: #58657d;
  font-weight: 700;
}

.publish-upload input {
  padding: 0;
  border: 0;
  background: transparent;
}

.publish-preview {
  padding: 10px;
  border-radius: 20px;
  background: #f6f8fc;
  border: 1px solid rgba(37, 45, 67, 0.07);
}

.publish-preview img {
  display: block;
  width: min(260px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.publish-actions {
  display: grid;
  gap: 10px;
}

.job-modal-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.job-modal-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 24px;
  background: #eef2f8;
  box-shadow: 0 14px 32px rgba(255, 140, 66, 0.14);
}

.job-modal-body {
  display: grid;
  gap: 12px;
}

.job-modal-meta,
.job-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-modal-body h3 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.job-modal-salary {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f3f8f;
}

.job-modal-company {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #425066;
}

.job-modal-block {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f9fafc;
  border: 1px solid rgba(37, 45, 67, 0.07);
}

.job-modal-block strong {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9a531d;
}

.job-modal-block p {
  margin-bottom: 0;
  color: #556277;
  line-height: 1.6;
}

.job-modal-tags span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff7f0;
  border: 1px solid rgba(255, 140, 66, 0.16);
  color: #9a531d;
  font-size: 0.86rem;
  font-weight: 700;
}

.job-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.job-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 140px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 0;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(37, 45, 67, 0.12);
}

.job-contact-button.telegram {
  background: linear-gradient(135deg, #1697ff, #0d6efd);
  color: #ffffff;
}

.job-contact-button.whatsapp {
  background: linear-gradient(135deg, #28d266, #16a34a);
  color: #ffffff;
}

.job-contact-button.phone {
  background: linear-gradient(135deg, #ffb15f, #f97316);
  color: #ffffff;
}

.job-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  line-height: 1;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.job-contact-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.job-contact-button.telegram .job-contact-icon {
  color: #ffffff;
}

.job-contact-button.whatsapp .job-contact-icon {
  color: #ffffff;
}

.job-contact-button.phone .job-contact-icon {
  color: #ffffff;
}

.job-contact-button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.apply-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.apply-form select,
.apply-form textarea,
.contact-choice,
.apply-form button,
.form-message {
  grid-column: 1 / -1;
}

.contact-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8f9fc;
  border: 1px solid rgba(37, 45, 67, 0.08);
}

.choice-label {
  width: 100%;
  font-weight: 800;
}

.contact-choice label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.contact-choice input {
  width: auto;
}

.form-message {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.hidden {
  display: none !important;
}

.admin-body .admin-layout {
  padding-bottom: 40px;
}

.admin-layout {
  display: grid;
  gap: 20px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.checkbox-line input {
  width: auto;
}

.tiny-actions button,
.tiny-actions .danger {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.tiny-actions .danger {
  background: #fff1f1;
  color: #c53b3b;
  box-shadow: none;
}

.application-card,
.job-admin-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fbfcff;
}

.muted {
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-shell,
  .catalog-section,
  .admin-grid,
  .search-main,
  .apply-form {
    grid-template-columns: 1fr;
  }

  .catalog-section.with-filters {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    position: static;
  }

  .topbar,
  .results-head,
  .section-head {
    display: grid;
    justify-content: stretch;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .job-card {
    grid-template-columns: 96px minmax(0, 1fr) auto;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 16px, 1180px);
  }

  .header {
    padding-top: 10px;
  }

  .topbar {
    padding: 16px;
    border-radius: 24px;
  }

  .topnav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    font-size: 0.92rem;
  }

  .topnav a {
    text-align: center;
    padding: 10px 8px;
    border-radius: 12px;
    background: #f4f5f8;
  }

  .hero-copy,
  .hero-panel,
  .search-panel,
  .filters-card,
  .sidebar-card,
  .apply-form,
  .admin-card,
  .admin-panel,
  .job-card {
    padding: 18px;
    border-radius: 20px;
  }

  h1 {
    max-width: 100%;
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  button {
    width: 100%;
  }

  .quick-tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .quick-tags::-webkit-scrollbar {
    display: none;
  }

  .quick-tags .tag-filter {
    white-space: nowrap;
  }

  .job-media img {
    border-radius: 12px;
  }

  .job-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 8px;
  }

  .card-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .job-inline-actions {
    right: 12px;
    bottom: 12px;
  }

  .job-body h3 {
    font-size: 0.8rem;
  }

  .salary {
    font-size: 0.82rem;
  }

  .job-modal-dialog {
    padding: 18px;
  }

  .search-modal-dialog {
    padding: 18px;
  }

  .publish-modal-dialog {
    padding: 18px;
  }

  .publish-grid {
    grid-template-columns: 1fr;
  }

  .job-modal-grid {
    grid-template-columns: 1fr;
  }
}
