/* ================================================
   NYSSFA Mid-State Chapter — Additional CSS
   Clean consolidated version
   ================================================ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ── CHAPTER COLORS ── */
:root {
  --green:      #7ab648;
  --green-dark: #5c8e30;
  --green-pale: #eef6e4;
  --blue:       #7aaecc;
  --blue-dark:  #4e8aad;
  --blue-pale:  #e6f2f8;
  --gray-dark:  #3d4f5c;
  --gray-text:  #6b7c8d;
  --gray-light: #f4f6f8;
}

/* ── BODY & FONTS ── */
body { font-family: 'Source Sans 3', sans-serif !important; color: var(--gray-dark) !important; }
h1, h2, h3, h4, h5, h6, .entry-title, .page-title { font-family: 'Lora', Georgia, serif !important; color: var(--gray-dark) !important; }

/* ── HERO HEADLINE ── */
.hero-left h1,
.hero-left h1 em,
.hero-left-overlay h1,
.hero-left-overlay h1 em {
  font-family: 'Source Sans 3', sans-serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  line-height: 1.3 !important;
  color: #7ab648 !important;
}

/* ── HERO BUTTON HOVER — solid, no glow ── */
.hero-left .btn-outline:hover {
  background: rgba(78,138,173,0.85) !important;
  border-color: #3d7a9d !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: none !important;
}
.hero-left a[style*="border-color:var(--green)"]:hover,
.hero-left a[style*="border-color:#7ab648"]:hover,
.hero-left a[style*="rgba(122,182,72"]:hover {
  background: rgba(92,142,48,0.85) !important;
  border-color: #4a7a28 !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  -webkit-box-shadow: none !important;
}

/* ── SITE HEADER / NAV ── */
.site-header, header.site-header {
  border-bottom: 3px solid var(--green) !important;
  box-shadow: 0 2px 12px rgba(74,130,165,0.12) !important;
}
.main-navigation a, .nav-menu a, .menu-primary-navigation a {
  font-family: 'Source Sans 3', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  color: var(--gray-text) !important;
  letter-spacing: 0.2px !important;
}
.main-navigation a:hover, .nav-menu a:hover, .current-menu-item > a { color: var(--green-dark) !important; }

/* ── LINKS & BUTTONS ── */
a { color: var(--blue-dark) !important; }
a:hover { color: var(--green-dark) !important; }
.wp-block-button__link, .button, input[type="submit"] {
  background: var(--green) !important;
  color: white !important;
  border-radius: 20px !important;
  font-family: 'Source Sans 3', sans-serif !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 10px 24px !important;
}
.wp-block-button__link:hover, .button:hover, input[type="submit"]:hover {
  background: var(--green-dark) !important;
  color: white !important;
}

/* ── PAGE HEADER BANNER ── */
.entry-header, .page-header {
  background: var(--blue-dark) !important;
  padding: 12px 40px 10px !important;
  margin-bottom: 0 !important;
  border-bottom: 3px solid var(--green) !important;
}
.entry-header .entry-title, .page-header .page-title,
.entry-title, h1.entry-title {
  font-family: 'Lora', Georgia, serif !important;
  color: #ffffff !important;
  font-size: clamp(16px, 2vw, 20px) !important;
  margin: 0 !important;
  padding: 0 !important;
}
.breadcrumb, .site-breadcrumb, .wp-breadcrumbs {
  font-size: 11px !important;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 6px !important;
}
.breadcrumb a, .wp-breadcrumbs a { color: rgba(255,255,255,0.55) !important; }

/* ── PAGE CONTENT ── */
.entry-content, .page-content, .wp-block-post-content {
  font-family: 'Source Sans 3', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: var(--gray-text) !important;
  background: #ffffff !important;
  padding: 32px 40px !important;
  margin: 0 !important;
  max-width: 860px !important;
}
.entry-content h2, .page-content h2 {
  font-family: 'Lora', serif !important;
  color: var(--gray-dark) !important;
  border-bottom: 2px solid var(--green-pale) !important;
  padding-bottom: 10px !important;
  margin: 28px 0 16px !important;
}
.entry-content h3, .page-content h3 {
  font-family: 'Lora', serif !important;
  color: var(--blue-dark) !important;
  font-size: 17px !important;
  margin: 24px 0 8px !important;
}
.entry-content p, .page-content p {
  color: var(--gray-text) !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  margin-bottom: 12px !important;
}
.entry-content img, .page-content img {
  border-radius: 6px !important;
  margin: 12px 0 !important;
  max-width: 100% !important;
}

