/* Careers Page Styles
   Standardized to the Personal Checking design pattern while preserving the
   existing box layout used on this page.
*/

.careers-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px; /* align with Personal Checking page edges */
  box-sizing: border-box;
}

.careers-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.careers-left {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.careers-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.careers-photo {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Main page title standardized to Playfair Display */
.lnb-secret {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #002147;
  margin: 0 0 0.5rem;
}

.careers-box {
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.gold-header h2,
.gray-box h2,
.apply-box h2 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.gold-header h2 {
  background-color: #b8860b;
  color: #fff;
  padding: 0.5rem;
  border-radius: 6px;
}

.gray-box {
  background: #f1f1f1;
  border-left: 4px solid #b8860b;
}

.gray-box h2 {
  color: #333;
}

.apply-box h2 {
  color: #002147;
}

.apply-box a {
  color: #b8860b;
  font-weight: bold;
  text-decoration: none;
}

.apply-box a:hover {
  text-decoration: underline;
}

.apply-box a:focus {
  outline: 3px solid #ffcc00;
  outline-offset: 2px;
}

/* Explicit body typography so Careers does not rely on inherited defaults */
.careers-box p,
.careers-box li,
.eoe {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #222;
}

.careers-box ul {
  margin: 0;
  padding-left: 1.25rem;
}

.careers-box li {
  margin-bottom: 0.5rem;
}

.eoe {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
}

/* Footnotes */
.footnotes {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 1.5rem;
  line-height: 1.4;
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .careers-container {
    padding: 0 15px;
  }

  .careers-layout {
    flex-direction: column;
  }

  .lnb-secret {
    font-size: 2.6rem;
  }
}
