:root {
  --bidlab-blue: #2f5bd5;
  --bidlab-blue-dark: #1e3fa8;
  --bidlab-blue-hover: #3a68e3;
  --bidlab-navy: #13233f;
  --bidlab-sky: #4aa8e8;
  --bidlab-mint: #25a7a0;
  --bidlab-purple: #7b61e8;
  --bidlab-orange: #f59e0b;
  --bidlab-green: #22a06b;
  --bidlab-red: #e55353;
  --bidlab-bg: #f4f6f9;
  --bidlab-card: #ffffff;
  --bidlab-border: #e4e8ef;
  --bidlab-text: #20242c;
  --bidlab-muted: #737b88;
}

.portal-home {
  background: var(--bidlab-bg);
  color: var(--bidlab-text);
  font-size: 14px;
  line-height: 1.55;
}

.portal-home .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.portal-home,
.portal-home *,
.portal-home *::before,
.portal-home *::after {
  box-sizing: border-box;
}

.portal-wrap {
  width: min(1460px, calc(100% - 56px));
  margin: 0 auto;
}

.portal-home .portal-main {
  padding: 16px 0 48px;
}

.portal-home .home-layout {
  display: grid;
  grid-template-columns: minmax(120px, 150px) minmax(0, 1fr) minmax(240px, 280px) minmax(120px, 150px);
  gap: 16px;
  align-items: stretch;
}

.portal-home .col-mid,
.portal-home .col-right,
.portal-home .home-rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.portal-home .col-right-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portal-home .home-quick {
  grid-column: 1 / -1;
}

.portal-home .col-mid > *:first-child,
.portal-home .col-right > *:first-child,
.portal-home .home-rail > *:first-child {
  margin-top: 0;
}

.portal-home .portal-card {
  width: 100%;
  margin: 0;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
}

.home-rail .home-promo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 156px;
  padding: 12px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.home-rail .home-promo:hover {
  border-color: #c9d4e4;
}

.home-rail .home-promo:hover .promo-btn {
  text-decoration: underline;
}

.home-promo h3 {
  margin: 8px 0 4px;
  font-size: 14px;
  color: var(--bidlab-navy);
}

.home-promo p {
  margin: 0 0 auto;
  font-size: 12px;
  line-height: 1.4;
  color: var(--bidlab-muted);
}

.home-promo .promo-btn {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--bidlab-blue);
}

