/* Jobs section — component styles adapted from design prototype */
:root {
  --j-primary:     oklch(56% 0.21 250);
  --j-primary-dim: oklch(56% 0.21 250 / .12);
  --j-card:        oklch(100% 0 0);
  --j-bg:          oklch(96% 0.008 244);
  --j-border:      oklch(91% 0.012 244);
  --j-text:        oklch(22% 0.03 244);
  --j-muted:       oklch(50% 0.025 244);
  --j-faint:       oklch(70% 0.015 244);
  --j-success:     oklch(60% 0.17 157);
  --j-success-dim: oklch(60% 0.17 157 / .12);
  --j-error:       oklch(56% 0.22 29);
  --j-r:  12px;
  --j-rs: 8px;
}

/* ── Breadcrumb ── */
.j-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--j-faint); margin-bottom: 14px; flex-wrap: wrap;
}
.j-breadcrumb a { color: var(--j-muted); text-decoration: none; }
.j-breadcrumb a:hover { color: var(--j-primary); }
.j-breadcrumb .sep { color: var(--j-faint); }
.j-breadcrumb .cur { color: var(--j-text); font-weight: 500; }

/* ── Page header ── */
.j-page-title { font-size: 26px; font-weight: 700; letter-spacing: -.5px; line-height: 1.15; color: var(--j-text); }
.j-page-sub   { font-size: 14px; color: var(--j-muted); margin-top: 4px; }

/* ── Promo block ── */
.j-promo {
  background: linear-gradient(135deg, oklch(56% 0.21 250), oklch(48% 0.18 265));
  border-radius: var(--j-r); padding: 22px 24px; color: white;
  margin-bottom: 20px; position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 20px;
}
.j-promo::after  { content: ''; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; background: oklch(100% 0 0/.07); border-radius: 50%; }
.j-promo::before { content: ''; position: absolute; right: 60px; bottom: -30px; width: 80px; height: 80px; background: oklch(100% 0 0/.05); border-radius: 50%; }
.j-promo-body  { position: relative; z-index: 1; flex: 1; min-width: 0; }
.j-promo-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: oklch(100% 0 0/.6); margin-bottom: 6px; }
.j-promo-title { font-size: 18px; font-weight: 700; line-height: 1.3; letter-spacing: -.3px; margin-bottom: 5px; }
.j-promo-text  { font-size: 13px; color: oklch(100% 0 0/.8); line-height: 1.55; }
.j-promo-text a { color: white; text-decoration: underline; text-underline-offset: 2px; }
.j-promo-cta {
  position: relative; z-index: 1; flex-shrink: 0;
  background: white; color: var(--j-primary); border: none;
  font-size: 14px; font-weight: 700; padding: 10px 18px;
  border-radius: 9px; cursor: pointer; transition: opacity .15s;
  text-decoration: none; display: inline-block; white-space: nowrap;
}
.j-promo-cta:hover { opacity: .9; color: var(--j-primary); }

/* ── Filter bar ── */
.j-filter-bar {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
}
.j-list-count { font-size: 13px; color: var(--j-muted); margin-right: 4px; }
.j-filter-select {
  padding: 5px 10px; border: 1px solid var(--j-border); border-radius: 20px;
  font-size: 13px; color: var(--j-text); background: var(--j-card);
  cursor: pointer; outline: none; transition: border-color .15s;
}
.j-filter-select:hover { border-color: var(--j-primary); }

/* ── Vacancy card ── */
.j-vac-card {
  background: var(--j-card); border: 1px solid var(--j-border); border-radius: var(--j-r);
  padding: 15px 17px; cursor: pointer; transition: box-shadow .15s, transform .15s, border-color .15s;
  box-shadow: 0 1px 4px oklch(0% 0 0/.04); margin-bottom: 10px;
  text-decoration: none; color: inherit; display: block;
  border-left: 3px solid var(--j-primary);
}
.j-vac-card:hover { box-shadow: 0 4px 16px oklch(0% 0 0/.09); transform: translateY(-1px); }
.j-vac-highlighted {
  background: oklch(98% 0.025 85);
  box-shadow: 0 1px 6px oklch(75% 0.12 85/.25);
}
.j-vac-highlighted:hover { box-shadow: 0 4px 18px oklch(75% 0.12 85/.35); }

