/* ========================================
   Personnel Consulting Associates, Inc.
   Shared stylesheet (rebuilt from archive)
   ======================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #ffffff;
  color: #3d3d3d;
  font-size: 14px;
  line-height: 1.5;
}

a { color: #6b3434; text-decoration: underline; }
a:hover { color: #8a4848; }

.wrap {
  max-width: 826px;
  margin: 0 auto;
  background: #fff;
}

/* ========= HEADER ========= */
.header {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  padding: 18px 20px 8px;
  align-items: center;
}

.pca-logo-img {
  width: 156px;
  height: 81px;
  display: block;
}

.header-text { padding-left: 20px; }

.company-name {
  font-family: "Trajan Pro", "Cinzel", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: #6b1414;
  letter-spacing: 3px;
  line-height: 1.1;
  text-shadow: 1px 1px 0 rgba(0,0,0,.12);
}

.since {
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: #b89d6b;
  letter-spacing: 4px;
  margin-top: 6px;
  text-align: center;
}

.top-links {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 0 20px 10px;
  font-size: 14px;
}

.top-links a {
  color: #6b3434;
  font-weight: 700;
}

.top-links a::before {
  content: "▸▸";
  color: #b89d6b;
  margin-right: 6px;
  font-size: 11px;
}

/* ========= MAIN NAV ========= */
.main-nav {
  background: linear-gradient(180deg, #a4b5ae 0%, #839c95 50%, #9aada6 100%);
  border-top: 1px solid #6d847d;
  border-bottom: 1px solid #6d847d;
  display: flex;
  margin: 0 20px;
}

.main-nav a {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  font-family: Georgia, serif;
  font-size: 16px;
  font-variant: small-caps;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px rgba(0,0,0,.45);
  border-right: 1px solid rgba(255,255,255,.35);
  transition: background .15s;
}

.main-nav a:last-child { border-right: none; }
.main-nav a:hover { background: rgba(255,255,255,.18); color: #fff; text-decoration: none; }
.main-nav a.active { background: rgba(255,255,255,.20); }

/* ========= BODY ========= */
.body-grid {
  display: grid;
  grid-template-columns: 235px 1fr;
  gap: 22px;
  padding: 20px;
}

/* ========= SIDEBAR ========= */
.sidebar { font-size: 13px; }

.sidebar-box {
  display: block;
  margin-bottom: 12px;
  position: relative;
  text-decoration: none;
  border: 1px solid #d8d2c0;
  background: #fdfcf7;
  padding: 12px 16px;
  cursor: pointer;
  transition: background .15s;
}
.sidebar-box:hover { background: #f6f0e0; text-decoration: none; }

.sidebar-box-label {
  font-family: Georgia, serif;
  font-size: 12px;
  color: #6f7560;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.sidebar-box-label::after {
  content: "";
  display: inline-block;
  height: 1px;
  background: #b89d6b;
  width: 90px;
  margin-left: 8px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.sidebar-box-big {
  font-family: "Trajan Pro", "Cinzel", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #6b1414;
  letter-spacing: 2px;
  margin-top: 4px;
}

.positions-heading {
  font-family: Georgia, serif;
  font-size: 13px;
  color: #5c706b;
  border-bottom: 1px solid #b89d6b;
  padding-bottom: 4px;
  margin: 14px 0 12px;
  font-style: italic;
}

/* ========= AUTO-SCROLLING POSITIONS TICKER ========= */
.positions-scroller {
  position: relative;
  height: 159px;
  overflow: hidden;
  border: 1px solid #d8d2c0;
  background: #fdfcf7;
  padding: 0;
}

.positions-scroller::before,
.positions-scroller::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 22px;
  z-index: 2;
  pointer-events: none;
}
.positions-scroller::before {
  top: 0;
  background: linear-gradient(180deg, #fdfcf7 0%, rgba(253,252,247,0) 100%);
}
.positions-scroller::after {
  bottom: 0;
  background: linear-gradient(0deg, #fdfcf7 0%, rgba(253,252,247,0) 100%);
}

.positions-scroll-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 12px;
  animation: ticker 30s linear infinite;
}

.positions-scroller:hover .positions-scroll-track {
  animation-play-state: paused;
}

@keyframes ticker {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.positions-scroll-track a {
  display: block;
  color: #7f492e;
  font-size: 11.5px;
  padding: 8px 0;
  line-height: 1.35;
  text-decoration: underline;
  font-family: Verdana, Arial, sans-serif;
  border-bottom: 1px solid #ece5d0;
}
.positions-scroll-track a:hover { color: #6b1414; }

.sidebar-links {
  margin-top: 16px;
  border-top: 1px solid #d8d2c0;
  padding-top: 12px;
}

.sidebar-links a {
  display: block;
  color: #6b3434;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}

.sidebar-links a::before {
  content: "▸▸";
  color: #b89d6b;
  margin-right: 6px;
  font-size: 10px;
}

.contact-block {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #d8d2c0;
  font-size: 12px;
  line-height: 1.6;
  color: #3d3d3d;
}

.contact-block a { color: #6b3434; }
.contact-block .phones { font-family: Georgia, serif; margin: 8px 0; }
.contact-block .phones div { padding-left: 50px; text-indent: -50px; }
.address { margin-top: 14px; line-height: 1.5; }

/* ========= MAIN CONTENT ========= */
.main { font-size: 14px; }

.hero {
  width: 100%;
  margin-bottom: 22px;
}
.hero img { width: 100%; height: auto; display: block; }

.headtext {
  font-family: Georgia, serif;
  font-size: 15px;
  color: #5c706b;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}

.page-title {
  font-family: "Trajan Pro", "Cinzel", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #6b1414;
  letter-spacing: 3px;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d8d2c0;
}

.bodycopy, .main p {
  font-family: Georgia, serif;
  font-size: 14px;
  color: #3d3d3d;
  line-height: 1.55;
  margin-bottom: 14px;
}

.main ul {
  margin: 0 0 14px 24px;
  list-style: disc;
}

.main ul li {
  font-family: Georgia, serif;
  font-size: 14px;
  color: #3d3d3d;
  margin-bottom: 4px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* ========= TABLE FOR POSITIONS ========= */
.positions-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.positions-table th {
  text-align: left;
  background: #839c95;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 14px;
  padding: 8px 12px;
  text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}

.positions-table td {
  padding: 7px 12px;
  border-bottom: 1px solid #e3dec9;
  font-size: 13.5px;
  vertical-align: top;
}

.positions-table tr.cat td {
  background: #f6f0e0;
  font-weight: 700;
  color: #6b1414;
  font-variant: small-caps;
  letter-spacing: 1px;
  font-size: 15px;
}

.salary-note { font-size: 12px; color: #6b6555; font-style: italic; margin-top: 8px; }

/* ========= TESTIMONIAL BLOCKS ========= */
.testimonial {
  background: #fdfcf7;
  border-left: 3px solid #b89d6b;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.testimonial p { margin-bottom: 10px; font-style: italic; }

.testimonial .attrib {
  font-style: normal;
  font-weight: 700;
  color: #5c706b;
  font-size: 13px;
  margin: 0;
}

.subhead {
  font-family: "Trajan Pro", "Cinzel", Georgia, serif;
  font-size: 18px;
  color: #6b1414;
  letter-spacing: 2px;
  margin: 28px 0 14px;
  border-bottom: 1px solid #d8d2c0;
  padding-bottom: 6px;
}

/* ========= FORM ========= */
.pca-form { background: #fdfcf7; border: 1px solid #d8d2c0; padding: 22px; }
.pca-form label {
  display: block;
  font-family: Georgia, serif;
  font-size: 13px;
  color: #5c706b;
  font-weight: 700;
  margin: 12px 0 4px;
}
.pca-form input[type=text],
.pca-form input[type=email],
.pca-form input[type=file],
.pca-form input[type=password],
.pca-form select,
.pca-form textarea {
  width: 100%;
  padding: 7px 9px;
  font-family: Georgia, serif;
  font-size: 14px;
  border: 1px solid #c9c0a8;
  background: #fff;
  color: #3d3d3d;
}
.pca-form textarea { resize: vertical; min-height: 100px; }
.form-actions { margin-top: 18px; display: flex; gap: 10px; }
.btn-submit {
  background: linear-gradient(180deg, #839c95 0%, #6d847d 100%);
  color: #fff;
  border: 1px solid #5c726b;
  padding: 9px 22px;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-shadow: 1px 1px 0 rgba(0,0,0,.3);
}
.btn-submit:hover { background: linear-gradient(180deg, #95aaa3 0%, #7a918a 100%); }
.btn-reset {
  background: #f6f0e0;
  color: #6b3434;
  border: 1px solid #c9c0a8;
  padding: 9px 22px;
  font-family: Georgia, serif;
  font-size: 14px;
  cursor: pointer;
}

/* ========= FOOTER ========= */
.footer-top {
  background: linear-gradient(180deg, #a4b5ae 0%, #839c95 50%, #9aada6 100%);
  border-top: 1px solid #6d847d;
  border-bottom: 1px solid #6d847d;
  padding: 8px 20px;
  margin: 24px 20px 0;
  text-align: right;
  color: #3c4a45;
  font-size: 12px;
  font-style: italic;
}

.footer-bottom {
  padding: 14px 20px 22px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: #6b3434;
  font-weight: 700;
  text-decoration: underline;
  margin: 0 4px;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 800px) {
  .header { grid-template-columns: 1fr; text-align: center; }
  .header-text { padding-left: 0; margin-top: 12px; }
  .pca-logo-img { margin: 0 auto; }
  .top-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
  .main-nav { flex-direction: column; }
  .main-nav a { border-right: none; border-bottom: 1px solid rgba(255,255,255,.35); }
  .body-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-bottom a { display: inline-block; margin: 4px 6px; }
}
