:root {
    --sky: #eaf6fc;
    --red: #f20d0d;
    --green: #126d33;
    --green-dark: #0a4b25;
    --section-red: #e23636;
    --link: #079d4d;
    --blue: #10289a;
    --text: #18202b;
    font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--sky); color: var(--text); font-size: 14px; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.icon { width: 17px; height: 17px; display: inline-block; vertical-align: middle; }
.portal-shell { width: min(1080px, 100%); margin: 0 auto; background: #f4fbff; box-shadow: 0 0 28px rgba(42, 86, 112, .15); }

.portal-header { min-height: 153px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 34px 21px; background: var(--red); color: #fff; text-align: center; }
.portal-header__title { flex: 1; }
.portal-header__title h1 { margin: 0; font-size: 36px; letter-spacing: .045em; line-height: 1; }
.portal-header__title strong { display: block; margin-top: 4px; font-size: 17px; }
.portal-header__title span { display: block; margin-top: 20px; font-weight: 700; font-size: 14px; }
.portal-header__brand { display: flex; align-items: center; gap: 8px; text-align: left; color: #071c70; }
.portal-header__brand--right { text-align: right; flex-direction: row-reverse; }
.portal-header__brand > div:last-child { display: flex; flex-direction: column; }
.portal-header__brand strong { font-size: 16px; letter-spacing: -.04em; }
.portal-header__brand small { margin-top: 3px; color: #ad1b1b; font-size: 8px; font-weight: 800; }
.site-logo { position: relative; display: grid; place-items: center; width: 47px; height: 47px; border-radius: 16px 16px 16px 4px; background: #ffcb31; box-shadow: 3px 3px 0 #be1b1b; }
.site-logo .icon { width: 28px; height: 28px; }
.site-logo small { position: absolute; bottom: 3px; font-size: 7px; font-weight: 900; }

.portal-nav { background: var(--green); color: #fff; }
.portal-nav__links { display: flex; }
.portal-nav__links a { display: inline-flex; align-items: center; gap: 3px; border-right: 1px solid #398455; padding: 13px 12px; font-size: 13px; }
.portal-nav__links a:hover { background: var(--green-dark); }
.portal-nav__links .icon { width: 13px; }
.portal-nav__toggle { display: none; width: 100%; border: 0; background: transparent; color: #fff; padding: 12px 16px; text-align: left; font-weight: 800; }

.portal-tools { padding: 11px 20px 10px; text-align: center; }
.promo-pill { display: inline-block; margin: 0 auto 10px; padding: 10px 25px; border: 1px solid #9a008f; border-radius: 999px; background: #5c0786; color: white; font-size: 11px; font-weight: 800; letter-spacing: .03em; box-shadow: 0 4px 12px rgba(93, 7, 134, .25); }
.search-row { display: flex; align-items: center; justify-content: center; gap: 20px; }
.live-badge { display: inline-flex; align-items: center; border: 3px solid #111; border-radius: 999px; padding: 3px 13px; color: #111; font-size: 15px; font-weight: 900; letter-spacing: .16em; }
.portal-search { display: flex; width: min(500px, 100%); align-items: center; }
.portal-search > span { display: flex; align-items: center; border: 1px solid #b9c6d0; border-right: 0; border-radius: 999px 0 0 999px; background: #fff; padding: 0 0 0 12px; color: #6c7a86; }
.portal-search input { min-width: 0; flex: 1; border: 1px solid #b9c6d0; border-left: 0; border-right: 0; outline: 0; padding: 11px 9px; background: #fff; color: #26313b; }
.portal-search button { border: 0; border-radius: 0 999px 999px 0; padding: 11px 16px; background: #10a84d; color: #fff; font-weight: 900; cursor: pointer; }
.portal-search button:hover { background: #07813a; }

.ticker { display: flex; align-items: stretch; margin: 0 17px 8px; overflow: hidden; background: var(--green); color: #ffdf00; }
.ticker strong { display: flex; width: 145px; flex: 0 0 145px; align-items: center; padding: 11px 13px; border-radius: 0 55px 55px 0; background: #a71919; color: #fff; font-size: 18px; line-height: 1.12; }
.ticker-track { display: flex; align-items: center; flex: 1; min-width: 0; overflow: hidden; }
.ticker-track span { flex: 0 0 auto; padding: 10px 24px; font-size: 15px; font-weight: 700; white-space: nowrap; animation: ticker-scroll 22s linear infinite; }
.ticker:hover .ticker-track span { animation-play-state: paused; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.ticker--second .ticker-track span { color: #00fff0; }

.job-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 4px 17px 18px; }
.job-card { min-height: 105px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 12px 10px; color: #fff; text-align: center; transition: transform .2s, box-shadow .2s; }
.job-card:hover { transform: translateY(-3px); box-shadow: 0 7px 13px rgba(0,0,0,.18); }
.job-card strong { font-size: 14px; line-height: 1.35; }.job-card span { margin-top: 7px; font-size: 11px; font-weight: 700; }.job-card small { margin-top: 4px; font-size: 10px; }
.job-card--teal { background: #168d91; }.job-card--plum { background: #5b075d; }.job-card--navy { background: #0b0a69; }.job-card--violet { background: #7c3abd; }.job-card--brown { background: #9a4c08; }.job-card--maroon { background: #62002d; }.job-card--royal { background: #1949ce; }.job-card--orange { background: #f08a00; }
.no-results { grid-column: 1 / -1; padding: 35px; background: white; color: #687582; text-align: center; font-weight: 700; }

.list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0 17px 20px; }
.list-grid--two { grid-template-columns: repeat(2, 1fr); }
.list-box, .resources-box { overflow: hidden; border: 2px solid var(--section-red); background: #fff; }
.list-box h2, .resources-box h2 { display: flex; align-items: center; justify-content: space-between; margin: 0; padding: 8px 12px; background: #17732d; color: #fff; font-size: 17px; }
.list-box h2 .icon, .resources-box h2 .icon { width: 15px; }
.list-box ul { margin: 0; padding: 2px 11px 0; list-style: none; }
.list-box li { padding: 10px 2px; border-bottom: 1px solid #e9eef0; }
.list-box li:last-child { border-bottom: 0; }
.list-box li a { display: block; color: var(--link); font-size: 13px; font-weight: 700; line-height: 1.45; }.list-box li a:hover, .view-all:hover { text-decoration: underline; }
.list-box li small { display: block; margin-top: 4px; color: #ff159c; font-size: 10px; font-weight: 700; }.list-box li em { display: block; margin-top: 2px; color: #77818e; font-size: 10px; font-style: normal; }
.view-all { display: inline-block; margin: 10px 12px 13px; color: var(--blue); font-size: 12px; font-weight: 900; }

.resources-box { margin: 0 17px 20px; }.resources-box > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; padding: 12px; }.resources-box a { border: 1px solid #dce8df; background: #f8fff9; padding: 10px 8px; color: var(--link); font-size: 12px; font-weight: 700; }.resources-box a:hover { background: #e8f8eb; text-decoration: underline; }
.trust-box { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 0 17px 20px; padding: 16px 18px; background: #fffdf0; }.trust-box strong { display: flex; align-items: center; gap: 6px; color: #a51818; font-size: 12px; }.trust-box p { margin: 7px 0 0; color: #55616b; font-size: 13px; font-weight: 700; }.trust-box a { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; padding: 11px 14px; background: #0e7b3a; color: #fff; font-size: 12px; font-weight: 900; }
.portal-footer { padding: 24px 17px 16px; background: var(--green); color: #fff; text-align: center; }.portal-footer__brand { display: inline-flex; align-items: center; gap: 9px; font-size: 18px; font-weight: 900; }.portal-footer .site-logo { width: 37px; height: 37px; }.portal-footer .site-logo .icon { width: 22px; height: 22px; }.portal-footer p { max-width: 680px; margin: 11px auto; color: #d4f2dd; font-size: 11px; line-height: 1.6; }.portal-footer__bottom { padding-top: 12px; border-top: 1px solid #55a06c; color: #c4e5cc; font-size: 10px; font-weight: 700; }

@media (max-width: 780px) {
    .portal-header { min-height: 130px; padding: 13px 18px 17px; }.portal-header__brand { transform: scale(.82); }.portal-header__title h1 { font-size: 27px; }.portal-header__title strong { font-size: 12px; }.portal-header__title span { margin-top: 12px; font-size: 10px; }.portal-nav__links a { padding: 11px 8px; font-size: 11px; }.list-grid { grid-template-columns: 1fr; }.list-grid--two { grid-template-columns: 1fr; }.resources-box > div { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .portal-header { justify-content: center; }.portal-header__brand { display: none; }.portal-header__title h1 { font-size: 27px; }.portal-header__title strong { font-size: 12px; }.portal-header__title span { font-size: 10px; }
    .portal-nav__toggle { display: flex; align-items: center; gap: 8px; }.portal-nav__links { display: none; flex-direction: column; }.portal-nav__links.is-open { display: flex; }.portal-nav__links a { border-bottom: 1px solid #398455; border-right: 0; padding: 12px 16px; }
    .portal-tools { padding: 10px 12px; }.promo-pill { padding: 8px 14px; font-size: 10px; }.search-row { gap: 0; }.live-badge { display: none; }.portal-search { max-width: 100%; }.ticker { margin-right: 12px; margin-left: 12px; }.ticker strong { width: 102px; flex-basis: 102px; font-size: 14px; }.ticker-track span { padding: 9px 12px; font-size: 12px; animation-duration: 16s; }.job-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; padding-right: 12px; padding-left: 12px; }.job-card { min-height: 128px; }.job-card strong { font-size: 12px; }.job-card small, .job-card span { font-size: 9px; }.list-grid { padding-right: 12px; padding-left: 12px; }.resources-box, .trust-box { margin-right: 12px; margin-left: 12px; }.trust-box { flex-direction: column; align-items: flex-start; }.trust-box a { width: 100%; justify-content: center; }
}

.simple-header { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:20px 28px; background:#fff; border-bottom:1px solid #d9e7ee; }
.simple-brand { display:flex; align-items:center; gap:10px; color:#123b62; }.simple-brand strong { display:block; font-size:22px; }.simple-brand small { display:block; margin-top:3px; color:#708293; font-size:10px; font-weight:700; }
.simple-brand .site-logo { width:42px; height:42px; background:#ffcb31; box-shadow:3px 3px 0 #d94735; }.simple-brand .site-logo small { position:absolute; bottom:2px; color:#17233d; font-size:7px; }
.simple-search { display:flex; max-width:380px; flex:1; }.simple-search input { min-width:0; flex:1; padding:11px 13px; border:1px solid #cad8df; border-right:0; border-radius:8px 0 0 8px; outline:0; }.simple-search button { display:grid; place-items:center; width:46px; border:0; border-radius:0 8px 8px 0; background:#126d33; color:#fff; cursor:pointer; }.simple-search .icon { width:17px; }
.simple-nav { display:flex; gap:2px; overflow:auto; padding:0 28px; background:#126d33; color:#fff; }.simple-nav a { padding:13px 15px; white-space:nowrap; font-size:12px; font-weight:800; }.simple-nav a:hover { background:#0a4b25; }
.public-page { min-height:520px; padding:28px; background:#f4fbff; }.page-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:22px; }.eyebrow { color:#d94735; font-size:10px; font-weight:900; letter-spacing:.14em; }.page-heading h1 { margin:7px 0 4px; color:#123b62; font-size:31px; letter-spacing:-.04em; }.page-heading p { margin:0; color:#6c7d8b; }.button-link { display:inline-flex; padding:10px 13px; border:1px solid #b8ccd6; border-radius:7px; background:#fff; color:#1c5d87; font-size:12px; font-weight:800; }
.listing-toolbar { display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:14px; color:#748493; font-size:11px; font-weight:700; }.listing-toolbar form { display:flex; gap:7px; flex:1; }.listing-toolbar input { min-width:0; width:30%; padding:10px; border:1px solid #cad8df; border-radius:7px; }.listing-toolbar button { border:0; border-radius:7px; padding:10px 14px; background:#102650; color:#fff; font-weight:800; cursor:pointer; }
.post-list { display:grid; gap:11px; }.post-card { display:flex; justify-content:space-between; gap:18px; padding:18px; border:1px solid #d9e7ee; border-left:4px solid #126d33; border-radius:8px; background:#fff; }.post-category { color:#d94735; font-size:10px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }.post-card h2 { margin:6px 0; color:#126d33; font-size:17px; }.post-card h2 a:hover { text-decoration:underline; }.post-card p { max-width:720px; margin:0 0 8px; color:#687987; line-height:1.55; }.post-card small { color:#8a98a6; font-size:11px; }.read-more { display:flex; align-items:center; align-self:center; gap:5px; white-space:nowrap; color:#1c5d87; font-size:11px; font-weight:900; }.read-more .icon { width:14px; }.empty-public { display:grid; gap:9px; place-items:center; padding:60px 20px; border:1px dashed #bbced8; background:#fff; color:#748493; text-align:center; }.empty-public strong { color:#123b62; font-size:17px; }.empty-public .button-link { margin-top:8px; }
.post-detail { max-width:820px; margin:0 auto; }.breadcrumbs { margin-bottom:18px; color:#78909e; font-size:11px; }.breadcrumbs a { color:#1c6a90; }.post-detail > h1 { margin:8px 0; color:#123b62; font-size:34px; line-height:1.15; }.post-meta { margin:0 0 19px; color:#748493; font-size:12px; }.official-notice { display:flex; flex-wrap:wrap; align-items:center; gap:9px 16px; margin-bottom:18px; padding:15px; border-left:4px solid #f3b72e; background:#fffdf0; color:#596b78; font-size:12px; }.official-notice strong { color:#8e6716; }.official-notice a { color:#17648b; font-weight:900; }.post-section { margin:0 0 14px; border:1px solid #d9e7ee; background:#fff; }.post-section h2 { margin:0; padding:10px 14px; background:#17732d; color:#fff; font-size:15px; }.post-section > div { padding:14px; color:#4d5e6b; line-height:1.7; }.post-columns { display:grid; grid-template-columns:1fr 1fr; gap:14px; }.important-links { display:grid; gap:8px; }.important-links a { display:inline-flex; align-items:center; justify-content:space-between; gap:8px; padding:10px 12px; color:#14658c; background:#f0f8fb; font-weight:800; }.important-links .icon { width:14px; }.disclaimer { margin-top:22px; color:#7b8a95; font-size:11px; line-height:1.6; }
@media(max-width:650px){.simple-header{padding:16px;align-items:flex-start;flex-direction:column}.simple-search{max-width:none;width:100%}.simple-nav{padding:0 10px}.public-page{padding:20px 12px}.page-heading{align-items:flex-start;flex-direction:column}.page-heading h1{font-size:27px}.listing-toolbar{align-items:stretch;flex-direction:column}.listing-toolbar form{flex-wrap:wrap}.listing-toolbar input{width:100%}.post-card{flex-direction:column}.read-more{align-self:flex-start}.post-detail > h1{font-size:28px}.post-columns{grid-template-columns:1fr}.official-notice{align-items:flex-start;flex-direction:column}}