.promo-ico {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.promo-ico.tone-sky { background: #d7eefb; }
.promo-ico.tone-mint { background: #d8f3ef; }
.promo-ico.tone-violet { background: #e8e0fb; }
.promo-ico.tone-teal { background: #d4f0ee; }
.promo-ico.tone-blue { background: #dbe6fb; }
.promo-ico.tone-navy { background: #13233f; }

.portal-home .home-quick {
  display: none;
  width: min(1460px, calc(100% - 56px));
  margin: 0 auto 16px;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.portal-home .home-quick a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 76px;
  padding: 10px 8px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
  color: var(--bidlab-navy);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

@media (max-width: 1439px) {
  .portal-home .home-layout {
    grid-template-columns: 120px minmax(0, 1fr) 260px;
  }

  .portal-home .home-rail-right {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .portal-home .home-quick {
    display: grid;
  }

  .portal-home .home-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .portal-home .home-rail {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .portal-home .home-quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-home .home-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .portal-home .col-mid,
  .portal-home .col-right {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .portal-home .portal-wrap {
    width: min(1460px, calc(100% - 24px));
  }

  .portal-home .home-quick {
    width: min(1460px, calc(100% - 24px));
  }
}

.portal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.22fr) minmax(0, 0.56fr) minmax(0, 0.22fr);
  gap: 16px;
  align-items: start;
}

.portal-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--bidlab-border);
}

.head-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 76px;
  padding: 8px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--bidlab-muted);
}

.global-search {
  display: flex;
  width: min(560px, 100%);
  height: 44px;
  margin: 0 auto;
  border: 1px solid var(--bidlab-blue);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.global-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 14px;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.global-search button {
  width: 72px;
  border: 0;
  background: var(--bidlab-blue);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.util-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

.util-links a {
  color: #333;
}

.gnb {
  background: var(--bidlab-blue);
}

.gnb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 12px;
}

.portal-home .gnb-nav {
  display: flex;
  flex-wrap: wrap;
}

.portal-home .gnb-nav > .gnb-item > .gnb-top {
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
}

.portal-home .gnb-nav > .gnb-item > .gnb-top:hover {
  background: var(--bidlab-blue-hover);
}

.portal-home .mega-panel,
.portal-home .mega-menu {
  background: #ffffff;
  color: #222222;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  height: auto;
}

.portal-home .mega-panel a,
.portal-home .mega-menu a {
  display: block;
  color: #333333 !important;
  font-size: 14px;
  font-weight: 500;
  opacity: 1;
  visibility: visible;
  text-decoration: none;
  background: transparent;
}

.portal-home .mega-panel a:hover,
.portal-home .mega-menu a:hover {
  color: #2453d4 !important;
  background: #f5f7fb;
}

@media (max-width: 1024px) {
  .portal-home .mega-panel,
  .portal-home .mega-menu {
    background: #16348a;
    color: #dbe7ff;
  }

  .portal-home .mega-panel a,
  .portal-home .mega-menu a {
    color: #dbe7ff !important;
  }

  .portal-home .mega-panel a:hover,
  .portal-home .mega-menu a:hover {
    color: #ffffff !important;
    background: transparent;
  }
}

.gnb-sns {
  display: flex;
  gap: 10px;
}

.gnb-sns a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.portal-main {
  padding: 16px 0 48px;
}

.portal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.22fr) minmax(0, 0.56fr) minmax(0, 0.22fr);
  gap: 18px;
  align-items: start;
}

.col-left,
.col-right,
.col-mid {
  display: grid;
  gap: 16px;
  align-content: start;
}

.col-right {
  display: grid;
  gap: 16px;
}

.portal-card {
  background: var(--bidlab-card);
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  padding: 20px 22px;
}

.portal-card h2,
.sec-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--bidlab-navy);
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-head h2 {
  margin: 0;
  font-size: 17px;
}

.card-head a,
.login-links a {
  color: var(--bidlab-blue);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.board-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.board-tools select {
  min-height: 32px;
  border: 1px solid var(--bidlab-border);
  border-radius: 4px;
  padding: 0 8px;
  font: inherit;
}

.line-list {
  list-style: none;
}

.line-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #edf0f5;
  font-size: 13px;
}

.line-list li:last-child {
  border-bottom: 0;
}

.line-list time {
  color: var(--bidlab-muted);
  flex-shrink: 0;
  font-size: 12px;
  text-align: right;
}

.notice-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--bidlab-border);
}

.notice-tabs button {
  border: 0;
  background: transparent;
  min-height: 32px;
  padding: 0 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  color: var(--bidlab-muted);
  cursor: pointer;
}

.notice-tabs button.is-on {
  color: var(--bidlab-blue);
  box-shadow: inset 0 -2px 0 var(--bidlab-blue);
}

.lead {
  font-weight: 700;
  margin-bottom: 4px;
}

.guide-card p,
.event-card p,
.consult-card p,
.about-brief p {
  color: var(--bidlab-muted);
  margin-bottom: 8px;
}

.col-left .portal-card h2 {
  font-size: 16px;
}

.col-left .line-list {
  font-size: 13px;
}

.col-left .line-list a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-blue {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  padding: 0 16px;
  background: var(--bidlab-blue);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.btn-blue:hover {
  background: var(--bidlab-blue-dark);
}

.mid-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-bottom: 18px;
}

.feature-slider {
  margin-bottom: 0;
}

.slider-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.slider-kicker {
  font-size: 12px;
  font-weight: 800;
  color: var(--bidlab-blue);
}

.slider-count {
  font-size: 12px;
  color: var(--bidlab-muted);
  font-weight: 700;
}

.slider-stage {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 6px;
}

.slider-viewport {
  overflow: hidden;
  height: auto;
  min-height: 280px;
  touch-action: pan-y;
}

.slider-track {
  display: flex;
  height: auto;
  transition: transform 0.28s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  min-width: 0;
  padding: 4px 2px 8px;
  box-sizing: border-box;
}

.slide h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--bidlab-navy);
}

.slide-search {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.slide-search label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--bidlab-muted);
  font-weight: 700;
}

.slide-search input,
.slide-search select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--bidlab-border);
  border-radius: 4px;
  padding: 0 10px;
  font: inherit;
  font-size: 13px;
  color: var(--bidlab-text);
  background: #fff;
}

.slide-search .btn-blue {
  grid-column: 1 / -1;
  min-height: 44px;
  font-size: 15px;
}

.slide-cta-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.slide-cta-row .btn-blue {
  grid-column: auto;
}

.btn-line-cta {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid var(--bidlab-blue);
  color: var(--bidlab-blue);
  font-size: 15px;
  font-weight: 800;
  border-radius: 4px;
  background: #fff;
}

