:root {
  --ui-font: "Inter", "Manrope", "Segoe UI", sans-serif;
  --ui-bg: #f8fafc;
  --ui-bg-alt: #f1f5f9;
  --ui-surface: #ffffff;
  --ui-surface-soft: #f8fafc;
  --ui-border: #e2e8f0;
  --ui-border-strong: #cbd5e1;
  --ui-text: #0f172a;
  --ui-text-soft: #475569;
  --ui-text-muted: #64748b;
  --ui-primary: #7c3aed;
  --ui-primary-hover: #6d28d9;
  --ui-primary-weak: #ede9fe;
  --ui-success: #059669;
  --ui-success-weak: #d1fae5;
  --ui-danger: #dc2626;
  --ui-danger-weak: #fee2e2;
  --ui-warning: #ea580c;
  --ui-warning-weak: #ffedd5;
  --ui-radius-xs: 8px;
  --ui-radius-sm: 10px;
  --ui-radius-md: 12px;
  --ui-radius-lg: 16px;
  --ui-radius-xl: 24px;
  --ui-shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --ui-shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --ui-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.2);
  --ui-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

@media (max-width: 760px) {
  main.container {
    width: calc(100% - 24px);
    padding-top: 14px;
  }
}

#ui-toast-container {
  position: fixed;
  top: 84px;
  right: 16px;
  z-index: 2400;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(340px, calc(100vw - 24px));
  pointer-events: none;
}

.ui-toast {
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.95);
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.16);
  color: #1e293b;
  font-size: 14px;
  line-height: 1.4;
  padding: 10px 12px;
  transform: translateY(-6px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
}

.ui-toast.red {
  border-color: rgb(220 38 38 / 0.6);
  background: rgb(254 242 242 / 0.98);
  color: #7f1d1d;
}

.ui-toast.show {
  opacity: 1;
  transform: translateY(0);
}

nav {
  height: 64px;
  min-height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.pagination {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination li {
  list-style: none;
  display: flex;
}

.pagination li a {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 10px;
  background: #fff;
  color: #475569;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pagination li:not(.disabled):not(.active) a:hover {
  border-color: rgba(124, 58, 237, 0.45);
  background: #f8fafc;
  color: #1e293b;
}

.pagination li a:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.38);
  outline-offset: 2px;
}

.pagination li.active a {
  background: var(--ui-primary);
  border-color: var(--ui-primary);
  color: #fff;
}

.pagination li.disabled a {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.btn:not(.twds-btn),
.btn-primary:not(.twds-btn),
.btn-secondary:not(.twds-btn),
.btn-auth:not(.twds-btn) {
  min-height: 42px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 12px;
  padding: 10px 16px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:not(.twds-btn),
.btn-primary:not(.twds-btn),
.btn-auth:not(.twds-btn),
#nav-login .btn:not(.twds-btn),
#nav-create .btn:not(.twds-btn),
#nav-register .btn:not(.twds-btn) {
  background: var(--ui-primary);
  color: #fff;
}

.btn:not(.twds-btn):hover,
.btn-primary:not(.twds-btn):hover,
.btn-auth:not(.twds-btn):hover,
#nav-login .btn:not(.twds-btn):hover,
#nav-create .btn:not(.twds-btn):hover,
#nav-register .btn:not(.twds-btn):hover {
  background: var(--ui-primary-hover);
  color: #fff;
}

.btn.btn-ghost:not(.twds-btn),
.btn-ghost:not(.twds-btn),
.btn-flat:not(.twds-btn) {
  border-color: rgba(148, 163, 184, 0.45);
  background: #fff;
  color: #475569;
}

.btn.btn-ghost:not(.twds-btn):hover,
.btn-ghost:not(.twds-btn):hover,
.btn-flat:not(.twds-btn):hover {
  background: #f8fafc;
  color: #0f172a;
}

.btn.btn-danger:not(.twds-btn),
.btn-danger:not(.twds-btn) {
  background: var(--ui-danger);
  border-color: var(--ui-danger);
  color: #fff;
}

.btn.btn-danger:not(.twds-btn):hover,
.btn-danger:not(.twds-btn):hover {
  background: #dc2626;
  border-color: #dc2626;
}

