/*==============================
    CAREERS STYLE SHEET
 ===============================*/


/* Layout & Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Badge */
.badge {
  display: inline-block;
  background-color: #e0f2f1;
  color: #00796b;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* 2-Column Grid for Highlights */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .grid-2-col {
    grid-template-columns: 1fr; /* Stack vertically on phones */
  }
}

/* Card Styling */
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.highlight-card ul, .requirements-card ul {
  padding-left: 20px;
  line-height: 1.6;
}

.highlight-card li {
  margin-bottom: 10px;
}

.benefit-list {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0;
    margin-top: 2rem;
}

.benefit-list li {
    display: block !important;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-list li::before {
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


.benefit-sun::before  { content: "\26C5"; }
.benefit-golf::after { content: "\26F3"; }
.benefit-bolt::before { content: "\26A1"; }
.odmd-mail::before { content: "\2728"; }

/* Form Container & Layout */
.form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #334155;
}

/* Modern Input Fields */
.input-group input {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box; /* Prevents overflow */
}

.input-group input:focus {
  border-color: #0d9488; /* Matches your teal theme */
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

/* Submit an Email to HR */
.contact-card {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #cbd5e1;
}

.contact-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-large {
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.subtext {
  font-size: 0.85rem;
  color: #64748b;
  max-width: 450px;
}

/* Submit Button */
.btn-primary {
  background-color: #0d9488; /* Your primary teal */
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-bottom: 5px;
  align-self: center;
}

.btn-primary:hover {
  background-color: #0f766e;
}

/* Styled Divider */
.section-divider {
  border: 0;
  height: 1px;
  background: #e2e8f0;
  margin: 40px 0;
}

/* Secondary Jobs Card */
.secondary-jobs-card h2 {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 6px;
}

.section-subtext {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Job List Row Items */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.job-list-item:hover {
  background-color: #ffffff;
  border-color: #0d9488;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.08);
  transform: translateY(-1px);
}

.job-title {
  display: block;
  font-weight: 600;
  color: #0f172a;
  font-size: 1rem;
}

.job-meta {
  font-size: 0.85rem;
  color: #64748b;
}

.job-arrow {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0d9488; /* Matches teal accent */
}

.vacancy-link, 
a.vacancy-link {
  color: #0d9488;            /* Inherits text color from parent (or set to #0f172a / #334155) */
  text-decoration: none;     /* Removes the blue underline */
  font-weight: 500;          /* Keeps it readable */
  transition: color 0.2s ease;
}

/* Optional hover state to give subtle visual feedback */
.vacancy-link:hover {
  color: #0f172a;            /* Subtle shift to your clinic teal on hover */
  text-decoration: none;     /* Ensures underline stays off on hover */
}

.vacancy-link::before {content: " Or search our: "; color: #0f172a;}