.j-vac-card.cat-horeca      { border-left-color: oklch(60% 0.17 157); }
.j-vac-card.cat-construction{ border-left-color: oklch(72% 0.17 72); }
.j-vac-card.cat-trade       { border-left-color: oklch(65% 0.17 340); }
.j-vac-card.cat-beauty      { border-left-color: oklch(68% 0.16 0); }
.j-vac-card.cat-domestic    { border-left-color: oklch(60% 0.12 30); }
.j-vac-card.cat-transport   { border-left-color: oklch(62% 0.16 230); }
.j-vac-card.cat-admin       { border-left-color: oklch(55% 0.1 280); }
.j-vac-card.cat-it          { border-left-color: var(--j-primary); }
.j-vac-card.cat-education   { border-left-color: oklch(64% 0.17 75); }
.j-vac-card.cat-other       { border-left-color: var(--j-faint); }

.j-vac-top   { display: flex; align-items: flex-start; gap: 13px; }
.j-vac-logo  {
  position: relative; width: 46px; height: 46px; border-radius: 10px; background: var(--j-bg);
  border: 1px solid var(--j-border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; color: var(--j-muted); overflow: hidden;
}
.j-vac-main  { flex: 1; min-width: 0; }
.j-vac-title { font-size: 15px; font-weight: 700; color: var(--j-text); line-height: 1.3; letter-spacing: -.1px; }
.j-vac-company { font-size: 12px; color: var(--j-muted); margin-top: 2px; }

.j-badges    { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }
.j-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 5px; letter-spacing: .1px;
}
.j-badge.cat      { background: var(--j-bg); color: var(--j-text); border: 1px solid var(--j-border); }
.j-badge.cat.cat-horeca      { background: oklch(60% 0.17 157 / .1);  color: oklch(45% 0.15 157); border-color: transparent; }
.j-badge.cat.cat-construction{ background: oklch(72% 0.17 72 / .14);  color: oklch(48% 0.15 72);  border-color: transparent; }
.j-badge.cat.cat-trade       { background: oklch(65% 0.17 340 / .12); color: oklch(48% 0.16 340); border-color: transparent; }
.j-badge.cat.cat-beauty      { background: oklch(68% 0.16 0 / .12);   color: oklch(48% 0.16 0);   border-color: transparent; }
.j-badge.cat.cat-domestic    { background: oklch(60% 0.12 30 / .12);  color: oklch(45% 0.12 30);  border-color: transparent; }
.j-badge.cat.cat-transport   { background: oklch(62% 0.16 230 / .12); color: oklch(45% 0.16 230); border-color: transparent; }
.j-badge.cat.cat-admin       { background: oklch(55% 0.1 280 / .12);  color: oklch(45% 0.12 280); border-color: transparent; }
.j-badge.cat.cat-it          { background: var(--j-primary-dim); color: var(--j-primary); border-color: transparent; }
.j-badge.cat.cat-education   { background: oklch(64% 0.17 75 / .14);  color: oklch(45% 0.15 75);  border-color: transparent; }
.j-badge.type { background: var(--j-bg); color: var(--j-muted); border: 1px solid var(--j-border); }
.j-badge.lang { background: var(--j-bg); color: var(--j-text); border: 1px solid var(--j-border); font-weight: 500; }