/* ── NEWS CARDS ── */
.news-cards-wrap { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.news-card { background: #ffffff; border-radius: 8px; border: 1px solid rgba(122,174,204,0.2); border-left: 4px solid #7ab648; padding: 22px 24px; transition: box-shadow 0.18s, transform 0.18s; }
.news-card:hover { box-shadow: 0 6px 20px rgba(74,130,165,0.12); transform: translateY(-2px); }
.news-card-date { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #4e8aad; margin-bottom: 6px; }
.news-card-title { font-family: 'Lora', Georgia, serif; font-size: 18px; color: #3d4f5c; margin-bottom: 10px; font-weight: 600; }
.news-card-body { font-size: 14px; color: #6b7c8d; line-height: 1.8; margin-bottom: 12px; }
.news-card-img { width: 100%; border-radius: 6px; margin: 12px 0; }
.news-card-link { display: inline-block; font-size: 13px; font-weight: 700; color: #5c8e30 !important; text-decoration: none !important; }
.news-card-link:hover { color: #4e8aad !important; }

/* ── TABLE STYLES ── */
.entry-content table, .page-content table {
  width: 100% !important;
  border-collapse: collapse !important;
  background: white !important;
  font-size: 13px !important;
  box-shadow: 0 2px 16px rgba(74,130,165,0.1) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  margin-bottom: 24px !important;
}
.entry-content table thead th {
  background: var(--blue-dark) !important;
  color: white !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  padding: 13px 16px !important;
  text-align: left !important;
  border: none !important;
}
.entry-content table td {
  padding: 14px 16px !important;
  vertical-align: top !important;
  border: none !important;
  border-bottom: 1px solid rgba(122,174,204,0.15) !important;
  line-height: 1.7 !important;
  color: var(--gray-text) !important;
}
.entry-content table tr:last-child td { border-bottom: none !important; }
.entry-content table tr:hover td { background: var(--blue-pale) !important; }
.entry-content table td strong, .entry-content table td b {
  color: var(--green-dark) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  display: block !important;
  margin-bottom: 2px !important;
}
.entry-content table td a { color: var(--blue-dark) !important; font-size: 12px !important; text-decoration: none !important; }
.entry-content table td a:hover { color: var(--green-dark) !important; text-decoration: underline !important; }

/* ── MEMBER DISTRICTS TABLE ── */
.districts-table-wrap { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(74,130,165,0.12); margin-bottom: 20px; }
.districts-table { width: 100%; border-collapse: collapse; background: white; font-size: 13px; }
.districts-table thead tr { background: #4e8aad; }
.districts-table thead th { color: white; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 14px 18px; text-align: left; border: none; }
.districts-table thead th + th { border-left: 1px solid rgba(255,255,255,0.15); }
.districts-table tbody tr:nth-child(even) { background: #f7fbff; }
.districts-table tbody tr:nth-child(odd)  { background: #ffffff; }
.districts-table tbody tr { transition: background 0.15s; }
.districts-table tbody tr:hover { background: #e6f2f8 !important; }
.districts-table tbody td { padding: 13px 18px; vertical-align: middle; border: none; border-right: 1px solid rgba(122,174,204,0.1); line-height: 1.5; }
.districts-table tbody td:last-child { border-right: none; }
.districts-table tbody tr.group-start td { border-top: 2px solid rgba(122,174,204,0.2); }
.districts-table tbody td.district-cell { border-left: 4px solid #7ab648; font-weight: 700; color: #5c8e30; vertical-align: middle; background: #eef6e4 !important; }
.districts-table tbody tr:hover td.district-cell { border-left-color: #4e8aad; color: #4e8aad; background: #e6f2f8 !important; }
.districts-table tbody td.name-cell  { font-weight: 600; color: #3d4f5c; }
.districts-table tbody td.title-cell { color: #4e8aad; font-size: 12px; font-weight: 600; }
.districts-table tbody td.email-cell a { color: #4e8aad; text-decoration: none; font-size: 12px; }
.districts-table tbody td.email-cell a:hover { color: #5c8e30; text-decoration: underline; }
.districts-table tbody td.phone-cell { color: #6b7c8d; font-size: 12px; white-space: nowrap; }
@media (max-width: 768px) { .districts-table-wrap { overflow-x: auto; } .districts-table { min-width: 600px; } }

/* ── CHAPTER LEADERSHIP CARDS ── */
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0 0 24px; }
.leader-card { background: #ffffff; border-radius: 8px; border: 1px solid rgba(122,174,204,0.2); padding: 22px; transition: all 0.18s; }
.leader-card:hover { box-shadow: 0 6px 20px rgba(74,130,165,0.12); transform: translateY(-2px); border-color: #7ab648; }
.leader-avatar { width: 52px; height: 52px; border-radius: 50%; background: #4e8aad; display: flex; align-items: center; justify-content: center; color: white !important; font-weight: 700; font-size: 18px; margin-bottom: 14px; border: 3px solid #7ab648; font-family: Georgia, serif; }
.leader-role { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 4px 10px; border-radius: 20px; margin-bottom: 12px; }
.role-green { background: #eef6e4 !important; color: #5c8e30 !important; }
.role-blue  { background: #e6f2f8 !important; color: #4e8aad !important; }
.leader-name { font-weight: 700; font-size: 16px; color: #3d4f5c; margin-bottom: 2px; }
.leader-job-title { font-size: 11px; font-weight: 600; color: #4e8aad; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 4px; }
.leader-divider { width: 32px; height: 3px; background: #7ab648; border-radius: 2px; margin: 8px 0; }
.leader-district { font-size: 13px; color: #6b7c8d; }
.leader-email { font-size: 12px !important; color: #4e8aad !important; margin-top: 6px; display: block; text-decoration: none !important; }
.leader-email:hover { color: #5c8e30 !important; text-decoration: underline !important; }
.leadership-note { background: #eef6e4; border: 1px solid rgba(122,182,72,0.25); border-radius: 8px; padding: 14px 18px; font-size: 13px; color: #6b7c8d; }
@media (max-width: 768px) { .leadership-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .leadership-grid { grid-template-columns: 1fr; } }

/* ── PAGE SIDEBAR ── */
.page-with-sidebar-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.page-main-content { min-width: 0; }
.page-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sidebar-card { background: white; border: 1px solid rgba(122,174,204,0.2); border-radius: 8px; padding: 20px; }
.sidebar-card-green { background: #eef6e4; border-color: rgba(122,182,72,0.3); }
.sidebar-card-title { font-family: 'Lora', Georgia, serif !important; font-size: 15px !important; color: #3d4f5c !important; margin: 0 0 12px !important; padding-bottom: 10px !important; border-bottom: 2px solid #7ab648 !important; }
.sidebar-links { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.sidebar-links li { border-bottom: 1px solid rgba(122,174,204,0.15) !important; padding: 8px 0 !important; }
.sidebar-links li:last-child { border-bottom: none !important; }
.sidebar-links a { color: #6b7c8d !important; font-size: 13px !important; text-decoration: none !important; }
.sidebar-links a:hover { color: #5c8e30 !important; }
.sidebar-text { font-size: 13px !important; color: #6b7c8d !important; line-height: 1.65 !important; margin-bottom: 12px !important; }
.sidebar-btn { display: block !important; background: #4e8aad !important; color: white !important; text-align: center !important; padding: 9px 16px !important; border-radius: 20px !important; font-size: 13px !important; font-weight: 700 !important; text-decoration: none !important; margin-top: 12px; }
.sidebar-btn:hover { background: #3d7a9d !important; color: white !important; }
.sidebar-btn-green { background: #7ab648 !important; }
.sidebar-btn-green:hover { background: #5c8e30 !important; }
.sidebar-event { padding: 10px 0; border-bottom: 1px solid rgba(122,174,204,0.15); }
.sidebar-event:last-of-type { border-bottom: none; }
.sidebar-event-date { font-size: 11px; font-weight: 700; color: #4e8aad; text-transform: uppercase; letter-spacing: 0.8px; }
.sidebar-event-title { font-size: 13px; font-weight: 600; color: #3d4f5c; margin: 2px 0; }
.sidebar-event-time { font-size: 12px; color: #6b7c8d; }
@media (max-width: 768px) { .page-with-sidebar-layout { grid-template-columns: 1fr !important; } }

/* ── HIDE SHARE/LIKE WIDGETS ── */
.sharedaddy, .sd-sharing, .sd-like-enabled, .sd-block.sd-like,
.jetpack-likes-widget-wrapper, .likes-master, .share-end,
div[id*="likes-master"], div[class*="sharedaddy"],
.post-likes-widget, .jp-relatedposts { display: none !important; }

/* ── FOOTER ── */
.site-footer, footer.site-footer { background: #3d4f5c !important; color: rgba(255,255,255,0.6) !important; }
.site-footer a, footer.site-footer a { color: rgba(255,255,255,0.6) !important; }
.site-footer a:hover, footer.site-footer a:hover { color: white !important; }
.site-footer h4, .site-footer .widget-title, footer.site-footer h4 {
  color: #a8d070 !important; font-size: 10px !important;
  letter-spacing: 1.5px !important; text-transform: uppercase !important; border-bottom: none !important;
}

/* ── EVENTS CALENDAR ── */
.tribe-events-calendar th, .tribe-events .tribe-events-c-calendar__header-cell { background: #4e8aad !important; color: white !important; }
.tribe-events-calendar td a, .tribe-events .tribe-event__title a { color: #4e8aad !important; }
.tribe-events-calendar td a:hover { color: #5c8e30 !important; }
.tribe-events-nav-previous a, .tribe-events-nav-next a { color: #5c8e30 !important; font-weight: 700 !important; }
.tribe-events-list article { border-bottom: 1px solid rgba(122,174,204,0.15) !important; padding-bottom: 20px !important; margin-bottom: 20px !important; }
.tribe-events-list .tribe-event-title a { font-family: 'Lora', serif !important; color: #3d4f5c !important; font-size: 18px !important; }
.tribe-events-list .tribe-event-title a:hover { color: #5c8e30 !important; }

/* ── HYBRID MEETINGS PAGE ── */
.next-meeting-hero { background: linear-gradient(135deg, #2d5a45 0%, #3d6b8a 100%); border-radius: 10px; padding: 28px 32px; margin-bottom: 16px; }
.next-meeting-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #a8d070; margin-bottom: 12px; }
.next-meeting-inner { display: grid; grid-template-columns: 90px 1fr; gap: 24px; align-items: center; }
.next-meeting-datebox { background: rgba(255,255,255,0.15); border-radius: 8px; padding: 14px; text-align: center; }
.next-meeting-month { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #a8d070; }
.next-meeting-day { font-family: 'Lora', Georgia, serif; font-size: 48px; color: #ffffff; line-height: 1; }
.next-meeting-year { font-size: 11px; color: rgba(255,255,255,0.6); }
.next-meeting-title { font-family: 'Lora', Georgia, serif; font-size: 24px; color: #ffffff; font-weight: 600; margin-bottom: 8px; }
.next-meeting-meta { margin-bottom: 8px; }
.next-meeting-meta span { font-size: 13px; color: rgba(255,255,255,0.75); margin-right: 20px; }
.next-meeting-desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.75; }
.upcoming-meetings-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.upcoming-meeting-card { background: white; border-radius: 8px; border: 1px solid rgba(122,174,204,0.2); border-top: 3px solid #4e8aad; padding: 14px 16px; display: flex; gap: 14px; align-items: center; }
.upcoming-meeting-card-special { border-top-color: #7ab648; }
.upcoming-date-badge { background: #e6f2f8; border-radius: 6px; padding: 6px 10px; text-align: center; min-width: 44px; }
.upcoming-date-badge-special { background: #eef6e4; }
.upcoming-month { font-size: 10px; font-weight: 700; text-transform: uppercase; color: #4e8aad; letter-spacing: 1px; }
.upcoming-date-badge-special .upcoming-month { color: #5c8e30; }
.upcoming-day { font-family: 'Lora', Georgia, serif; font-size: 24px; color: #4e8aad; line-height: 1; }
.upcoming-date-badge-special .upcoming-day { color: #5c8e30; }
.upcoming-title { font-size: 13px; font-weight: 700; color: #3d4f5c; margin-bottom: 2px; }
.upcoming-time { font-size: 12px; color: #6b7c8d; }
.meetings-note { background: #eef6e4; border: 1px solid rgba(122,182,72,0.25); border-radius: 8px; padding: 14px 18px; font-size: 13px; color: #6b7c8d; line-height: 1.7; }
.meetings-note a { color: #5c8e30 !important; font-weight: 600; }
@media (max-width: 768px) { .next-meeting-inner { grid-template-columns: 1fr !important; } .upcoming-meetings-strip { grid-template-columns: 1fr !important; } }

/* ── JOB BANK CARDS ── */
.job-search-bar { display: flex; gap: 10px; margin-bottom: 24px; align-items: center; flex-wrap: wrap; }
.job-search-bar input { flex: 1; min-width: 180px; padding: 9px 16px; border: 1px solid rgba(122,174,204,0.3); border-radius: 20px; font-size: 13px; }
.job-search-bar select { padding: 9px 16px; border: 1px solid rgba(122,174,204,0.3); border-radius: 20px; font-size: 13px; color: #6b7c8d; }
#jobs-container { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 24px; }
.job-card { background: white; border-radius: 8px; border: 1px solid rgba(122,174,204,0.2); border-top: 3px solid #4e8aad; padding: 20px; display: flex; flex-direction: column; gap: 8px; transition: box-shadow 0.18s, transform 0.18s; }
.job-card:hover { box-shadow: 0 6px 20px rgba(74,130,165,0.12); transform: translateY(-2px); }
.job-card-header { display: flex; justify-content: space-between; align-items: center; }
.job-card-pill { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 3px 10px; border-radius: 20px; }
.job-card-title { font-family: 'Lora', Georgia, serif; font-size: 16px; font-weight: 600; color: #3d4f5c; line-height: 1.3; text-decoration: none; }
.job-card-title:hover { color: #5c8e30; }
.job-card-district { font-size: 13px; font-weight: 600; color: #4e8aad; }
.job-card-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.job-card-meta span { font-size: 12px; color: #6b7c8d; }
.job-card-excerpt { font-size: 13px; color: #6b7c8d; line-height: 1.7; flex: 1; }
.job-card-footer { padding-top: 12px; border-top: 1px solid rgba(122,174,204,0.15); }
.job-card-detail { font-size: 13px; color: #4e8aad; font-weight: 600; text-decoration: none; }
.job-card-detail:hover { color: #5c8e30; }
.job-empty { text-align: center; padding: 48px 24px; background: #f4f6f8; border-radius: 8px; }
.job-empty-icon { font-size: 36px; margin-bottom: 12px; }
.job-empty-title { font-family: 'Lora', serif; font-size: 18px; color: #3d4f5c; margin-bottom: 8px; }
.job-empty-text { font-size: 14px; color: #6b7c8d; }
@media (max-width: 768px) { #jobs-container { grid-template-columns: 1fr !important; } }

/* ── MISC ── */
blockquote { border-left: 4px solid var(--green) !important; background: var(--green-pale) !important; padding: 14px 20px !important; border-radius: 0 8px 8px 0 !important; color: var(--gray-dark) !important; font-style: italic !important; margin: 20px 0 !important; }
article.post { border-bottom: 1px solid rgba(122,174,204,0.15) !important; padding-bottom: 28px !important; margin-bottom: 28px !important; }
.post .entry-title a { color: var(--gray-dark) !important; }
.post .entry-title a:hover { color: var(--green-dark) !important; }
.page-numbers { border: 1px solid rgba(122,174,204,0.3) !important; border-radius: 4px !important; padding: 6px 12px !important; color: var(--gray-text) !important; font-size: 13px !important; }
.page-numbers.current, .page-numbers:hover { background: var(--green) !important; color: white !important; border-color: var(--green) !important; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .entry-header, .page-header { padding: 10px 20px 8px !important; }
  .entry-content, .page-content { padding: 24px 20px !important; }
  .entry-content table { display: block !important; overflow-x: auto !important; }
  h1, .entry-title { font-size: 26px !important; }
  h2 { font-size: 20px !important; }
}

/* ── HOMEPAGE BUTTONS ── */
.btn-meetings { border-color: #7ab648 !important; background: rgba(122,182,72,0.15) !important; color: #5c8e30 !important; transition: background 0.18s !important; }
.btn-meetings:hover { background: #5c8e30 !important; border-color: #5c8e30 !important; color: #ffffff !important; box-shadow: none !important; }
.btn-news { background: #4e8aad !important; color: #ffffff !important; border: none !important; border-radius: 20px !important; padding: 10px 24px !important; font-size: 13px !important; font-weight: 700 !important; text-decoration: none !important; display: inline-flex !important; align-items: center !important; transition: background 0.18s !important; }
.btn-news:hover { background: #3d7a9d !important; color: #ffffff !important; box-shadow: none !important; }

/* ── OUR MEMBER DISTRICTS BUTTON — no glow ever ── */
.btn-hero-green { background: rgba(122,182,72,0.5) !important; color: #ffffff !important; border: 2px solid #7ab648 !important; border-radius: 20px !important; padding: 11px 24px !important; font-size: 13px !important; font-weight: 700 !important; text-decoration: none !important; display: inline-flex !important; align-items: center !important; transition: background 0.18s !important; box-shadow: none !important; filter: none !important; }
.btn-hero-green:hover, .btn-hero-green:focus, .btn-hero-green:active { background: rgba(92,142,48,0.85) !important; border-color: #4a7a28 !important; color: #ffffff !important; box-shadow: none !important; -webkit-box-shadow: none !important; filter: none !important; text-shadow: none !important; transform: translateY(-1px) !important; }

/* ── JOB SUBMISSION FORM ── */
.job-submit-intro { background: #e6f2f8; border-left: 4px solid #4e8aad; border-radius: 0 8px 8px 0; padding: 14px 18px; font-size: 14px; color: #3d4f5c; margin-bottom: 24px; }
.job-submit-success { background: #eef6e4; border: 1px solid rgba(122,182,72,0.3); border-radius: 10px; padding: 40px; text-align: center; }
.job-submit-errors { background: #fcebeb; border: 1px solid #f09595; border-radius: 8px; padding: 14px 18px; margin-bottom: 20px; font-size: 13px; color: #a32d2d; }
.job-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; }
.job-form-full { grid-column: 1 / -1; }
.job-form-field label { display: block; font-size: 13px; font-weight: 600; color: #3d4f5c; margin-bottom: 6px; }
.job-form-field .req { color: #e24b4a; }
.job-form-field input, .job-form-field select, .job-form-field textarea { width: 100%; padding: 10px 14px; border: 1px solid rgba(122,174,204,0.4); border-radius: 8px; font-size: 13px; color: #3d4f5c; background: white; box-sizing: border-box; }
.job-form-field input:focus, .job-form-field select:focus, .job-form-field textarea:focus { outline: none; border-color: #4e8aad; box-shadow: 0 0 0 3px rgba(78,138,173,0.1); }
.job-form-field textarea { resize: vertical; min-height: 120px; }
.job-form-actions { display: flex; gap: 12px; align-items: center; padding-top: 8px; }
@media (max-width: 768px) { .job-form-grid { grid-template-columns: 1fr; } }