.slide-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-slider.is-single .slider-viewport,
.feature-slider.is-single .slide {
  height: auto;
  min-height: 0;
}

.slide-cards a {
  border: 1px solid var(--bidlab-border);
  background: #f6f8fb;
  padding: 16px 14px;
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 108px;
  border-radius: 6px;
}

.slide-cards b {
  font-size: 14px;
}

.slide-cards span {
  color: var(--bidlab-muted);
  font-size: 12px;
}

.slider-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--bidlab-border);
  border-radius: 50%;
  background: #fff;
  color: var(--bidlab-blue);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.slider-arrow:hover {
  background: var(--bidlab-blue);
  border-color: var(--bidlab-blue);
  color: #fff;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9d1de;
  cursor: pointer;
}

.slider-dots button.is-on {
  background: var(--bidlab-blue);
}

.mini-svc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mini-svc a {
  border: 1px solid var(--bidlab-border);
  padding: 8px;
  display: grid;
  gap: 4px;
}

.mini-svc b {
  font-size: 13px;
}

.mini-svc span {
  color: var(--bidlab-muted);
  font-size: 12px;
}

.portal-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid var(--bidlab-border);
  margin: 0 0 12px;
  padding: 0;
}

.portal-tabs button {
  border: 0;
  background: transparent;
  min-height: 40px;
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--bidlab-muted);
  cursor: pointer;
  white-space: nowrap;
}

.portal-tabs button.is-on {
  color: var(--bidlab-blue);
  box-shadow: inset 0 -2px 0 var(--bidlab-blue);
}

.bid-board {
  padding: 16px 18px 18px;
}

.table-wrap {
  overflow-x: auto;
}

.notice-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13px;
}

.notice-table th,
.notice-table td {
  padding: 8px 8px;
  border-bottom: 1px solid #edf0f5;
  text-align: left;
  vertical-align: top;
}

.notice-table th {
  background: #f3f6fb;
  color: var(--bidlab-muted);
  font-size: 12px;
  font-weight: 700;
}

.notice-table tbody tr:hover {
  background: #f7f9ff;
}

.due-badge {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 6px;
  background: #eef2ff;
  color: var(--bidlab-blue);
  font-size: 11px;
  font-weight: 800;
}

.due-badge.soon {
  background: #ffe8e8;
  color: #d12626;
}

.due-badge.st-new {
  background: #e8f7ee;
  color: #1a7f45;
}

.due-badge.st-edit {
  background: #fff4e5;
  color: #c05600;
}

.due-badge.st-cancel {
  background: #f3f4f6;
  color: #6b7280;
}

.due-badge.st-end {
  background: #f3f4f6;
  color: #6b7280;
}

.notice-disclaimer {
  margin-top: 8px;
  color: var(--bidlab-muted);
  font-size: 12px;
}

.article-list {
  display: grid;
  gap: 6px;
}

.article-item {
  display: grid;
  gap: 4px;
  border: 1px solid var(--bidlab-border);
  border-radius: 6px;
  padding: 12px;
}

.login-form {
  display: grid;
  gap: 10px;
}

.login-form input {
  min-height: 40px;
  border: 1px solid var(--bidlab-border);
  border-radius: 4px;
  padding: 0 10px;
  font: inherit;
}

.related-svc {
  font-size: 16px;
}

.side-combo {
  background: #fff;
  border: 1px solid var(--bidlab-border);
  border-radius: 6px;
  box-shadow: none;
  padding: 16px 14px;
}

.side-combo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  align-items: stretch;
  min-height: 168px;
}

.side-combo-left {
  padding-right: 12px;
  border-right: 1px solid var(--bidlab-border);
}

.side-combo-right {
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.side-combo h2 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--bidlab-navy);
}

.side-combo-lead,
.side-combo-right > p {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--bidlab-muted);
}

.side-combo .related-svc-list {
  gap: 0;
  margin: 4px 0 8px;
}

.side-combo .related-svc-list a {
  min-height: 0;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  gap: 8px;
}

.side-combo .related-svc-list a:hover {
  background: transparent;
}

.side-combo .svc-icon {
  width: 22px;
  height: 22px;
  font-size: 11px;
}

.side-combo .svc-name {
  font-size: 13px;
}

.side-combo .channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-top: auto;
  padding-top: 8px;
}

.side-combo .channel-list a {
  padding: 0;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--bidlab-muted);
}

.side-combo .channel-list a:hover {
  color: var(--bidlab-blue);
}