.j-vac-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 11px; gap: 10px; flex-wrap: wrap;
}
.j-vac-salary            { font-size: 14px; font-weight: 700; color: var(--j-success); }
.j-vac-salary.negotiable { color: var(--j-muted); font-weight: 500; font-style: italic; }
.j-vac-date { font-size: 12px; color: var(--j-faint); }
.j-vac-more { font-size: 13px; color: var(--j-primary); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

/* ── Vacancy detail ── */
.j-detail-card {
  background: var(--j-card); border: 1px solid var(--j-border); border-radius: var(--j-r);
  padding: 26px 30px; box-shadow: 0 1px 4px oklch(0% 0 0/.04);
}
.j-detail-header  { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.j-detail-logo    {
  position: relative; width: 62px; height: 62px; border-radius: 12px; background: var(--j-bg);
  border: 1px solid var(--j-border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: var(--j-muted); overflow: hidden;
}
.j-logo-blur {
  position: absolute; inset: -4px;
  background-size: cover; background-position: center;
  filter: blur(6px) brightness(0.65) saturate(1.4);
}
.j-logo-img {
  position: relative; z-index: 1;
  max-width: 78%; max-height: 78%;
  object-fit: contain;
  background: rgba(255,255,255,0.9);
  border-radius: 5px;
  padding: 3px;
}
.j-detail-title-block { flex: 1; min-width: 0; }
.j-detail-title { font-size: 22px; font-weight: 700; color: var(--j-text); letter-spacing: -.4px; line-height: 1.2; margin-bottom: 4px; }
.j-detail-company { font-size: 13px; color: var(--j-muted); margin-bottom: 8px; }
.j-detail-meta  { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.j-detail-meta-date { font-size: 12px; color: var(--j-faint); margin-left: auto; }

.j-detail-section { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--j-border); }
.j-detail-label   { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--j-muted); margin-bottom: 10px; }
.j-detail-text    { font-size: 14px; line-height: 1.7; color: var(--j-text); white-space: pre-wrap; }

.j-conditions { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.j-cond-item  { background: var(--j-bg); border: 1px solid var(--j-border); border-radius: var(--j-rs); padding: 11px 13px; }
.j-cond-label { font-size: 11px; font-weight: 600; color: var(--j-muted); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 3px; }
.j-cond-val   { font-size: 14px; font-weight: 600; color: var(--j-text); }
.j-cond-val.salary { color: var(--j-success); font-size: 17px; font-weight: 700; }

/* ── Contact reveal ── */
.j-contact-reveal {
  background: var(--j-bg); border: 1px solid var(--j-border); border-radius: var(--j-r);
  padding: 22px; text-align: center; margin-top: 4px;
}
.j-contact-reveal-icon {
  width: 46px; height: 46px; background: var(--j-primary-dim); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 10px; color: var(--j-primary);
}
.j-contact-reveal-title { font-size: 15px; font-weight: 700; color: var(--j-text); margin-bottom: 5px; }
.j-contact-reveal-sub   { font-size: 13px; color: var(--j-muted); margin-bottom: 16px; line-height: 1.5; max-width: 360px; margin-left: auto; margin-right: auto; }
.j-contact-reveal-btn   {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--j-primary); color: white; border: none;
  font-size: 15px; font-weight: 600; padding: 12px 26px; border-radius: var(--j-rs);
  cursor: pointer; transition: opacity .15s; min-height: 48px; width: 100%; max-width: 320px;
}
.j-contact-reveal-btn:hover { opacity: .88; }
.j-contact-reveal-btn[disabled] { opacity: .6; cursor: default; }

/* Contacts (revealed) */
.j-contacts-revealed { animation: jFadeIn .25s ease-out; }
.j-contacts-ok { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--j-success); margin-bottom: 12px; }

.j-cinfo { display: flex; flex-direction: column; gap: 10px; }
.j-cinfo-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.j-cinfo-label { font-size: 11px; font-weight: 600; color: var(--j-muted); text-transform: uppercase; letter-spacing: .4px; width: 90px; flex-shrink: 0; }
.j-cinfo-phone { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.j-cinfo-number { font-size: 14px; font-weight: 600; color: var(--j-text); }
.j-cinfo-val { font-size: 14px; font-weight: 600; color: var(--j-text); }

.j-cinfo-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.j-cpill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 20px; font-size: 12px; font-weight: 600;
  text-decoration: none; border: 1px solid var(--j-border);
  background: var(--j-bg); color: var(--j-text);
  transition: opacity .15s;
}
.j-cpill:hover { opacity: .8; }
.j-cpill-call  { background: oklch(56% 0.18 220); color: white; border-color: transparent; }
.j-cpill-wa    { background: oklch(60% 0.17 157); color: white; border-color: transparent; }
.j-cpill-viber { background: oklch(52% 0.22 300); color: white; border-color: transparent; }
.j-cpill-tg    { background: oklch(60% 0.16 220); color: white; border-color: transparent; }
.j-cpill-email { background: var(--j-bg); color: var(--j-primary); border-color: var(--j-border); }

.j-back-link { display: inline-flex; align-items: center; gap: 5px; color: var(--j-primary); font-size: 14px; font-weight: 600; text-decoration: none; }
.j-back-link:hover { text-decoration: underline; }

/* ── Application form ── */
.j-form-intro { font-size: 14px; color: var(--j-muted); line-height: 1.6; margin-bottom: 16px; max-width: 640px; }
.j-form-intro a { color: var(--j-primary); font-weight: 500; }

.j-form-section {
  background: var(--j-card); border: 1px solid var(--j-border); border-radius: var(--j-r);
  padding: 22px 26px; margin-bottom: 12px; box-shadow: 0 1px 4px oklch(0% 0 0/.04);
}
.j-form-sect-hdr { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 16px; padding-bottom: 13px; border-bottom: 1px solid var(--j-border); }
.j-form-sect-num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--j-primary-dim); color: var(--j-primary);
  font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.j-form-sect-title { font-size: 15px; font-weight: 700; color: var(--j-text); letter-spacing: -.2px; line-height: 1.3; }
