/**
 * Styles for Employer Information display (from Urząd Pracy)
 */

.employer-info {
  padding: 15px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  margin: 10px 0;
}

.employer-info__item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.employer-info__item:last-child {
  margin-bottom: 0;
}

.employer-info__item strong {
  color: #333;
  font-weight: 600;
}

.employer-info__contact {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #dee2e6;
}

.employer-info__contact-details {
  margin-top: 8px;
  padding-left: 15px;
}

.employer-info__contact-item {
  margin-bottom: 6px;
  line-height: 1.5;
}

.employer-info__contact-item:last-child {
  margin-bottom: 0;
}

.employer-info__label {
  color: #666;
  font-weight: 500;
  min-width: 80px;
  display: inline-block;
}

.employer-info a {
  color: #0066cc;
  text-decoration: none;
}

.employer-info a:hover {
  text-decoration: underline;
  color: #0052a3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .employer-info {
    padding: 12px;
  }

  .employer-info__contact-details {
    padding-left: 10px;
  }

  .employer-info__label {
    min-width: auto;
    display: block;
    margin-bottom: 2px;
  }
}