.btn:not(.twds-btn) .icon.left,
.btn:not(.twds-btn) .icon.right {
  margin: 0;
}

.input-field {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-field > label {
  position: static;
  transform: none;
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
  color: #5b6b90;
  font-weight: 600;
  pointer-events: none;
  order: -1;
}

.input-field > input,
.input-field > select,
.input-field > textarea,
.input-field .select-wrapper input.select-dropdown {
  height: 48px;
  min-height: 48px;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 14px;
  background: #fff;
  color: #0f172a;
  box-sizing: border-box;
  padding: 0 14px;
}

.input-field > select.ui-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.2 6.2a1 1 0 0 1 1.4 0L8 8.6l2.4-2.4a1 1 0 0 1 1.4 1.4l-3.1 3.1a1 1 0 0 1-1.4 0L4.2 7.6a1 1 0 0 1 0-1.4Z" fill="%23334155"/></svg>');
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: right 16px center;
}

.input-field > select.ui-select::-ms-expand {
  display: none;
}

select.ui-select.ui-select-native {
  display: none;
}

.ui-select-shell {
  position: relative;
  width: 100%;
}

.ui-select-trigger {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgb(var(--twds-border));
  border-radius: 12px;
  background: rgb(var(--twds-surface));
  color: rgb(var(--twds-text));
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  padding: 0 16px;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.ui-select-trigger:hover {
  border-color: rgb(var(--twds-border-strong));
}

.ui-select-trigger::after {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.2 6.2a1 1 0 0 1 1.4 0L8 8.6l2.4-2.4a1 1 0 0 1 1.4 1.4l-3.1 3.1a1 1 0 0 1-1.4 0L4.2 7.6a1 1 0 0 1 0-1.4Z" fill="%23334155"/></svg>');
}

.ui-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-select-shell.is-open .ui-select-trigger,
.ui-select-trigger:focus-visible {
  outline: none;
  border-color: rgb(var(--twds-primary));
  box-shadow: 0 0 0 4px rgb(var(--twds-primary-soft) / 0.6);
}

.ui-select-shell.is-disabled .ui-select-trigger,
.ui-select-trigger:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.ui-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1200;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 34px rgb(15 23 42 / 0.16);
  padding: 6px;
  max-height: 260px;
  overflow-y: auto;
}

.ui-select-option {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  text-align: left;
  padding: 8px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ui-select-option:hover,
.ui-select-option:focus-visible {
  background: #f3f0ff;
  color: #5b34d9;
  outline: none;
}

.ui-select-option.is-selected {
  background: #ede9fe;
  color: #5b34d9;
  font-weight: 600;
}

.input-field > textarea,
.textarea-field {
  min-height: 118px;
  padding: 12px 14px;
  resize: vertical;
}

.city-autocomplete-wrap {
  position: relative;
}

.city-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1200;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgb(15 23 42 / 0.16);
  padding: 6px;
  max-height: 240px;
  overflow-y: auto;
}

.city-suggestion-item {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  text-align: left;
  padding: 8px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.city-suggestion-item:hover,
.city-suggestion-item:focus-visible {
  background: #f3f0ff;
  color: #5b34d9;
  outline: none;
}

.input-field > input:focus,
.input-field > select:focus,
.input-field > textarea:focus,
.input-field .select-wrapper input.select-dropdown:focus,
.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.42);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.18);
}

.search-section,
.card,
.ui-panel,
.profile-card,
.roles-select-card,
.role-editor-card,
.onboarding-card {
  border-radius: var(--ui-radius-lg);
  border: 1px solid var(--ui-border-soft);
  background: var(--ui-surface);
  box-shadow: var(--ui-shadow-sm);
}

.card .card-content {
  padding: 24px;
}

.card .card-title {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #0f172a;
  font-weight: 700;
}

.ui-spinner {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.25);
  border-top-color: var(--ui-primary);
  animation: ui-spin 0.8s linear infinite;
}

@keyframes ui-spin {
  to {
    transform: rotate(360deg);
  }
}

.list-state-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.list-state-text {
  margin: 0;
  color: #64748b;
  font-size: 15px;
}

.list-state-icon {
  font-size: 26px;
  color: #ef4444;
}

