:root {
  --navy-950: #061426;
  --navy-900: #071b33;
  --navy-800: #0b2b4c;
  --navy-700: #154365;
  --green-700: #087d5a;
  --green-600: #0b9969;
  --green-500: #12b47a;
  --green-100: #daf4e9;
  --gold-500: #c8a45d;
  --ink-900: #142235;
  --ink-700: #405168;
  --ink-500: #748196;
  --line: #dfe6ed;
  --surface: #f5f8fa;
  --white: #fff;
  --shadow-sm: 0 8px 30px rgba(8, 28, 51, .07);
  --shadow-md: 0 18px 50px rgba(6, 24, 45, .12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink-900);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--green-600);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }

.utility-bar { background: var(--navy-950); color: rgba(255, 255, 255, .72); font-size: 12px; }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; }
.utility-inner p { margin: 0; letter-spacing: .3px; }
.utility-inner nav { display: flex; align-items: center; height: 36px; }
.utility-inner nav a { position: relative; padding: 0 14px; transition: color .2s; }
.utility-inner nav a::after { content: ""; position: absolute; right: 0; top: 5px; height: 12px; width: 1px; background: rgba(255, 255, 255, .15); }
.utility-inner nav a:hover { color: #fff; }
.utility-inner .account-link { padding-right: 0; color: #8edbbd; }
.utility-inner .account-link::after { display: none; }

.site-header { position: relative; z-index: 20; background: #fff; box-shadow: 0 2px 14px rgba(8, 28, 51, .05); }
.brand-row { height: 92px; display: flex; align-items: center; gap: 48px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo-frame {
  position: relative;
  display: block;
  width: 260px;
  height: 82px;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-logo-frame img {
  position: absolute;
  left: -27px;
  top: -44px;
  width: 312px;
  height: auto;
  max-width: none;
}
.header-search { height: 46px; flex: 1 1 480px; max-width: 550px; display: flex; align-items: center; border: 1px solid #cfd9e2; border-radius: 5px; overflow: hidden; background: #fff; }
.search-scope { height: 100%; display: flex; align-items: center; padding: 0 18px; background: var(--surface); color: var(--ink-700); border-right: 1px solid #e0e6ec; font-size: 13px; }
.header-search input { flex: 1; min-width: 0; height: 100%; padding: 0 16px; border: 0; outline: none; color: var(--ink-900); }
.header-search input::placeholder { color: #9aa6b5; }
.header-search:focus-within { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(11, 153, 105, .1); }
.header-search button { height: 100%; border: 0; background: var(--green-600); color: #fff; padding: 0 22px; display: flex; gap: 7px; align-items: center; font-weight: 600; }
.header-search button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.contact-brief { margin-left: auto; display: flex; align-items: center; gap: 10px; color: var(--navy-900); }
.contact-icon { width: 39px; height: 39px; border: 1px solid #d9e1e8; border-radius: 50%; display: grid; place-items: center; }
.contact-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--green-600); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-brief > span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.contact-brief small { color: var(--ink-500); font-size: 11px; margin-bottom: 5px; }
.contact-brief strong { font-size: 17px; letter-spacing: .4px; }
.main-nav { position: relative; background: var(--navy-900); }
.nav-inner { min-height: 52px; display: flex; align-items: stretch; }
.nav-inner > a,
.nav-dropdown > .nav-trigger {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 0 12px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-inner > a:hover,
.nav-inner > a.active,
.nav-dropdown:hover > .nav-trigger,
.nav-dropdown.is-open > .nav-trigger,
.nav-dropdown:focus-within > .nav-trigger { background: rgba(255, 255, 255, .08); color: #fff; }
.nav-inner > a.active::after,
.nav-dropdown > .nav-trigger.active::after { content: ""; position: absolute; bottom: 0; left: 22%; right: 22%; height: 3px; background: var(--green-500); }
.nav-dropdown { position: relative; flex: 1 1 auto; display: flex; min-width: 104px; }
.nav-trigger { width: 100%; gap: 5px; }
.nav-trigger svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s; }
.nav-dropdown:hover > .nav-trigger svg,
.nav-dropdown.is-open > .nav-trigger svg,
.nav-dropdown:focus-within > .nav-trigger svg { transform: rotate(180deg); }
.nav-panel {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  left: 50%;
  width: 720px;
  max-width: calc(100vw - 28px);
  display: grid;
  grid-template-columns: 215px minmax(0, 1fr);
  overflow: hidden;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid #dce5eb;
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(2, 18, 35, .2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -7px);
  transform-origin: top center;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-panel::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #0b2d48;
  border-left: 1px solid rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover > .nav-panel,
.nav-dropdown.is-open > .nav-panel,
.nav-dropdown:focus-within > .nav-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown-industry > .nav-panel { width: 1000px; transform: translate(-50%, -7px); }
.nav-dropdown-industry:hover > .nav-panel,
.nav-dropdown-industry.is-open > .nav-panel,
.nav-dropdown-industry:focus-within > .nav-panel { transform: translate(-50%, 0); }
.nav-dropdown-region > .nav-panel { width: 790px; transform: translate(-58%, -7px); }
.nav-dropdown-region:hover > .nav-panel,
.nav-dropdown-region.is-open > .nav-panel,
.nav-dropdown-region:focus-within > .nav-panel { transform: translate(-58%, 0); }
.nav-dropdown-enterprise > .nav-panel { width: 920px; transform: translate(-66%, -7px); }
.nav-dropdown-enterprise:hover > .nav-panel,
.nav-dropdown-enterprise.is-open > .nav-panel,
.nav-dropdown-enterprise:focus-within > .nav-panel { transform: translate(-66%, 0); }
.nav-dropdown-service > .nav-panel { right: 0; left: auto; transform: translate(0, -7px); }
.nav-dropdown-service:hover > .nav-panel,
.nav-dropdown-service.is-open > .nav-panel,
.nav-dropdown-service:focus-within > .nav-panel { transform: translate(0, 0); }
.nav-mobile-secondary { display: none; }
.nav-panel-heading {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 27px 24px;
  color: #fff;
  background: linear-gradient(145deg, #081d34, #0b3b56);
}
.nav-panel-heading::after { content: ""; position: absolute; right: -48px; bottom: -62px; width: 150px; height: 150px; border: 1px solid rgba(90, 218, 174, .17); border-radius: 50%; box-shadow: 0 0 0 32px rgba(90,218,174,.025); }
.nav-panel-heading span,
.nav-panel-heading strong,
.nav-panel-heading small { position: relative; z-index: 1; display: block; }
.nav-panel-heading span { margin-bottom: 13px; color: #63d8b0; font-size: 9px; font-weight: 800; letter-spacing: 1.7px; }
.nav-panel-heading strong { margin-bottom: 10px; font-size: 18px; line-height: 1.45; }
.nav-panel-heading small { color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.75; }
.nav-panel-grid { display: grid; gap: 0; padding: 14px; background: #f8fafb; }
.nav-panel-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nav-panel-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nav-panel-link {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 12px;
  color: #173047;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: color .18s, background .18s, border-color .18s;
}
.nav-panel-link:hover { color: #087d5a; background: #fff; border-color: #dbe6e7; }
.nav-panel-link i { flex: 0 0 31px; width: 31px; height: 31px; display: grid; place-items: center; color: #087d5a; background: #e2f4ee; border-radius: 4px; font-size: 12px; font-style: normal; font-weight: 800; }
.nav-panel-link > span { min-width: 0; }
.nav-panel-link strong,
.nav-panel-link small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-panel-link strong { font-size: 13px; }
.nav-panel-link small { margin-top: 3px; color: #7b8998; font-size: 10px; }
.nav-panel-link-featured { background: #eef7f4; }
.nav-region-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-content: start; gap: 8px; padding: 18px; background: #f8fafb; }
.nav-region-grid a { display: flex; align-items: center; justify-content: space-between; min-height: 39px; padding: 8px 12px; color: #294158; background: #fff; border: 1px solid #e0e7eb; border-radius: 4px; font-size: 12px; transition: color .18s, border-color .18s, box-shadow .18s; }
.nav-region-grid a:hover { color: #087d5a; border-color: #9ed5c2; box-shadow: 0 5px 14px rgba(8, 51, 65, .06); }
.nav-region-grid .nav-region-all { grid-column: 1 / -1; color: #fff; background: linear-gradient(105deg, #0a715a, #10966d); border-color: transparent; font-weight: 700; }
.nav-region-grid .nav-region-all:hover { color: #fff; border-color: transparent; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 610px; overflow: hidden; color: #fff; background: linear-gradient(112deg, #061426 0%, #0a2845 54%, #0d3555 100%); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 22% 38%, rgba(12, 154, 106, .17), transparent 34%), radial-gradient(circle at 82% 44%, rgba(32, 108, 150, .22), transparent 30%); }
.hero::after { content: ""; position: absolute; width: 560px; height: 560px; border: 1px solid rgba(62, 172, 145, .15); border-radius: 50%; right: -145px; top: 15px; box-shadow: 0 0 0 58px rgba(55, 140, 127, .035), 0 0 0 116px rgba(55, 140, 127, .025); }
.hero-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, #000, transparent 88%); }
.hero-inner { position: relative; z-index: 2; min-height: 610px; display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 76px; align-items: center; padding-top: 50px; padding-bottom: 54px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: #82d1b5; font-size: 11px; letter-spacing: 2.2px; font-weight: 700; }
.eyebrow span { display: block; width: 31px; height: 2px; background: var(--green-500); }
.hero h1 { margin: 18px 0 17px; font-size: clamp(42px, 4vw, 58px); line-height: 1.22; letter-spacing: 2px; font-weight: 750; }
.hero h1 em { font-style: normal; color: #55d0a6; }
.hero-content > p { max-width: 730px; margin: 0 0 28px; color: rgba(255, 255, 255, .72); font-size: 16px; line-height: 1.85; }
.hero-search { height: 62px; max-width: 745px; display: flex; align-items: center; background: #fff; border-radius: 6px; box-shadow: 0 18px 35px rgba(2, 12, 24, .26); overflow: hidden; }
.hero-search svg { width: 21px; height: 21px; margin-left: 22px; flex: 0 0 auto; fill: none; stroke: #8b98a7; stroke-width: 1.8; stroke-linecap: round; }
.hero-search input { min-width: 0; flex: 1; height: 100%; border: 0; outline: 0; padding: 0 15px; color: var(--ink-900); }
.hero-search input::placeholder { color: #97a4b1; }
.hero-search button { height: 100%; border: 6px solid #fff; min-width: 122px; background: var(--green-600); color: #fff; font-weight: 700; border-radius: 6px; }
.hero-search:focus-within { box-shadow: 0 18px 35px rgba(2, 12, 24, .26), 0 0 0 3px rgba(18, 180, 122, .24); }
.hot-searches { margin-top: 15px; display: flex; gap: 18px; color: rgba(255, 255, 255, .62); font-size: 13px; }
.hot-searches a:hover { color: #70dcb8; }
.hero-stats { display: flex; margin-top: 34px; }
.hero-stats > div { min-width: 155px; padding-right: 34px; margin-right: 34px; border-right: 1px solid rgba(255, 255, 255, .14); }
.hero-stats > div:last-child { border: 0; margin: 0; padding: 0; }
.hero-stats strong { display: block; line-height: 1; font-family: "Arial", sans-serif; font-size: 31px; color: #fff; }
.hero-stats strong small { margin-left: 3px; font-family: inherit; font-size: 14px; color: #6cd7b4; }
.hero-stats p { margin: 9px 0 0; color: rgba(255, 255, 255, .55); font-size: 12px; }
.hero-panel { background: rgba(255, 255, 255, .965); color: var(--ink-900); border-radius: 10px; box-shadow: 0 28px 70px rgba(0, 10, 25, .3); overflow: hidden; }
.panel-heading { height: 64px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e4e9ee; }
.panel-heading span { font-size: 18px; color: var(--navy-900); font-weight: 700; }
.panel-heading small { color: #a1acb7; font-size: 9px; letter-spacing: 1.3px; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; padding: 11px; }
.quick-grid > a { min-height: 130px; padding: 17px 13px; border-right: 1px solid #e8edf1; border-bottom: 1px solid #e8edf1; display: flex; flex-direction: column; justify-content: center; transition: background .2s, transform .2s; }
.quick-grid > a:nth-child(2n) { border-right: 0; }
.quick-grid > a:nth-last-child(-n+2) { border-bottom: 0; }
.quick-grid > a:hover { background: #f0faf6; transform: translateY(-2px); }
.quick-icon { width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; background: #e7f6f0; color: var(--green-700); margin-bottom: 10px; }
.quick-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.quick-grid strong { font-size: 15px; color: var(--navy-900); }
.quick-grid small { margin-top: 3px; color: var(--ink-500); font-size: 11px; }
.panel-trust { min-height: 59px; background: #edf6f3; display: flex; align-items: center; padding: 0 22px; gap: 12px; }
.panel-trust svg { width: 23px; height: 23px; fill: none; stroke: var(--green-700); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.panel-trust span { display: flex; flex-direction: column; line-height: 1.35; }
.panel-trust strong { font-size: 12px; color: var(--green-700); }
.panel-trust small { color: #718b83; font-size: 10px; }

.notice-strip { border-bottom: 1px solid #e4e9ed; background: #fff; }
.notice-inner { min-height: 55px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 26px; font-size: 13px; }
.notice-label { display: flex; align-items: center; gap: 10px; color: var(--navy-900); font-weight: 700; }
.notice-label span { width: 6px; height: 6px; border: 2px solid var(--green-600); border-radius: 50%; box-shadow: 0 0 0 4px #e4f6ef; }
.notice-window a { color: var(--ink-700); }
.notice-window a:hover, .more-link:hover { color: var(--green-700); }
.notice-inner time { color: #9aa5b2; }
.more-link { color: var(--ink-500); }
.more-link span { color: var(--green-600); }

.section { padding: 86px 0; }
.section-heading { margin-bottom: 38px; }
.section-kicker { display: block; margin-bottom: 9px; color: var(--green-600); font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; }
.section-heading h2 { margin: 0; color: var(--navy-900); font-size: 31px; line-height: 1.35; letter-spacing: .5px; }
.section-heading p { margin: 9px 0 0; color: var(--ink-500); }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.centered { text-align: center; }
.outline-link { display: inline-flex; align-items: center; gap: 9px; padding: 10px 17px; border: 1px solid #cdd7df; border-radius: 4px; color: var(--ink-700); font-size: 13px; transition: all .2s; }
.outline-link:hover { border-color: var(--green-600); color: var(--green-700); background: #f0faf6; }
.outline-link span { color: var(--green-600); }

.tender-section { background: #f5f8fa; }
.tender-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 22px; align-items: start; }
.tender-card, .deadline-card { background: #fff; border: 1px solid #e1e7ec; box-shadow: var(--shadow-sm); }
.tab-list { display: flex; height: 62px; border-bottom: 1px solid #e2e7ec; padding: 0 24px; }
.tab-list button { position: relative; min-width: 105px; border: 0; background: transparent; color: var(--ink-700); font-weight: 600; }
.tab-list button::after { content: ""; position: absolute; bottom: -1px; left: 25%; right: 25%; height: 3px; background: transparent; }
.tab-list button:hover, .tab-list button.active { color: var(--green-700); }
.tab-list button.active::after { background: var(--green-600); }
.list-head { height: 37px; display: grid; grid-template-columns: 1fr 70px 92px; align-items: center; padding: 0 22px; background: #f6f8fa; color: #98a3ae; font-size: 11px; }
.list-head span:nth-child(n+2) { text-align: center; }
.tender-list { padding: 0 22px; }
.tender-item { min-height: 76px; display: grid; grid-template-columns: 1fr 70px 92px; align-items: center; gap: 8px; border-bottom: 1px solid #edf0f3; }
.tender-title { min-width: 0; padding-right: 10px; }
.tender-title a { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink-900); font-size: 14px; font-weight: 600; transition: color .2s; }
.tender-title a:hover { color: var(--green-700); }
.tender-tags { display: flex; gap: 6px; margin-top: 6px; }
.tender-tags span { padding: 1px 6px; border-radius: 2px; background: #eff5f7; color: #758797; font-size: 10px; }
.tender-tags .type { color: var(--green-700); background: #e8f7f1; }
.tender-region, .tender-date { text-align: center; color: var(--ink-500); font-size: 12px; }
.list-more { min-height: 53px; display: flex; justify-content: center; align-items: center; gap: 10px; color: var(--ink-500); font-size: 12px; }
.list-more:hover { color: var(--green-700); }
.sidebar-stack { display: grid; gap: 18px; }
.deadline-card { padding: 20px 20px 13px; }
.side-title { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px solid #e8edf1; }
.side-title h3 { margin: 0; font-size: 17px; color: var(--navy-900); }
.side-title a { color: var(--ink-500); font-size: 11px; }
.deadline-item { display: grid; grid-template-columns: 43px 1fr; gap: 12px; align-items: center; padding: 15px 0; border-bottom: 1px solid #edf0f2; }
.deadline-item:last-child { border-bottom: 0; }
.date-box { text-align: center; border: 1px solid #d9e2e8; border-radius: 4px; overflow: hidden; }
.date-box strong { display: block; padding: 4px 0 1px; color: var(--navy-900); font-family: Arial, sans-serif; font-size: 18px; line-height: 1.2; }
.date-box small { display: block; color: var(--green-700); background: #edf8f4; font-size: 9px; }
.deadline-item a { display: -webkit-box; overflow: hidden; color: var(--ink-700); font-size: 12px; font-weight: 600; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.deadline-item a:hover { color: var(--green-700); }
.consult-card { position: relative; min-height: 265px; overflow: hidden; padding: 27px 25px; color: #fff; background: linear-gradient(145deg, #0b2b4c, #0b745d); box-shadow: var(--shadow-sm); }
.consult-card > * { position: relative; z-index: 2; }
.consult-tag { display: inline-block; padding: 3px 8px; color: #9ae1c8; border: 1px solid rgba(134, 222, 192, .4); font-size: 10px; letter-spacing: .8px; }
.consult-card h3 { margin: 14px 0 9px; font-size: 21px; line-height: 1.45; }
.consult-card p { max-width: 240px; margin: 0; color: rgba(255, 255, 255, .67); font-size: 12px; }
.consult-card a { display: inline-flex; gap: 9px; margin-top: 20px; color: #fff; font-size: 12px; font-weight: 700; }
.consult-card a span { color: #72d8b5; }
.consult-lines { position: absolute; z-index: 1; width: 190px; height: 190px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%; right: -75px; bottom: -80px; box-shadow: 0 0 0 30px rgba(255, 255, 255, .025), 0 0 0 60px rgba(255, 255, 255, .02); }

.industry-section { background: #fff; }
.industry-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-left: 1px solid #e4e9ed; border-top: 1px solid #e4e9ed; }
.industry-card { min-height: 166px; padding: 24px 18px; border-right: 1px solid #e4e9ed; border-bottom: 1px solid #e4e9ed; text-align: center; transition: transform .22s, box-shadow .22s, border-color .22s; background: #fff; }
.industry-card:hover { position: relative; z-index: 2; transform: translateY(-5px); border-color: transparent; box-shadow: 0 15px 38px rgba(8, 31, 53, .13); }
.industry-icon { width: 46px; height: 46px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 50%; background: #edf7f3; color: var(--green-700); }
.industry-card .industry-icon { display: grid; margin: 0 auto 14px; font-size: 15px; font-weight: 800; }
.industry-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.industry-card strong { display: block; color: var(--navy-900); font-size: 14px; }
.industry-card p { margin: 7px 0 0; color: var(--ink-500); font-size: 11px; }
.industry-card span { display: inline-block; margin-top: 9px; color: var(--green-700); font-size: 10px; }

.region-section { position: relative; overflow: hidden; color: #fff; background: var(--navy-900); }
.region-section::after { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px); background-size: 55px 55px; mask-image: linear-gradient(to left,#000,transparent 78%); }
.region-shell { position: relative; z-index: 2; display: grid; grid-template-columns: 360px 1fr; gap: 70px; align-items: center; }
.section-kicker.light { color: #73d9b7; }
.region-intro { position: relative; min-height: 350px; }
.region-intro h2 { margin: 0 0 15px; color: #fff; font-size: 31px; }
.region-intro > p { color: rgba(255, 255, 255, .65); max-width: 320px; }
.region-intro > a { display: inline-flex; gap: 10px; margin-top: 20px; padding-bottom: 7px; border-bottom: 1px solid rgba(255, 255, 255, .3); color: #fff; font-size: 13px; }
.region-intro > a span { color: #6bd4b1; }
.map-motif { position: absolute; left: 70px; bottom: -72px; opacity: .16; }
.map-motif svg { width: 330px; fill: rgba(255,255,255,.25); stroke: #72d6b5; stroke-width: 1.2; }
.map-motif circle { fill: #58d1a8; stroke: none; }
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.region-card { min-height: 92px; display: flex; flex-direction: column; justify-content: center; padding: 15px 16px; border: 1px solid rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .055); transition: background .2s, border-color .2s, transform .2s; }
.region-card:hover { background: rgba(17, 171, 118, .17); border-color: rgba(100, 216, 177, .45); transform: translateY(-3px); }
.region-card strong { font-size: 15px; }
.region-card span { margin-top: 7px; color: rgba(255, 255, 255, .5); font-size: 10px; }
.region-card span b { color: #6bd5b1; font-weight: 500; }
.region-card.all { align-items: center; text-align: center; background: var(--green-600); border-color: var(--green-600); }
.region-card.all span { color: rgba(255,255,255,.78); }

.enterprise-section { background: #f5f8fa; }
.compact-heading { margin-bottom: 30px; }
.compliance-note { display: flex; align-items: center; gap: 8px; max-width: 410px; padding: 8px 12px; color: #7f8c99 !important; background: #fff; border: 1px solid #e0e6eb; font-size: 11px; }
.compliance-note span { width: 17px; height: 17px; display: inline-grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #e7f3ef; color: var(--green-700); font-weight: 700; font-family: serif; }
.enterprise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.enterprise-card { min-height: 100px; display: flex; align-items: center; padding: 18px; background: #fff; border: 1px solid #e0e6eb; transition: box-shadow .2s, transform .2s; }
.enterprise-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.enterprise-monogram { width: 48px; height: 48px; flex: 0 0 auto; margin-right: 13px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-800); background: #eef3f6; font-size: 16px; font-weight: 800; }
.enterprise-card strong { display: block; color: var(--navy-900); font-size: 13px; }
.enterprise-card span:last-child { display: block; margin-top: 4px; color: var(--ink-500); font-size: 10px; }
.home-enterprise-directory { margin-bottom: 24px; }

.service-section { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 220px; overflow: hidden; padding: 29px 27px 24px; border: 1px solid #e0e6eb; transition: border-color .22s, transform .22s, box-shadow .22s; }
.service-card::after { content: attr(data-index); position: absolute; right: 17px; top: 3px; color: #f0f3f5; font-family: Arial, sans-serif; font-size: 74px; font-weight: 700; line-height: 1; }
.service-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-md); }
.service-card > * { position: relative; z-index: 2; }
.service-card .industry-icon { margin: 0 0 18px; width: 43px; height: 43px; }
.service-card h3 { margin: 0; color: var(--navy-900); font-size: 18px; }
.service-card p { margin: 10px 0 19px; color: var(--ink-500); font-size: 12px; }
.service-card a { display: inline-flex; gap: 8px; color: var(--green-700); font-size: 12px; font-weight: 700; }
.service-cta { min-height: 106px; margin-top: 28px; padding: 20px 24px; display: flex; align-items: center; gap: 25px; color: #fff; background: var(--navy-900); }
.service-cta > div { flex: 1; display: flex; align-items: center; gap: 13px; }
.service-cta > div > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(102, 212, 175, .55); border-radius: 50%; color: #67d3af; font-family: Arial, sans-serif; font-size: 11px; }
.service-cta p { margin: 0; display: flex; flex-direction: column; }
.service-cta strong { font-size: 13px; }
.service-cta small { margin-top: 3px; color: rgba(255,255,255,.5); font-size: 10px; }
.service-cta i { width: 32px; height: 1px; background: rgba(255,255,255,.2); }
.service-cta > a { padding: 12px 18px; white-space: nowrap; color: #fff; background: var(--green-600); font-size: 12px; font-weight: 700; }
.service-cta > a b { margin-left: 12px; }

.certificate-section { position: relative; overflow: hidden; background: linear-gradient(100deg, #0a2a49, #0a715c); color: #fff; }
.certificate-section::after { content: ""; position: absolute; right: -80px; top: -220px; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.018); }
.certificate-inner { position: relative; z-index: 2; min-height: 185px; display: grid; grid-template-columns: 72px 1fr auto; gap: 25px; align-items: center; }
.certificate-icon { width: 67px; height: 67px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.certificate-icon svg { width: 36px; fill: none; stroke: #74d9b7; stroke-width: 1.6; stroke-linejoin: round; }
.certificate-inner span { display: block; color: #73d7b5; font-size: 9px; letter-spacing: 2.3px; font-family: Arial, sans-serif; }
.certificate-inner h2 { margin: 5px 0 5px; font-size: 27px; }
.certificate-inner p { margin: 0; color: rgba(255,255,255,.64); font-size: 13px; }
.certificate-inner > a { display: inline-flex; gap: 17px; padding: 13px 21px; border: 1px solid rgba(255,255,255,.42); color: #fff; font-size: 13px; font-weight: 700; }

.policy-section { background: #f5f8fa; }
.policy-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.featured-policy { min-height: 330px; display: grid; grid-template-columns: .82fr 1.18fr; background: #fff; border: 1px solid #e1e7ec; }
.policy-visual { position: relative; overflow: hidden; padding: 29px; background: linear-gradient(145deg, #0b2947, #0d604f); color: rgba(255,255,255,.13); font: 800 37px/1.2 Arial, sans-serif; }
.policy-visual svg { position: absolute; left: 20px; right: 20px; bottom: 20px; width: calc(100% - 40px); fill: none; stroke: rgba(113, 219, 183, .45); stroke-width: 1; }
.featured-copy { display: flex; flex-direction: column; justify-content: center; padding: 32px; }
.featured-copy > span { align-self: flex-start; padding: 3px 8px; background: #e7f6f0; color: var(--green-700); font-size: 10px; }
.featured-copy h3 { margin: 15px 0 12px; font-size: 21px; line-height: 1.55; }
.featured-copy h3 a:hover { color: var(--green-700); }
.featured-copy p { margin: 0; color: var(--ink-500); font-size: 12px; }
.featured-copy time { margin-top: 23px; color: #a0aab4; font-size: 11px; }
.policy-list { background: #fff; border: 1px solid #e1e7ec; padding: 6px 25px; }
.policy-item { min-height: 79px; display: grid; grid-template-columns: 74px 1fr auto; align-items: center; gap: 12px; border-bottom: 1px solid #edf0f2; }
.policy-item:last-child { border-bottom: 0; }
.policy-item span { color: var(--green-700); font-size: 11px; }
.policy-item a { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink-700); font-size: 13px; font-weight: 600; }
.policy-item a:hover { color: var(--green-700); }
.policy-item time { color: #a0aab4; font-size: 10px; }

.site-footer { color: rgba(255,255,255,.68); background: var(--navy-950); }
.footer-top { padding: 63px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr) 1.2fr; gap: 43px; }
.brand-plaque { width: max-content; padding: 4px 8px; border-radius: 5px; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.footer-brand > p { max-width: 300px; margin: 20px 0; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-contact { display: flex; flex-direction: column; }
.footer-contact span { color: rgba(255,255,255,.4); font-size: 10px; }
.footer-contact strong { color: #fff; font-size: 23px; letter-spacing: .6px; }
.footer-contact small { color: rgba(255,255,255,.42); font-size: 10px; }
.footer-links h3 { margin: 4px 0 18px; color: #fff; font-size: 14px; }
.footer-links a { display: block; margin: 9px 0; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-links a:hover { color: #69d2ae; }
.footer-qr { display: flex; flex-direction: column; align-items: center; text-align: center; }
.qr-placeholder { width: 98px; height: 98px; display: grid; place-items: center; color: #53687a; background-color: #fff; background-image: linear-gradient(45deg,#e1e7ea 25%,transparent 25%),linear-gradient(-45deg,#e1e7ea 25%,transparent 25%),linear-gradient(45deg,transparent 75%,#e1e7ea 75%),linear-gradient(-45deg,transparent 75%,#e1e7ea 75%); background-size: 12px 12px; background-position: 0 0,0 6px,6px -6px,-6px 0; border: 7px solid #fff; }
.qr-placeholder span { padding: 5px; background: #fff; font-size: 10px; line-height: 1.3; }
.footer-qr p { margin: 10px 0 0; display: flex; flex-direction: column; }
.footer-qr strong { color: #fff; font-size: 12px; }
.footer-qr small { color: rgba(255,255,255,.4); font-size: 9px; }
.footer-member { align-self: start; padding: 18px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035); }
.footer-member > span { display: block; color: #72d8b5; font-size: 9px; font-weight: 700; letter-spacing: 1px; }
.footer-member strong { display: block; margin-top: 5px; color: #fff; font-size: 14px; }
.footer-member p { margin: 7px 0 12px; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.65; }
.footer-member a { display: inline-flex; padding-bottom: 3px; border-bottom: 1px solid rgba(114,216,181,.4); color: #8edbbd; font-size: 10px; font-weight: 700; }
.footer-member a:hover { color: #fff; }
.footer-meta { border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-meta .container { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-meta p { max-width: 760px; margin: 0; color: rgba(255,255,255,.42); font-size: 10px; }
.footer-meta nav { display: flex; gap: 18px; white-space: nowrap; font-size: 10px; }
.footer-meta nav a:hover { color: #69d2ae; }
.footer-bottom .container { min-height: 54px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.32); font-size: 10px; }
.footer-bottom p { margin: 0; }

.floating-tools { position: fixed; z-index: 30; right: 18px; bottom: 105px; display: grid; box-shadow: 0 8px 25px rgba(7,27,51,.16); }
.floating-tools a { width: 52px; height: 56px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: var(--ink-700); background: #fff; border-bottom: 1px solid #edf0f2; font-size: 9px; transition: background .2s, color .2s; }
.floating-tools a:first-child { border-radius: 6px 6px 0 0; }
.floating-tools a:last-child { border: 0; border-radius: 0 0 6px 6px; background: var(--green-600); color: #fff; }
.floating-tools a:hover { background: var(--navy-900); color: #fff; }
.floating-tools svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }

.trust-compliance-grid article > a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-top: 12px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
}
.trust-compliance-grid article > a:hover { color: var(--navy-900); }

@media (max-width: 1120px) {
  .brand-row { gap: 28px; }
  .brand-logo-frame { width: 220px; height: 69px; }
  .brand-logo-frame img { left: -23px; top: -37px; width: 264px; }
  .header-search { max-width: none; }
  .contact-brief { display: none; }
  .utility-inner > p { display: none; }
  .utility-inner { justify-content: flex-end; }
  .utility-inner nav a { padding: 0 9px; }
  .menu-toggle { display: flex; width: 44px; height: 44px; margin-left: auto; padding: 10px; flex-direction: column; justify-content: space-around; border: 1px solid #d9e1e7; border-radius: 5px; background: #fff; }
  .menu-toggle span { display: block; width: 100%; height: 2px; background: var(--navy-900); }
  .main-nav { position: absolute; display: none; left: 0; right: 0; top: 92px; box-shadow: 0 15px 25px rgba(7,27,51,.2); }
  .main-nav.open { display: block; }
  .nav-inner { display: block; max-height: calc(100vh - 106px); padding: 8px 20px 16px; overflow-y: auto; }
  .nav-inner > a,
  .nav-dropdown > .nav-trigger { width: 100%; min-height: 45px; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-inner > a.active::after,
  .nav-dropdown > .nav-trigger.active::after { left: 14px; right: auto; width: 3px; height: 20px; bottom: 12px; }
  .nav-dropdown { display: block; width: 100%; }
  .nav-panel,
  .nav-dropdown-industry > .nav-panel,
  .nav-dropdown-region > .nav-panel,
  .nav-dropdown-enterprise > .nav-panel,
  .nav-dropdown-service > .nav-panel {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-panel::before { display: none; }
  .nav-dropdown:hover > .nav-panel,
  .nav-dropdown:focus-within > .nav-panel { display: none; transform: none; }
  .nav-dropdown.is-open > .nav-panel,
  .nav-dropdown.is-open:hover > .nav-panel,
  .nav-dropdown.is-open:focus-within > .nav-panel { display: grid; transform: none; }
  .nav-panel-heading { padding: 20px; }
  .nav-panel-heading strong { font-size: 16px; }
  .nav-panel-heading small { font-size: 11px; }
  .nav-panel-grid { padding: 8px; }
  .nav-panel-grid-two,
  .nav-panel-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-panel-link { padding: 10px; }
  .nav-panel-link small { display: none; }
  .nav-region-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 10px; }
  .nav-mobile-secondary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; padding: 16px 0 4px; }
  .nav-mobile-secondary > span { grid-column: 1 / -1; color: #75d7b6; font-size: 10px; font-weight: 700; letter-spacing: 1px; }
  .nav-mobile-secondary a { min-height: 44px; display: flex; align-items: center; justify-content: center; padding: 8px 10px; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.8); text-align: center; font-size: 12px; }
  .nav-mobile-secondary .nav-mobile-account { border-color: rgba(105,210,174,.45); color: #8edbbd; }
  .hero-inner { gap: 38px; grid-template-columns: minmax(0, 1fr) 330px; }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .region-shell { gap: 40px; grid-template-columns: 320px 1fr; }
  .footer-grid { grid-template-columns: 1.8fr repeat(3, 1fr); }
  .footer-qr { display: none; }
  .footer-member { display: none; }
}

@media (max-width: 900px) {
  .utility-inner > p { display: none; }
  .utility-inner { justify-content: flex-end; }
  .brand-row { height: 78px; }
  .brand-logo-frame { width: 200px; height: 63px; }
  .brand-logo-frame img { left: -21px; top: -34px; width: 240px; }
  .header-search { display: none; }
  .menu-toggle { height: 44px; }
  .menu-toggle span { display: block; width: 100%; height: 2px; background: var(--navy-900); }
  .main-nav { position: absolute; display: none; left: 0; right: 0; top: 78px; box-shadow: 0 15px 25px rgba(7,27,51,.2); }
  .main-nav.open { display: block; }
  .nav-inner { display: block; max-height: calc(100vh - 90px); padding: 8px 20px 16px; overflow-y: auto; }
  .nav-inner > a,
  .nav-dropdown > .nav-trigger { width: 100%; min-height: 45px; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-inner > a.active::after,
  .nav-dropdown > .nav-trigger.active::after { left: 14px; right: auto; width: 3px; height: 20px; bottom: 12px; }
  .nav-dropdown { display: block; width: 100%; }
  .nav-panel,
  .nav-dropdown-industry > .nav-panel,
  .nav-dropdown-region > .nav-panel,
  .nav-dropdown-enterprise > .nav-panel,
  .nav-dropdown-service > .nav-panel {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-panel::before { display: none; }
  .nav-dropdown:hover > .nav-panel,
  .nav-dropdown:focus-within > .nav-panel { display: none; transform: none; }
  .nav-dropdown.is-open > .nav-panel,
  .nav-dropdown.is-open:hover > .nav-panel,
  .nav-dropdown.is-open:focus-within > .nav-panel { display: grid; transform: none; }
  .nav-panel-heading { padding: 20px; }
  .nav-panel-heading strong { font-size: 16px; }
  .nav-panel-heading small { font-size: 11px; }
  .nav-panel-grid { padding: 8px; }
  .nav-panel-grid-two,
  .nav-panel-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-panel-link { padding: 10px; }
  .nav-panel-link small { display: none; }
  .nav-region-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 10px; }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; padding-top: 74px; padding-bottom: 65px; }
  .hero-panel { display: none; }
  .hero-content { max-width: 760px; }
  .tender-layout { grid-template-columns: 1fr; }
  .sidebar-stack { grid-template-columns: 1fr 1fr; }
  .region-shell { grid-template-columns: 1fr; }
  .region-intro { min-height: auto; }
  .map-motif { display: none; }
  .region-grid { grid-template-columns: repeat(4, 1fr); }
  .enterprise-grid { grid-template-columns: repeat(2, 1fr); }
  .policy-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .utility-bar { display: none; }
  .site-header { position: sticky; top: 0; }
  .brand-row { height: 68px; }
  .brand-logo-frame { width: 180px; height: 57px; }
  .brand-logo-frame img { left: -19px; top: -31px; width: 216px; }
  .brand-plaque { padding: 3px 6px; }
  .main-nav { top: 68px; position: fixed; }
  .nav-mobile-secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-panel-grid-two,
  .nav-panel-grid-three { grid-template-columns: 1fr; }
  .nav-region-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-inner { min-width: 0; padding-top: 54px; padding-bottom: 50px; }
  .hero-content { min-width: 0; }
  .eyebrow { font-size: 8px; letter-spacing: 1.4px; }
  .hero h1 { margin-top: 14px; font-size: 34px; letter-spacing: 1px; }
  .hero-content > p { max-width: 100%; overflow-wrap: anywhere; font-size: 13px; line-height: 1.8; }
  .hero-search { width: 100%; min-width: 0; height: 56px; }
  .hero-search svg { margin-left: 16px; width: 18px; }
  .hero-search input { padding: 0 10px; font-size: 13px; }
  .hero-search button { min-width: 86px; font-size: 12px; }
  .hot-searches { gap: 11px; overflow-x: auto; white-space: nowrap; }
  .hero-stats { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; }
  .hero-stats > div { min-width: 0; margin-right: 10px; padding-right: 10px; }
  .hero-stats strong { font-size: 24px; }
  .hero-stats p { font-size: 9px; }
  .notice-inner { grid-template-columns: auto 1fr; gap: 15px; }
  .notice-inner time, .notice-inner .more-link { display: none; }
  .notice-window { min-width: 0; }
  .notice-window a { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .section { padding: 60px 0; }
  .section-heading h2, .region-intro h2 { font-size: 26px; }
  .section-heading p { font-size: 12px; }
  .split-heading { align-items: flex-start; }
  .split-heading .outline-link { display: none; }
  .tender-card { overflow: hidden; }
  .tab-list { height: 54px; padding: 0; overflow-x: auto; }
  .tab-list button { min-width: 82px; font-size: 12px; }
  .list-head { display: none; }
  .tender-list { padding: 0 15px; }
  .tender-item { grid-template-columns: 1fr auto; min-height: 84px; }
  .tender-region { display: none; }
  .tender-date { align-self: start; padding-top: 22px; }
  .tender-title a { white-space: normal; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-height: 1.55; }
  .sidebar-stack { grid-template-columns: 1fr; }
  .consult-card { min-height: 230px; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-card { min-height: 142px; padding: 18px 8px; }
  .industry-card p { display: none; }
  .industry-icon { width: 42px; height: 42px; }
  .region-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .region-card { min-height: 78px; }
  .enterprise-grid { grid-template-columns: 1fr; }
  .compliance-note { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 190px; }
  .service-cta { align-items: stretch; flex-direction: column; gap: 15px; padding: 23px; }
  .service-cta i { display: none; }
  .service-cta > a { text-align: center; }
  .certificate-inner { min-height: 255px; grid-template-columns: 55px 1fr; gap: 15px; padding-top: 30px; padding-bottom: 30px; }
  .certificate-icon { width: 53px; height: 53px; }
  .certificate-inner > a { grid-column: 1 / -1; justify-content: center; }
  .featured-policy { grid-template-columns: 1fr; }
  .policy-visual { min-height: 155px; }
  .featured-copy { padding: 25px; }
  .policy-item { grid-template-columns: 60px 1fr; }
  .policy-item time { display: none; }
  .footer-top { padding: 48px 0 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links:nth-of-type(4) { display: none; }
  .footer-meta .container, .footer-bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; padding-top: 15px; padding-bottom: 15px; }
  .footer-meta nav { flex-wrap: wrap; gap: 12px; }
  .floating-tools { left: 0; right: 0; bottom: 0; grid-template-columns: repeat(3, 1fr); box-shadow: 0 -5px 20px rgba(7,27,51,.14); }
  .floating-tools a { width: 100%; height: 54px; flex-direction: row; font-size: 11px; border-right: 1px solid #e8edf1; border-bottom: 0; border-radius: 0 !important; }
  .site-footer { padding-bottom: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media print {
  .utility-bar, .main-nav, .floating-tools, .menu-toggle, .hero-panel { display: none !important; }
  .hero { color: #000; background: #fff; }
  .hero h1, .hero h1 em { color: #000; }
}

/* PbootCMS inner pages */
.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 58px;
  color: #fff;
  background: linear-gradient(118deg, var(--navy-950), #0c3657);
}
.inner-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -90px;
  top: -220px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.02);
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero small { color: #62d7ae; letter-spacing: 2px; font-size: 10px; text-transform: uppercase; }
.inner-hero h1,
.inner-hero-title { margin: 10px 0 8px; color: #fff; font-size: 34px; font-weight: 700; line-height: 1.35; letter-spacing: 1px; }
.inner-hero p { margin: 0; color: rgba(255,255,255,.68); }
.breadcrumb-bar { border-bottom: 1px solid var(--line); background: #fff; }
.breadcrumb-bar .container { min-height: 48px; display: flex; align-items: center; color: var(--ink-500); font-size: 13px; }
.breadcrumb-bar a:hover { color: var(--green-700); }
.inner-main { padding: 44px 0 70px; background: var(--surface); }
.inner-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 24px; align-items: start; }
.content-panel, .side-panel { border: 1px solid #e2e8ee; background: #fff; box-shadow: var(--shadow-sm); }
.content-panel { padding: 8px 30px 28px; }
.result-row { display: grid; grid-template-columns: minmax(0,1fr) 92px; gap: 22px; padding: 23px 0; border-bottom: 1px solid #e8edf1; }
.result-row:last-child { border-bottom: 0; }
.result-row h2 { margin: 0 0 9px; font-size: 17px; font-weight: 700; }
.result-row h2 a:hover { color: var(--green-700); }
.result-row p { margin: 0; color: var(--ink-500); font-size: 13px; line-height: 1.8; }
.result-row time { padding-top: 3px; text-align: right; color: var(--ink-500); font-size: 12px; }
.result-tag { display: inline-flex; margin-right: 9px; padding: 2px 7px; color: var(--green-700); background: var(--green-100); border-radius: 2px; font-size: 11px; }
.side-panel { padding: 22px; }
.side-panel h3 { margin: 0 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--navy-900); font-size: 17px; }
.side-links { display: grid; }
.side-links a { padding: 11px 0; border-bottom: 1px solid #edf1f4; color: var(--ink-700); }
.side-links a:hover { color: var(--green-700); padding-left: 4px; }
.side-contact { margin-top: 20px; padding: 20px; color: #fff; background: linear-gradient(145deg, var(--navy-900), var(--green-700)); }
.side-contact small, .side-contact span { display: block; color: rgba(255,255,255,.7); }
.side-contact strong { display: block; margin: 8px 0 12px; font-size: 20px; }
.article-panel { padding: 38px 48px 48px; border: 1px solid #e2e8ee; background: #fff; box-shadow: var(--shadow-sm); }
.article-header { padding-bottom: 25px; margin-bottom: 30px; border-bottom: 1px solid var(--line); text-align: center; }
.article-header h1 { margin: 0 0 16px; color: var(--navy-900); font-size: 30px; line-height: 1.45; }
.article-meta { display: flex; gap: 24px; justify-content: center; color: var(--ink-500); font-size: 12px; }
.article-body { min-width: 0; max-width: 100%; color: #2c3c50; font-size: 16px; line-height: 2; overflow-wrap: anywhere; word-break: break-word; }
.article-body > * { max-width: 100% !important; }
.article-body a { overflow-wrap: anywhere; word-break: break-word; }
.article-body img { max-width: 100%; height: auto; }
.article-body iframe, .article-body video, .article-body embed, .article-body object { max-width: 100%; }
.article-body pre { max-width: 100%; overflow-x: auto; white-space: pre-wrap; }
.article-body table { display: block; width: 100%; max-width: 100%; overflow-x: auto; border-collapse: collapse; -webkit-overflow-scrolling: touch; }
.article-body th, .article-body td { padding: 10px; border: 1px solid var(--line); }
.procurement-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 0 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: #f8fafb; }
.procurement-facts div { min-width: 0; padding: 14px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.procurement-facts small, .procurement-facts strong { display: block; }
.procurement-facts small { margin-bottom: 5px; color: var(--ink-500); font-size: 11px; }
.procurement-facts strong { overflow-wrap: anywhere; color: var(--navy-900); font-size: 13px; font-weight: 600; }
.original-source, .source-reference { margin-top: 28px; padding: 16px 18px; border-left: 3px solid var(--green-600); background: #f1f7f5; color: var(--ink-700); font-size: 13px; line-height: 1.8; }
.original-source a, .source-reference a { color: var(--green-700); font-weight: 600; }
.result-facts { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-bottom: 7px !important; color: var(--ink-500); font-size: 11px; }
.article-nav { margin-top: 35px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink-700); line-height: 2; }
.empty-state { padding: 70px 20px; text-align: center; color: var(--ink-500); }
.search-box-inner { display: flex; max-width: 720px; margin: 0 auto 28px; border: 1px solid #cfd9e2; background: #fff; }
.search-box-inner input { flex: 1; min-width: 0; padding: 14px 18px; border: 0; outline: 0; }
.search-box-inner button { padding: 0 25px; border: 0; color: #fff; background: var(--green-600); }
.zg-service-shortcuts {
  margin: 0 0 26px;
  padding: 24px;
  border: 1px solid #dce6ea;
  background: linear-gradient(135deg, #f4faf8, #fff);
  box-shadow: var(--shadow-sm);
}
.zg-service-shortcuts > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.zg-service-shortcuts > header > div > span {
  display: block;
  margin-bottom: 5px;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.zg-service-shortcuts > header h2 { margin: 0; color: var(--navy-900); font-size: 22px; }
.zg-service-shortcuts > header > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid #bdd8cf;
  color: var(--green-700);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}
.zg-service-shortcuts > header > a:hover { color: #fff; background: var(--green-700); border-color: var(--green-700); }
.zg-service-shortcut-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.zg-service-shortcut-grid > article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 19px;
  border: 1px solid #e0e8eb;
  background: #fff;
}
.zg-service-shortcut-grid > article > span {
  align-self: flex-start;
  margin-bottom: 11px;
  padding: 3px 8px;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 10px;
  font-weight: 700;
}
.zg-service-shortcut-grid h3 { margin: 0 0 9px; font-size: 16px; line-height: 1.5; }
.zg-service-shortcut-grid h3 a:hover { color: var(--green-700); }
.zg-service-shortcut-grid p {
  flex: 1;
  margin: 0 0 14px;
  color: var(--ink-500);
  font-size: 12px;
  line-height: 1.75;
}
.zg-service-shortcut-link { align-self: flex-start; color: var(--green-700); font-size: 12px; font-weight: 700; }
.zg-service-shortcut-link:hover { color: var(--navy-900); }
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 30px; }
.pagination a, .pagination span { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 7px 11px; border: 1px solid var(--line); background: #fff; text-align: center; }
.pagination a:hover, .pagination .active { border-color: var(--green-600); color: #fff; background: var(--green-600); }

@media (max-width: 900px) {
  .inner-layout { grid-template-columns: 1fr; }
  .side-panel { display: none; }
  .zg-service-shortcut-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .inner-hero { padding: 42px 0 38px; }
  .inner-hero h1,
  .inner-hero-title { font-size: 27px; }
  .inner-main { padding: 24px 0 50px; }
  .content-panel { padding: 4px 18px 20px; }
  .zg-service-shortcuts { padding: 19px 16px; }
  .zg-service-shortcuts > header { align-items: stretch; flex-direction: column; gap: 12px; }
  .zg-service-shortcuts > header > a { justify-content: center; }
  .zg-service-shortcut-grid { grid-template-columns: 1fr; }
  .result-row { grid-template-columns: 1fr; gap: 8px; padding: 19px 0; }
  .result-row time { text-align: left; }
  .article-panel { padding: 25px 20px 34px; }
  .article-header h1 { font-size: 23px; }
  .article-meta { gap: 8px 16px; flex-wrap: wrap; }
  .article-body { font-size: 15px; }
  .procurement-facts { grid-template-columns: repeat(2, 1fr); }
}

/* Professional directory and service pages */
.channel-hero {
  padding: 76px 0 68px;
  background:
    radial-gradient(circle at 82% 20%, rgba(35, 190, 139, .2), transparent 28%),
    linear-gradient(120deg, #06182d 0%, #0b3150 60%, #0b4c53 100%);
}
.channel-hero h1 { max-width: 820px; font-size: clamp(34px, 4vw, 48px); }
.channel-hero p { max-width: 760px; font-size: 15px; line-height: 1.8; }
.channel-main { background: linear-gradient(180deg, #f1f6f8 0, #f7f9fa 260px); }
.channel-panel {
  overflow: hidden;
  border: 1px solid #dfe8ec;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 27, 51, .08);
}
.channel-body { color: #2c3c50; font-size: 15px; line-height: 1.9; }
.channel-body a { color: inherit; }
.channel-lead {
  position: relative;
  overflow: hidden;
  padding: 58px 64px 54px;
  color: #fff;
  background: linear-gradient(125deg, #071b33, #0b3e59);
}
.channel-lead::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -125px;
  top: -150px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255,255,255,.025), 0 0 0 96px rgba(255,255,255,.018);
}
.channel-lead > * { position: relative; z-index: 1; }
.channel-lead > span {
  display: block;
  margin-bottom: 10px;
  color: #61d8ae;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.4px;
}
.channel-lead h2 { margin: 0 0 14px; color: #fff; font-size: 31px; line-height: 1.4; }
.channel-lead p { max-width: 780px; margin: 0; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.9; }
.channel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -1px 0 0;
  border-bottom: 1px solid #e2eaee;
  background: #f7fafb;
}
.channel-metrics div { padding: 28px 36px; border-right: 1px solid #e2eaee; }
.channel-metrics div:last-child { border-right: 0; }
.channel-metrics strong, .channel-metrics span { display: block; }
.channel-metrics strong { margin-bottom: 4px; color: #0d765d; font-size: 26px; }
.channel-metrics span { color: #67778a; font-size: 12px; }
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 44px;
}
.directory-card {
  position: relative;
  min-height: 210px;
  padding: 28px;
  border: 1px solid #e0e8ec;
  background: linear-gradient(145deg, #fff, #f8fafb);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.directory-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: #19a979;
  transition: width .2s ease;
}
.directory-card:hover { transform: translateY(-3px); border-color: #b7d8cc; box-shadow: 0 14px 32px rgba(7,27,51,.09); }
.directory-card:hover::before { width: 100%; }
.directory-card > span { color: #168864; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; }
.directory-card h3 { margin: 13px 0 8px; color: #071b33; font-size: 20px; }
.directory-card p { min-height: 54px; margin: 0 0 18px; color: #6c7988; font-size: 13px; line-height: 1.7; }
.directory-card strong { color: #0d765d; font-size: 12px; }
.channel-section { padding: 44px 54px; border-top: 1px solid #e5ecef; }
.channel-section > h2, .channel-process > h2 { margin: 0 0 22px; color: #071b33; font-size: 24px; }
.channel-section > p { margin: 0; color: #58697b; }
.channel-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.channel-feature-grid > div { position: relative; min-height: 132px; padding: 23px 24px 20px 58px; border: 1px solid #e1e9ed; background: #f9fbfb; }
.channel-feature-grid > div > span {
  position: absolute;
  left: 22px;
  top: 23px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  background: #18a775;
  border-radius: 50%;
  font-size: 12px;
}
.channel-feature-grid h3 { margin: 0 0 6px; color: #0b2741; font-size: 16px; }
.channel-feature-grid p { margin: 0; color: #687789; font-size: 13px; line-height: 1.75; }
.channel-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 54px 44px;
  padding: 26px 30px;
  color: #fff;
  background: linear-gradient(115deg, #0a314d, #0e715f);
}
.channel-action strong { display: block; font-size: 18px; }
.channel-action p { margin: 3px 0 0; color: rgba(255,255,255,.7); font-size: 12px; }
.channel-action p a { color: #fff; font-weight: 700; }
.channel-action > a { flex: none; padding: 12px 18px; border: 1px solid rgba(255,255,255,.36); color: #fff; font-size: 13px; font-weight: 700; }
.channel-action > a:hover { color: #071b33; background: #fff; }
.channel-note { margin: 0 54px 44px; padding: 22px 24px; border-left: 3px solid #caa34c; background: #fbf8ef; }
.channel-note strong { display: block; margin-bottom: 4px; color: #6e5420; }
.channel-note p { margin: 0; color: #76694f; font-size: 13px; }
.channel-process { padding: 44px 54px; border-top: 1px solid #e5ecef; }
.channel-process ol { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding: 0; margin: 0; counter-reset: process; list-style: none; }
.channel-process li { position: relative; min-height: 145px; padding: 50px 22px 22px; border: 1px solid #dde7eb; background: #f8fafb; counter-increment: process; }
.channel-process li::before { content: "0" counter(process); position: absolute; top: 17px; left: 22px; color: #18a775; font-size: 12px; font-weight: 800; letter-spacing: 1px; }
.channel-process strong, .channel-process span { display: block; }
.channel-process strong { margin-bottom: 7px; color: #0b2741; }
.channel-process span { color: #6d7b8b; font-size: 12px; line-height: 1.7; }
.legal-copy h2:not(:first-child) { margin-top: 30px; }

@media (max-width: 900px) {
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 28px; }
  .channel-lead { padding: 44px 36px; }
  .channel-section, .channel-process { padding: 36px 32px; }
  .channel-action, .channel-note { margin-right: 32px; margin-left: 32px; }
  .channel-process ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .channel-hero { padding: 48px 0 42px; }
  .channel-hero h1 { font-size: 29px; }
  .channel-lead { padding: 36px 24px; }
  .channel-lead h2 { font-size: 24px; }
  .channel-metrics { grid-template-columns: 1fr; }
  .channel-metrics div { padding: 19px 24px; border-right: 0; border-bottom: 1px solid #e2eaee; }
  .channel-metrics div:last-child { border-bottom: 0; }
  .directory-grid { grid-template-columns: 1fr; padding: 20px; }
  .directory-card { min-height: 0; padding: 25px; }
  .directory-card p { min-height: 0; }
  .channel-section, .channel-process { padding: 30px 22px; }
  .channel-feature-grid, .channel-process ol { grid-template-columns: 1fr; }
  .channel-action { align-items: stretch; flex-direction: column; margin: 0 22px 30px; padding: 23px; }
  .channel-action > a { text-align: center; }
  .channel-note { margin: 0 22px 30px; }
}

/* Dynamic public procurement feed on seven energy channels */
.industry-feed {
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid #dbe5ea;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 27, 51, .07);
}
.industry-feed-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 42px;
  align-items: end;
  padding: 34px 38px 30px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(43, 204, 151, .17), transparent 32%),
    linear-gradient(118deg, #071b33, #0b3e59);
}
.industry-feed-header > div > span {
  display: block;
  margin-bottom: 8px;
  color: #61d8ae;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.1px;
}
.industry-feed-header h2 { margin: 0 0 8px; color: #fff; font-size: 27px; line-height: 1.35; }
.industry-feed-header p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.75; }
.industry-feed-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border: 1px solid rgba(255,255,255,.16); }
.industry-feed-stats div { min-width: 0; padding: 15px 17px; border-right: 1px solid rgba(255,255,255,.14); }
.industry-feed-stats div:last-child { border-right: 0; }
.industry-feed-stats dt { margin-bottom: 4px; color: rgba(255,255,255,.58); font-size: 10px; }
.industry-feed-stats dd { margin: 0; color: #fff; font-size: 22px; font-weight: 750; letter-spacing: .3px; }
.industry-feed-tabs {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 30px;
  border-bottom: 1px solid #e2e9ed;
  background: #f7fafb;
}
.industry-feed-tabs > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #41566b;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 650;
}
.industry-feed-tabs > a span {
  min-width: 24px;
  padding: 2px 6px;
  color: #6e8091;
  background: #e8eef1;
  border-radius: 9px;
  font-size: 9px;
  text-align: center;
}
.industry-feed-tabs > a:hover { color: #087d5a; background: #fff; border-color: #d8e4e5; }
.industry-feed-tabs > a.active { color: #fff; background: #0b8060; border-color: #0b8060; }
.industry-feed-tabs > a.active span { color: #07503d; background: #bfead9; }
.industry-feed-tabs > small { margin-left: auto; color: #81909f; font-size: 11px; }
.industry-notice-list { padding: 0 30px; }
.industry-notice-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 88px 28px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid #e6ecef;
}
.industry-notice-row:last-child { border-bottom: 0; }
.industry-notice-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  color: #087554;
  background: #e4f4ee;
  border: 1px solid #c6e8dc;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.industry-notice-badge.award { color: #9b6715; background: #fff4df; border-color: #f0dbb5; }
.industry-notice-copy { min-width: 0; }
.industry-notice-copy h3 { margin: 0 0 7px; font-size: 15px; line-height: 1.5; }
.industry-notice-copy h3 a {
  display: block;
  overflow: hidden;
  color: #0b2741;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.industry-notice-copy h3 a:hover { color: #07815e; }
.industry-notice-copy p {
  display: flex;
  min-width: 0;
  gap: 0;
  margin: 0;
  overflow: hidden;
  color: #758596;
  font-size: 10px;
  white-space: nowrap;
}
.industry-notice-copy p span { overflow: hidden; text-overflow: ellipsis; }
.industry-notice-copy p span:not(:last-child)::after { content: "/"; margin: 0 8px; color: #c0c9cf; }
.industry-notice-row time { color: #6e7f90; font-size: 11px; text-align: right; white-space: nowrap; }
.industry-notice-arrow {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #748596;
  border: 1px solid #dfe6ea;
  border-radius: 50%;
  font-size: 12px;
}
.industry-notice-row:hover .industry-notice-arrow { color: #fff; background: #0b8060; border-color: #0b8060; }
.industry-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 28px 30px 8px;
  border-top: 1px solid #e7edf0;
}
.industry-pagination a,
.industry-pagination strong,
.industry-pagination > span {
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 6px 10px;
  color: #506477;
  border: 1px solid #dbe4e8;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
}
.industry-pagination a:hover,
.industry-pagination strong { color: #fff; background: #0b8060; border-color: #0b8060; }
.industry-pagination > span { border-color: transparent; }
.industry-feed-note {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 22px 30px 30px;
  padding: 12px 15px;
  color: #6a7b8c;
  background: #f5f8f9;
  border-left: 3px solid #15926c;
}
.industry-feed-note > span { width: 20px; height: 20px; display: grid; place-items: center; flex: none; color: #fff; background: #15926c; border-radius: 50%; font-size: 10px; font-weight: 800; }
.industry-feed-note p { margin: 0; font-size: 11px; line-height: 1.7; }
.industry-feed-empty { display: grid; gap: 5px; padding: 75px 28px; text-align: center; color: #748595; }
.industry-feed-empty strong { color: #18334c; font-size: 17px; }
.industry-feed-error { padding: 30px; }
.industry-feed-error > div { display: grid; gap: 4px; padding: 26px; color: #7b611f; background: #fff9e9; border: 1px solid #ebd99e; }

@media (max-width: 900px) {
  .industry-feed-header { grid-template-columns: 1fr; gap: 22px; padding: 30px; }
  .industry-feed-stats { max-width: 520px; }
}

@media (max-width: 680px) {
  .industry-feed { margin-top: 16px; }
  .industry-feed-header { gap: 20px; padding: 26px 22px; }
  .industry-feed-header h2 { font-size: 23px; }
  .industry-feed-stats div { padding: 12px 10px; }
  .industry-feed-stats dd { font-size: 18px; }
  .industry-feed-tabs { align-items: stretch; flex-wrap: wrap; padding: 10px 14px; }
  .industry-feed-tabs > a { flex: 1 1 30%; justify-content: center; padding: 9px 7px; font-size: 11px; }
  .industry-feed-tabs > small { width: 100%; margin: 2px 0 0; text-align: right; }
  .industry-notice-list { padding: 0 16px; }
  .industry-notice-row { min-height: 92px; grid-template-columns: 62px minmax(0, 1fr) 54px; gap: 10px; }
  .industry-notice-copy h3 { margin-bottom: 8px; font-size: 14px; }
  .industry-notice-copy p span:nth-child(n+3) { display: none; }
  .industry-notice-row time { font-size: 9px; }
  .industry-notice-arrow { display: none; }
  .industry-pagination { padding: 22px 14px 4px; }
  .industry-feed-note { margin: 18px 16px 22px; }
}
