:root {
  --bg-cream: #f2ece2;
  --bg-mint: #e5efe6;
  --ink: #16231f;
  --muted: #5f7269;
  --brand: #0f7b5e;
  --brand-strong: #0a5a45;
  --accent: #b3641f;
  --card: #ffffff;
  --line: #d3dcd6;
  --danger: #9f2f2f;
  --shadow: 0 16px 35px rgba(13, 35, 25, 0.12);
  --top-nav-height: 72px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(33, 140, 107, 0.12), transparent 36%),
    radial-gradient(circle at 88% 2%, rgba(23, 111, 87, 0.13), transparent 34%),
    linear-gradient(145deg, #edf8ef, #e4f3e8 46%, #f4faf6);
}

.hidden {
  display: none !important;
}

.screen {
  max-width: 1140px;
  margin: 0 auto;
  padding: calc(var(--top-nav-height) + 0.55rem) 1.15rem 2rem;
}

.home-full-width {
  max-width: 100%;
  width: 100%;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0;
  padding: 0.58rem clamp(0.75rem, 2.1vw, 1.15rem);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(120deg, #218a66, #176f58);
  box-shadow: 0 12px 24px rgba(14, 75, 56, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #f2fff7;
  text-decoration: none;
  font-weight: 700;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 1px;
}

.nav-actions {
  position: relative;
}

.portal-button {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.16);
  color: #f2fff7;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.portal-button span {
  font-size: 0.72rem;
  margin-left: 0.3rem;
}

.ghost-btn {
  border-color: rgba(255, 255, 255, 0.35);
}

.portal-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 240px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.35rem;
  z-index: 20;
}

.portal-option {
  width: 100%;
  border: 0;
  border-radius: 10px;
  text-align: left;
  color: var(--ink);
  background: transparent;
  padding: 0.55rem 0.6rem;
  cursor: pointer;
  font-weight: 600;
}

.portal-option:hover {
  background: rgba(15, 123, 94, 0.08);
}

.landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: center;
  background: #edf7f1;
  border: 1px solid rgba(15, 123, 94, 0.2);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 1.2rem 1.2rem;
  animation: riseIn 520ms ease-out;
  overflow: hidden;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(244, 251, 247, 0.86)),
    radial-gradient(circle at 85% 8%, rgba(15, 123, 94, 0.1), transparent 36%);
}