.catalog-grid,
#jobs-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1180px) {
  .catalog-grid,
  #jobs-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .catalog-grid,
  #jobs-list {
    grid-template-columns: 1fr;
  }
}

.catalog-card:hover,
.vacancy-list-card:hover,
.catalog-card:focus-visible,
.vacancy-list-card:focus-visible {
  border-color: var(--twds-card-hover-border);
  box-shadow: var(--twds-card-shadow-hover);
  outline: none;
}

.catalog-hero {
  min-height: 170px;
  position: relative;
  background: linear-gradient(180deg, #d8dce6 0%, #9aa3b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.catalog-hero-placeholder .icon {
  font-size: 64px;
  color: #8f98a7;
}

.catalog-hero-chip {
  position: absolute;
  top: 12px;
  right: 12px;
}

.catalog-card-head,
.catalog-card-body {
  padding: 16px 18px 0;
}

.catalog-job-head {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
}

.list-status-pill:not(.twds-status),
.badge,
.pill,
.ensemble-member-chip {
  border-radius: var(--twds-pill-radius);
  display: inline-flex;
  align-items: center;
  min-height: var(--twds-pill-height-sm);
  padding: 0 var(--twds-pill-pad-x);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.list-status-pill:not(.twds-status) {
  border: 1px solid rgba(148, 163, 184, 0.34);
  color: #475569;
  background: #f8fafc;
}

.list-status-pill.is-active:not(.twds-status),
.list-status-pill.is-open:not(.twds-status),
.list-status-pill.is-ready:not(.twds-status) {
  border-color: rgba(16, 185, 129, 0.34);
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

.list-status-pill.is-draft:not(.twds-status) {
  border-color: rgba(148, 163, 184, 0.34);
  background: #f1f5f9;
  color: #475569;
}

.list-status-pill.is-closed:not(.twds-status),
.list-status-pill.is-cancelled:not(.twds-status),
.list-status-pill.is-rejected:not(.twds-status),
.list-status-pill.is-completed:not(.twds-status) {
  border-color: rgba(239, 68, 68, 0.34);
  background: rgba(239, 68, 68, 0.13);
  color: #b91c1c;
}

.catalog-subtle {
  color: #64748b;
  font-size: 14px;
}

.catalog-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.catalog-open-btn {
  min-height: 36px;
  border-radius: 999px;
  padding: 0 12px;
}

.musicians-page-shell .search-section {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  border-radius: 0;
  z-index: 1200;
}

.modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1199;
  background: rgba(15, 23, 42, 0.62);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.modal .modal-content {
  position: relative;
  z-index: 1201;
  margin: 0;
  width: min(920px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid var(--ui-border-soft);
  background: var(--ui-surface);
  box-shadow: var(--ui-shadow-md);
  padding: 22px;
}

.modal .modal-content h4 {
  margin: 0 0 14px;
  color: #1f2a4b;
  font-size: 28px;
  line-height: 1.16;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .vacancy-detail-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  .ui-page-shell,
  .card .card-content,
  .modal .modal-content {
    padding: 16px;
  }

  .vacancies-page-header {
    flex-direction: column;
    align-items: stretch;
  }

  .vacancy-header {
    flex-direction: column;
    align-items: stretch;
  }

  .modal .modal-content h4 {
    font-size: 23px;
    padding-right: 34px;
  }

  .catalog-hero {
    min-height: 176px;
  }
}

@media (max-width: 900px) {
  .vacancy-detail-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------------------------------------------------------------------------- */
/* Base44 1:1 Alignment Pass (global)                                         */
/* -------------------------------------------------------------------------- */

body {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  color: #0f172a;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #f5f3ff 100%);
}

html {
  min-height: 100%;
}

body:not(.auth-shell-page) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body:not(.auth-shell-page) > main.container {
  flex: 1 0 auto;
}

body:not(.auth-shell-page) > .site-footer {
  margin-top: auto;
}

main.container {
  margin: 0 auto;
  max-width: 1280px;
  width: min(1280px, calc(100% - 48px));
  padding-top: 30px;
  padding-bottom: 36px;
}

.brand-logo {
  align-items: center;
  display: inline-flex;
  gap: 9px;
}

.brand-logo-image {
  width: 44px;
  height: 44px;
}

.brand-logo-text {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 45%, #6d28d9 100%);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ui-page-shell {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.page-header {
  margin-bottom: 14px;
}

.page-title {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #0b1b45;
  font-weight: 800;
}

.page-title .icon.left {
  font-size: 0.5em;
  margin-right: 10px;
  color: #7c3aed;
}

.page-subtitle {
  margin: 8px 0 0;
  color: #52648a;
  font-size: 16px;
  line-height: 1.4;
}

.search-section {
  margin-bottom: 16px;
  border-radius: 14px;
  border: 1px solid #dbe3f0;
  background: #f8faff;
  box-shadow: none;
  padding: 14px 16px;
}

.search-section > .twds-card-body {
  padding-left: 0;
  padding-right: 0;
}

.search-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.search-actions .btn {
  min-height: 40px;
  border-radius: 10px;
  font-size: 15px;
  padding: 0 16px;
}

.catalog-grid,
#jobs-list {
  gap: 16px;
}

.catalog-card,
.vacancy-list-card {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  min-height: 320px;
  flex-direction: column;
  display: flex;
  border-radius: var(--twds-card-radius);
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: var(--twds-card-shadow);
}

.catalog-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.catalog-card-footer {
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 14px 18px 18px;
  margin-top: auto;
  border-top-color: #e2e8f0;
}

.musicians-list {
  grid-template-columns: 1fr;
  display: grid;
  gap: 14px;
}

.catalog-open-btn {
  border-radius: 999px;
  min-height: 38px;
  padding: 0 14px;
}

.vacancies-page-header {
  gap: 12px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.vacancy-list-card {
  min-height: 180px;
  padding: 16px 18px;
}

.vacancy-list-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.vacancy-list-owner {
  margin-top: 7px;
  font-size: 17px;
  color: #334155;
}

.vacancy-list-meta {
  color: #4f5f83;
  gap: 8px 12px;
  flex-wrap: wrap;
  display: flex;
  margin-top: 10px;
  font-size: 14px;
}

.vacancy-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.vacancy-detail-head-main .page-title {
  font-size: clamp(34px, 3.8vw, 44px);
  margin-top: 8px;
}

.vacancy-page-role {
  margin: 8px 0 0;
  font-size: 16px;
  color: #52648a;
}

.vacancy-detail-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 270px;
}

.vacancy-detail-panel,
.vacancy-detail-author {
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.list-state-panel {
  margin-bottom: 14px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.ui-onboarding-page .onboarding-card {
  border-radius: 16px;
  border: 1px solid #d7deea;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.ui-onboarding-page .onboarding-card .card-content {
  padding: 20px 22px;
}

.onboarding-title {
  display: block;
  margin: 14px 0 8px;
  font-size: clamp(32px, 3.8vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #0b1b45;
}

.onboarding-lead {
  margin: 0 0 16px;
  font-size: 16px;
  color: #5d6b90;
}

.site-footer {
  background: #0b1636;
  color: #cbd5e1;
}

.site-footer-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 22px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #fff;
}

.site-footer-logo-image {
  width: 34px;
  height: 34px;
}

.site-footer-logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-footer-copy {
  margin-top: 10px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.45;
  max-width: 280px;
}

.site-footer-col h4 {
  margin: 0 0 12px;
  font-size: 16px;
  color: #fff;
}

.site-footer-col a,
.site-footer-col span {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  margin-bottom: 4px;
}

.site-footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: #64748b;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1024px) {
  .brand-logo-text {
    font-size: 24px;
  }

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .catalog-title {
    font-size: 20px;
  }

  .vacancy-list-title {
    font-size: 20px;
  }

  .vacancy-list-owner {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  main.container,
  nav .nav-wrapper,
  .site-footer-inner {
    width: calc(100% - 24px);
  }

  .brand-logo-text {
    font-size: 22px;
  }

  nav ul.nav-center {
    display: none;
  }

  .page-title {
    font-size: clamp(30px, 8vw, 38px);
  }

  .page-subtitle {
    font-size: 14px;
  }

  .vacancy-detail-layout {
    grid-template-columns: 1fr;
  }

  .public-profile-hero-body {
    margin-top: -40px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 14px 14px;
  }

  .public-profile-grid {
    grid-template-columns: 1fr;
  }

  .public-profile-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