.side-combo-emph {
  font-weight: 700 !important;
  color: var(--bidlab-navy) !important;
}

.side-combo-phone {
  margin: 4px 0 10px !important;
  font-size: 12px;
  color: var(--bidlab-muted);
}

.side-combo-phone a {
  display: block;
  margin-top: 2px;
  color: var(--bidlab-navy);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.side-combo .btn-consult {
  width: 100%;
  min-height: 36px;
  margin-top: auto;
  background: var(--bidlab-blue);
  border-radius: 4px;
}

.side-combo .btn-consult:hover {
  background: var(--bidlab-blue-dark);
  filter: none;
}

.related-svc-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.related-svc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--bidlab-border);
  border-radius: 6px;
  background: #fff;
}

.related-svc-list a:hover {
  border-color: var(--bidlab-blue);
  background: #fff;
}

.article-item span {
  color: var(--bidlab-blue);
  font-size: 12px;
  font-weight: 800;
}

.login-note,
.login-status {
  margin-top: 8px;
  font-size: 12px;
  color: var(--bidlab-muted);
}

.login-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 8px;
}

.svc-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #eef2ff;
  color: var(--bidlab-blue);
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
}

.svc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svc-name {
  font-size: 13px;
  font-weight: 700;
}

.channel-list {
  list-style: none;
}

.channel-list a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #edf0f5;
  font-weight: 600;
  font-size: 13px;
  color: #4b5563;
}

.channel-list li:last-child a {
  border-bottom: 0;
}

.consult-card {
  background: var(--bidlab-blue);
  border-color: var(--bidlab-blue);
  color: #fff;
}

.consult-card h2 {
  color: #fff;
}

.consult-card p {
  color: #dce6ff;
}

.consult-card .btn-blue {
  background: #fff;
  color: var(--bidlab-blue) !important;
  width: 100%;
}

.portal-lower {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.content-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.content-card {
  display: grid;
  gap: 4px;
}

.content-card span {
  color: var(--bidlab-blue);
  font-size: 12px;
  font-weight: 800;
}

.content-card p,
.service-grid p {
  color: var(--bidlab-muted);
  font-size: 12px;
}

.content-card time {
  color: #8a919c;
  font-size: 12px;
}

.service-grid h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.about-brief .btn-blue {
  margin-top: 4px;
}

.portal-foot {
  background: var(--bidlab-navy);
  color: #c9d3e0;
  padding: 22px 0;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.7fr;
  gap: 24px;
}

.portal-foot strong,
.portal-foot a {
  color: #fff;
}

.portal-foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 10px;
}

.top-btn {
  display: inline-block;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 10px;
  font-size: 12px;
}

.portal-home .quick-menu {
  display: none;
}

@media (max-width: 1024px) {
  .portal-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.7fr);
    gap: 18px;
  }

  .col-mid {
    grid-column: 1;
    grid-row: 1;
  }

  .col-right {
    grid-column: 2;
    grid-row: 1;
  }

  .col-left {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .mid-top,
  .slide-search,
  .content-grid,
  .service-grid,
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .head-row {
    grid-template-columns: 1fr auto;
  }

  .global-search {
    grid-column: 1 / -1;
    width: 100%;
  }

  .portal-home .menu-toggle {
    display: block;
  }

  .portal-home .gnb-nav.nav,
  .portal-home .gnb-nav.main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background: var(--bidlab-blue-dark);
    flex-direction: column;
  }

  .portal-home .gnb-nav.open {
    display: flex;
  }

  .gnb {
    position: relative;
  }

  .portal-grid,
  .col-left,
  .mid-top,
  .mini-svc,
  .content-grid,
  .service-grid,
  .foot-grid {
    display: block;
  }

  .slider-stage {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
  }

  .slider-arrow {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .slider-viewport,
  .slide {
    height: auto;
    min-height: 0;
  }

  .slide-search,
  .slide-cards {
    grid-template-columns: 1fr;
  }

  .slide-cta-row {
    grid-template-columns: 1fr;
  }

  .slide-cards a {
    min-height: 88px;
    padding: 12px;
  }

  .col-mid { order: 1; }
  .col-left { order: 2; }
  .col-right { order: 3; }

  .portal-grid {
    display: flex;
    flex-direction: column;
  }

  .portal-card,
  .col-left > .portal-card {
    margin-bottom: 18px;
  }

  .related-svc-list {
    grid-template-columns: 1fr;
  }

  .side-combo-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .side-combo-left {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--bidlab-border);
    margin-bottom: 14px;
  }

  .side-combo-right {
    padding: 0;
  }
}