.hero-wallpaper-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-wallpaper-layer.active {
  opacity: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .subtitle {
  max-width: 62ch;
}

.hero-highlights {
  margin-top: 0.68rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.hero-highlight {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(11, 92, 70, 0.28);
  background: rgba(11, 92, 70, 0.08);
  color: #0d5c47;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.18rem 0.48rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 270px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.hero-orb-a {
  width: 160px;
  height: 160px;
  top: 8px;
  right: 8px;
  background: radial-gradient(circle at 30% 30%, rgba(15, 123, 94, 0.28), rgba(15, 123, 94, 0.08));
  animation: heroPulse 4.6s ease-in-out infinite;
}

.hero-orb-b {
  width: 118px;
  height: 118px;
  bottom: 10px;
  left: 10px;
  background: radial-gradient(circle at 40% 40%, rgba(179, 100, 31, 0.26), rgba(179, 100, 31, 0.09));
  animation: heroPulse 5.3s ease-in-out infinite 0.5s;
}

.hero-card {
  position: absolute;
  border: 1px solid rgba(15, 123, 94, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 22px rgba(13, 35, 25, 0.12);
  padding: 0.62rem;
}

.hero-card-main {
  top: 8px;
  left: 16px;
  right: 20px;
  z-index: 3;
  animation: heroFloat 4.2s ease-in-out infinite;
}

.hero-card-jobs {
  bottom: 12px;
  left: 6px;
  width: 54%;
  z-index: 2;
  animation: heroFloat 4.9s ease-in-out infinite 0.25s;
}

.hero-card-tenders {
  bottom: 28px;
  right: 0;
  width: 52%;
  z-index: 2;
  animation: heroFloat 5.3s ease-in-out infinite 0.7s;
}

.hero-card-tag {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0d5c47;
  font-weight: 700;
}

.hero-card-main h3 {
  margin: 0.3rem 0 0.2rem;
  font-size: 1.05rem;
}

.hero-card-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.hero-card-title {
  margin: 0;
  font-size: 0.84rem;
  color: #0e5f49;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-card-subtitle {
  margin: 0.26rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.32;
}

.hero-meter {
  margin-top: 0.55rem;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 123, 94, 0.14);
  overflow: hidden;
}

.hero-meter-fill {
  display: block;
  height: 100%;
  width: 66%;
  border-radius: 999px;
  background: linear-gradient(90deg, #18916f, #4cbc93);
  animation: heroProgress 2.8s ease-in-out infinite alternate;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--brand-strong);
}

.welcome-under {
  margin: 0.26rem 0 0;
  font-size: 0.88rem;
  color: #1f5d4b;
  font-weight: 600;
}

h1 {
  margin: 0.45rem 0 0.5rem;
  font-family: "Literata", serif;
  font-size: clamp(1.4rem, 2.3vw, 2.15rem);
  line-height: 1.2;
}

.sliding-welcome {
  will-change: transform, opacity;
}

.sliding-welcome.slide-fade-out {
  animation: welcomeSlideOut 260ms ease forwards;
}

.sliding-welcome.slide-fade-in {
  animation: welcomeSlideIn 420ms ease forwards;
}

h2 {
  margin: 0.15rem 0 0.2rem;
  font-size: 1rem;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-cta-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.secondary-btn {
  border: 1px solid rgba(15, 123, 94, 0.28);
  background: #fff;
  color: var(--ink);
}

.explain-grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.explain-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  padding: 0.75rem 0.8rem;
}

.explain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.latest-jobs {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.category-chips {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-links-wrap {
  margin-top: 0.65rem;
  border: 1px solid rgba(18, 84, 63, 0.48);
  border-radius: 12px;
  background: linear-gradient(122deg, #39a076, #2a8865);
  padding: 0.4rem 0.5rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 8px 16px rgba(17, 84, 62, 0.18);
}

.quick-links-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 9px;
  padding: 0.38rem 0.48rem;
  background: rgba(255, 255, 255, 0.16);
  color: #f4fff8;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  list-style: none;
}

.quick-links-toggle:hover {
  transform: none;
  filter: none;
}

.quick-links-toggle::-webkit-details-marker {
  display: none;
}

.quick-links-caret {
  font-size: 0.72rem;
  transition: transform 140ms ease;
}

.quick-links-wrap[open] .quick-links-caret {
  transform: rotate(180deg);
}

.quick-links-panel {
  margin-top: 0.45rem;
  border: 1px solid rgba(16, 100, 75, 0.28);
  border-radius: 10px;
  background: rgba(243, 252, 246, 0.92);
  padding: 0.38rem 0.42rem;
}

.quick-links-grid {
  margin-top: 0.12rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem 0.58rem;
}

.quick-link-group {
  margin-top: 0;
  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(17, 109, 82, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.28rem 0.3rem;
}

.quick-link-label {
  margin: 0;
  color: #1f5846;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quick-link-group .category-chips {
  margin-top: 0;
  gap: 0.34rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 0.1rem;
}

.filter-chip {
  border: 1px solid rgba(28, 109, 81, 0.34);
  border-radius: 999px;
  background: #f2fbf5;
  color: #1b4f3f;
  padding: 0.2rem 0.52rem;
  font-size: 0.72rem;
  line-height: 1.2;
  white-space: nowrap;
}

.filter-chip:hover {
  transform: none;
  filter: none;
  border-color: rgba(15, 123, 94, 0.45);
}

.filter-chip.active {
  border-color: rgba(15, 123, 94, 0.92);
  background: #1f7f5d;
  color: #f1fff8;
}

.category-chip {
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(179, 100, 31, 0.4);
  background: rgba(179, 100, 31, 0.1);
  color: #6f3f0f;
  font-size: 0.78rem;
}

.opportunity-columns {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.opportunity-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.7rem;
}

.job-grid {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.62rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

#public-jobs-grid,
#public-tenders-grid {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.62rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

#public-jobs-grid .job-card,
#public-tenders-grid .job-card {
  min-width: 0;
}

#public-jobs-grid .empty,
#public-tenders-grid .empty {
  width: 100%;
}

.job-card {
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  background: #fbfdfb;
  padding: 0.65rem 0.72rem;
}

.job-card h4 {
  margin: 0;
  font-size: 0.95rem;
}

.meta {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.apply-btn {
  margin-top: 0.55rem;
  width: 100%;
}

.status-pill {
  display: inline-block;
  margin-top: 0.48rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 123, 94, 0.35);
  background: rgba(15, 123, 94, 0.1);
  color: #0a5a45;
  font-size: 0.75rem;
}

.applied-note {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.tender-apply-form {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.42rem;
}

.auth-page-card {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(390px, 1.1fr);
  border: 1px solid rgba(15, 123, 94, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.auth-info-panel {
  position: relative;
  padding: 1.05rem 1rem;
  background: linear-gradient(135deg, #1f65a3, #2f7dbc 56%, #3f8bc8);
  color: #eef7ff;
}

.auth-info-panel::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  top: -45px;
  right: -55px;
  background: rgba(255, 255, 255, 0.13);
}

.auth-logo {
  position: relative;
  z-index: 1;
  width: 94px;
  height: 94px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.auth-info-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(21, 80, 138, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 0.2rem 0.45rem;
}

.auth-info-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0.78rem 0 0;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.16;
}

.auth-info-note {
  position: relative;
  z-index: 1;
  margin: 0.7rem 0 0;
  color: rgba(236, 248, 255, 0.95);
  font-size: 1.02rem;
  line-height: 1.45;
  max-width: 37ch;
}

.auth-info-pills {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.auth-info-pills span {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  background: rgba(255, 255, 255, 0.14);
  color: #f5fbff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.23rem 0.58rem;
}

.auth-form-panel {
  padding: 1.05rem 1.1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 249, 0.93));
  border-left: 1px solid rgba(15, 123, 94, 0.12);
}

.auth-tabs {
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8faf8;
  display: flex;
  gap: 0.35rem;
  padding: 0.32rem;
}

.tab-btn {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  padding: 0.46rem 0.56rem;
  cursor: pointer;
  font-weight: 600;
}

.tab-btn.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 5px 11px rgba(12, 28, 21, 0.08);
}

.form-grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.52rem;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.56rem 0.62rem;
  background: #fff;
}

textarea {
  min-height: 86px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(15, 123, 94, 0.22);
  border-color: var(--brand);
}

button {
  border: 0;
  border-radius: 10px;
  padding: 0.6rem 0.78rem;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(130deg, var(--brand), var(--brand-strong));
  cursor: pointer;
  transition: transform 130ms ease, filter 130ms ease;
}

button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.status-text {
  min-height: 1.2rem;
  margin: 0.7rem 0 0;
  font-size: 0.87rem;
  color: var(--brand-strong);
}

.dashboard {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 240px 1fr;
}

.sidebar {
  border-right: 1px solid rgba(15, 123, 94, 0.18);
  padding: 1.1rem 0.82rem;
  background: linear-gradient(180deg, rgba(12, 95, 73, 0.97), rgba(11, 76, 59, 0.95));
  color: #eef8f3;
}

.sidebar-head h2 {
  margin: 0.15rem 0 0;
}

.sidebar .eyebrow {
  color: rgba(230, 248, 240, 0.85);
}

.side-link {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(225, 250, 238, 0.18);
  border-radius: 10px;
  color: #e9f7f0;
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
  padding: 0.55rem 0.64rem;
}

.side-link.active {
  background: rgba(255, 255, 255, 0.18);
}

.dashboard-main {
  padding: 1.15rem;
}

.dash-top {
  border: 1px solid rgba(15, 123, 94, 0.18);
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.95rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9rem;
}

.dash-panel {
  display: none;
  margin-top: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 0.9rem;
}

.dash-panel.active {
  display: block;
  animation: riseIn 420ms ease-out;
}

.metrics-grid {
  display: grid;
  gap: 0.62rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.62rem;
  background: #fbfdfb;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.table-wrap {
  margin-top: 0.7rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

th,
td {
  text-align: left;
  padding: 0.45rem 0.38rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
  color: var(--muted);
}

.inline-controls {
  display: grid;
  gap: 0.32rem;
}

.inline-controls input,
.inline-controls select {
  min-width: 130px;
}

.empty {
  color: var(--muted);
  margin: 0.4rem 0 0;
}

.site-footer {
  margin: 1.2rem 0 0;
  text-align: center;
  padding: 0.72rem 0.9rem;
  border-top: 1px solid rgba(14, 97, 73, 0.18);
  background: rgba(246, 253, 248, 0.82);
  color: #2a5f4d;
  font-size: 0.82rem;
  font-weight: 600;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes welcomeSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-16px);
  }
}

@keyframes welcomeSlideIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.7;
  }
}

@keyframes heroProgress {
  from {
    width: 58%;
  }
  to {
    width: 82%;
  }
}

@media (max-width: 980px) {
  .landing-hero {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

  .hero-visual {
    min-height: 238px;
  }

  .hero-card-main {
    left: 8px;
    right: 10px;
  }

  .hero-card-jobs {
    width: 56%;
  }

  .hero-card-tenders {
    width: 54%;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .quick-link-group {
    grid-template-columns: 98px 1fr;
  }

  .auth-page-card {
    grid-template-columns: 1fr;
  }

  .auth-info-panel {
    padding: 0.9rem 0.85rem;
  }

  .auth-info-note {
    max-width: none;
  }

  .auth-form-panel {
    border-left: 0;
    border-top: 1px solid rgba(15, 123, 94, 0.12);
    padding: 0.9rem 0.9rem;
  }

  .dashboard {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 123, 94, 0.2);
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 0.45rem;
    align-items: start;
  }

  .sidebar-head {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  #public-jobs-grid,
  #public-tenders-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    padding: 0.9rem;
  }

  .hero-visual {
    min-height: 225px;
  }

  .hero-card-jobs {
    width: 59%;
  }

  .hero-card-tenders {
    width: 57%;
  }

  .quick-link-group {
    grid-template-columns: 1fr;
    gap: 0.26rem;
  }

  .auth-info-panel h2 {
    font-size: 1.42rem;
  }

  .auth-info-note {
    font-size: 0.92rem;
  }

  .auth-logo {
    width: 80px;
    height: 80px;
  }

  .screen {
    padding: calc(var(--top-nav-height) + 0.4rem) 0.82rem 1.3rem;
  }

  .dashboard-main {
    padding: 0.8rem;
  }

  .dash-top {
    flex-direction: column;
  }

  .job-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    flex-direction: column;
  }
}