.j-form-sect-sub   { font-size: 12px; color: var(--j-muted); margin-top: 3px; line-height: 1.45; }

.j-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 15px; }
.j-form-grid.cols-1 { grid-template-columns: 1fr; }
.j-form-group { display: flex; flex-direction: column; gap: 4px; }
.j-form-group.span2 { grid-column: 1 / -1; }
.j-form-label { font-size: 12px; font-weight: 600; color: var(--j-text); }
.j-form-label .req { color: var(--j-error); margin-left: 2px; }
.j-form-label .opt { color: var(--j-faint); font-weight: 500; margin-left: 6px; text-transform: lowercase; font-size: 11px; }
.j-form-hint  { font-size: 11px; color: var(--j-muted); margin-top: 2px; line-height: 1.4; }

.j-input, .j-select, .j-textarea {
  padding: 9px 12px; border: 1px solid var(--j-border); border-radius: var(--j-rs);
  font-size: 14px; color: var(--j-text); background: var(--j-card);
  outline: none; transition: border-color .15s, box-shadow .15s; width: 100%;
  font-family: inherit;
}
.j-input:focus, .j-select:focus, .j-textarea:focus {
  border-color: var(--j-primary); box-shadow: 0 0 0 3px var(--j-primary-dim);
}
.j-input::placeholder, .j-textarea::placeholder { color: var(--j-faint); }
.j-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.j-md-toolbar { display: flex; gap: 4px; margin-bottom: 4px; }
.j-md-toolbar button {
  padding: 2px 9px; font-size: 13px; line-height: 1.6; cursor: pointer;
  border: 1px solid var(--j-border); border-radius: 5px;
  background: var(--j-bg); color: var(--j-text);
  transition: background .1s;
}
.j-md-toolbar button:hover { background: var(--j-border); }

.j-salary-row { display: flex; align-items: center; gap: 9px; }
.j-salary-row .j-input { flex: 1; }
.j-salary-row.disabled .j-input { opacity: .45; pointer-events: none; }
.j-check-row { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: var(--j-text); user-select: none; }
.j-check-row input { width: 15px; height: 15px; cursor: pointer; accent-color: var(--j-primary); }



