﻿/* Careers module styles â€” extends page.css */

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.job-card {
  border: 1px solid #E6E7EB;
  border-radius: 4px;
  padding: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.job-card:hover {
  border-color: #16A34A;
  transform: translateY(-3px);
}

.job-card h3 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111318;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.job-location {
  font-size: 13px;
  color: #555;
}

.job-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: #F5EDF3;
  color: #16A34A;
  padding: 4px 10px;
  border-radius: 12px;
}

.job-description {
  white-space: pre-wrap;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}

.job-card .date {
  margin: 12px 0 0 0;
  font-size: 12px;
  color: #9AA0AC;
}

.new-listing-link {
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #16A34A;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #16A34A;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.new-listing-link:hover {
  background: #16A34A;
  color: #ffffff;
  transform: translateY(-1px);
}

.field textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid #E0E2E8;
  border-radius: 4px;
  color: #111318;
  background: #ffffff;
  transition: border-color 0.2s ease;
  min-height: 160px;
  resize: vertical;
}

.field textarea:focus {
  outline: none;
  border-color: #16A34A;
}
