.jobs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 1024px) { .jobs-container { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) and (max-width: 1023px) { .jobs-container { grid-template-columns: repeat(2, 1fr); } }
.job-column { width: 100%; }
.job-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: box-shadow 0.3s;
  position: relative;
}
.job-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.job-content { padding: 1.5rem; }
.job-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #363636;
  line-height: 1.3;
}
.job-company {
  color: #4a4a4a;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.job-tag {
  padding: 0.25em 0.75em;
  border-radius: 4px;
  font-size: 0.875rem; /* ✅ УВЕЛИЧЕН до 0.875rem (одинаково с desc/company) */
  font-weight: 500;
}
.job-tag-info { 
  background: #EBF9FF; /* Industry */
  color: #000000; /* Чёрный шрифт */
} 
.job-tag-success { 
  background: #EFFAF5; /* Work Mode */
  color: #000000; /* Чёрный шрифт */
} 
.job-desc {
  margin-bottom: 1rem;
  color: #363636;
  line-height: 1.5;
  font-size: 0.875rem; /* ✅ ТОЧНО 0.875rem (одинаково с tags) */
}
.job-desc.full-desc { display: none; }  /* Full скрыто по умолчанию */
.job-id {
  color: #9b9b9b;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.job-date {
  color: #9b9b9b;
  font-size: 0.75rem;
  display: block;
}
.job-contact {
  color: #48c78e; /* Bulma has-text-success */
  font-size: 0.875rem;
  display: none;  /* Contact скрыт по умолчанию */
}
.job-footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid #dbdbdb;
  background: #f5f5f5;
}
.job-btn {
  background: none;
  border: none;
  color: #3273dc;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.job-btn:hover { background: rgba(50,115,220,0.1); }
.job-btn.success { 
  color: #48c78e; 
}
.job-btn.success:hover { 
  background: rgba(72,199,142,0.1); 
}
.bump-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #48c78e; /* Пузырь SOLID */
  font-size: 1.2rem;
  z-index: 10;
}
.notification-warning {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 4px;
  color: #856404;
  text-align: center;
}

/* Toggle classes (1 клик!) */
.job-card.details-shown .job-desc.short-desc { display: none !important; }
.job-card.details-shown .job-desc.full-desc { display: block !important; }
.job-card.contact-shown .job-contact { display: block !important; }