.j-lang-picker { display: flex; flex-wrap: wrap; gap: 6px; }
.j-lang-chip {
  padding: 5px 12px; border-radius: 20px; border: 1px solid var(--j-border);
  background: var(--j-card); font-size: 12px; font-weight: 600; color: var(--j-text);
  cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.j-lang-chip:hover { background: var(--j-bg); }

.j-file-upload {
  position: relative; display: flex; align-items: center; gap: 11px; padding: 13px;
  border: 1px dashed var(--j-border); border-radius: var(--j-rs); background: var(--j-bg);
  cursor: pointer; transition: border-color .15s, background .15s;
}
.j-file-upload:hover { border-color: var(--j-primary); background: var(--j-primary-dim); }
.j-file-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.j-file-upload-icon {
  width: 34px; height: 34px; background: var(--j-card); border: 1px solid var(--j-border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--j-muted); flex-shrink: 0;
}
.j-file-upload-text { font-size: 13px; color: var(--j-text); font-weight: 500; }
.j-file-upload-hint { font-size: 11px; color: var(--j-muted); margin-top: 2px; }

.j-form-actions {
  display: flex; justify-content: space-between; align-items: center; gap: 13px;
  background: var(--j-card); border: 1px solid var(--j-border); border-radius: var(--j-r);
  padding: 16px 22px; flex-wrap: wrap;
}
.j-form-actions-hint { font-size: 12px; color: var(--j-muted); }
.j-form-actions-hint a { color: var(--j-primary); font-weight: 500; }
.j-form-actions-btns { display: flex; gap: 9px; }

/* ── Buttons ── */
.j-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--j-rs); font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: opacity .15s, background .15s;
  border: 1px solid transparent; text-decoration: none; min-height: 40px;
}
.j-btn-primary { background: var(--j-primary); color: white; }
.j-btn-primary:hover { opacity: .88; color: white; }
.j-btn-ghost { background: transparent; color: var(--j-text); border-color: var(--j-border); }
.j-btn-ghost:hover { background: var(--j-bg); }
.j-btn-lg { padding: 12px 22px; font-size: 15px; min-height: 48px; }
.j-btn:disabled { opacity: .45; cursor: not-allowed; }

/* ── Success card ── */
.j-success-card {
  background: var(--j-card); border: 1px solid var(--j-border); border-radius: var(--j-r);
  padding: 44px 28px; text-align: center; box-shadow: 0 1px 4px oklch(0% 0 0/.04);
}
.j-success-icon {
  width: 68px; height: 68px; background: var(--j-success-dim); color: var(--j-success);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.j-success-title { font-size: 20px; font-weight: 700; color: var(--j-text); margin-bottom: 9px; letter-spacing: -.4px; }
.j-success-sub   { font-size: 14px; color: var(--j-muted); line-height: 1.6; max-width: 460px; margin: 0 auto 22px; }

/* ── Empty state ── */
.j-empty-state {
  background: var(--j-card); border: 1px solid var(--j-border); border-radius: var(--j-r);
  padding: 50px 28px; text-align: center;
}
.j-empty-icon  { width: 60px; height: 60px; background: var(--j-bg); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--j-muted); margin-bottom: 13px; }
.j-empty-title { font-size: 16px; font-weight: 700; color: var(--j-text); margin-bottom: 6px; letter-spacing: -.2px; }
.j-empty-sub   { font-size: 13px; color: var(--j-muted); margin-bottom: 16px; max-width: 360px; margin-left: auto; margin-right: auto; line-height: 1.55; }

/* ── Pagination ── */
.j-pagination { display: flex; justify-content: center; align-items: center; gap: 5px; margin-top: 22px; }
.j-pag-btn {
  min-width: 34px; height: 34px; border: 1px solid var(--j-border); background: var(--j-card);
  border-radius: var(--j-rs); font-size: 13px; font-weight: 600; color: var(--j-text);
  cursor: pointer; padding: 0 9px; display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .15s, border-color .15s;
}
.j-pag-btn:hover { background: var(--j-bg); }
.j-pag-btn.active { background: var(--j-primary); color: white; border-color: var(--j-primary); }
.j-pag-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── Sidebar cards ── */
.j-side-card { background: var(--j-card); border: 1px solid var(--j-border); border-radius: var(--j-r); padding: 16px 18px; box-shadow: 0 1px 4px oklch(0% 0 0/.04); margin-bottom: 14px; }
.j-side-title { font-size: 14px; font-weight: 700; color: var(--j-text); margin-bottom: 11px; letter-spacing: -.1px; }
.j-how-step { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--j-border); }
.j-how-step:last-child { border-bottom: none; padding-bottom: 0; }
.j-how-step:first-child { padding-top: 0; }
.j-how-num { width: 20px; height: 20px; border-radius: 50%; background: var(--j-primary-dim); color: var(--j-primary); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.j-how-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--j-text); line-height: 1.3; }
.j-how-text small  { font-size: 12px; color: var(--j-muted); display: block; margin-top: 2px; line-height: 1.4; }

.j-side-cta {
  background: linear-gradient(140deg, oklch(56% 0.21 250), oklch(46% 0.18 270));
  color: white; border-radius: var(--j-r); padding: 18px; position: relative; overflow: hidden; margin-bottom: 14px;
}
.j-side-cta::after { content: ''; position: absolute; right: -25px; bottom: -25px; width: 110px; height: 110px; background: oklch(100% 0 0/.06); border-radius: 50%; }
.j-side-cta-title { font-size: 14px; font-weight: 700; line-height: 1.3; margin-bottom: 5px; position: relative; z-index: 1; }
.j-side-cta-sub   { font-size: 12px; color: oklch(100% 0 0/.7); line-height: 1.5; margin-bottom: 13px; position: relative; z-index: 1; }
.j-side-cta-btn   {
  display: block; width: 100%; background: white; color: var(--j-primary);
  font-family: inherit; font-size: 13px; font-weight: 700; padding: 9px 0;
  border-radius: 8px; text-align: center; cursor: pointer; border: none;
  transition: opacity .15s; position: relative; z-index: 1; text-decoration: none;
}
.j-side-cta-btn:hover { opacity: .9; color: var(--j-primary); }

.j-side-shield { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; color: var(--j-muted); line-height: 1.55; }
.j-side-shield strong { color: var(--j-text); display: block; margin-bottom: 2px; }
.j-side-shield-icon { color: var(--j-primary); flex-shrink: 0; margin-top: 1px; }


/* ── Animations ── */
@keyframes jFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes jSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* ── Responsive ── */
@media (max-width: 600px) {
  .j-vac-card { padding: 13px; }
  .j-vac-logo { width: 40px; height: 40px; font-size: 14px; }
  .j-vac-title { font-size: 14px; }
  .j-vac-salary { font-size: 13px; }

  .j-promo { flex-direction: column; align-items: flex-start; padding: 16px; gap: 12px; }
  .j-promo-title { font-size: 16px; }
  .j-promo-cta { width: 100%; padding: 12px; text-align: center; min-height: 48px; box-sizing: border-box; }

  .j-detail-card { padding: 16px 14px; }
  .j-detail-logo { width: 48px; height: 48px; font-size: 17px; }
  .j-detail-title { font-size: 18px; }
  .j-conditions { grid-template-columns: 1fr 1fr; gap: 8px; }
  .j-contact-reveal-btn { max-width: 100%; }

  .j-form-section { padding: 16px; }
  .j-form-grid { grid-template-columns: 1fr; }
  .j-form-group.span2 { grid-column: 1; }
  .j-input, .j-select, .j-textarea { font-size: 16px; }
  .j-form-actions { padding: 13px 14px; flex-direction: column; align-items: stretch; gap: 10px; }
  .j-form-actions-btns { flex-direction: column-reverse; width: 100%; }
  .j-form-actions-btns .j-btn { width: 100%; min-height: 48px; }
}
