:root {
  --color-page: #f4f3f2;
  --color-surface: #fbfcfc;
  --color-white: #fdfdfd;
  --color-evergreen: #04281b;
  --color-green: #1c3d2b;
  --color-muted: #6e736f;
  --color-border: #dedfdb;
  --color-sage: #e8f0e8;
  --color-gold: #d89108;
  --color-gold-light: #f5bd3d;
  --color-neutral: #b0b0a3;
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "Lato", Arial, sans-serif;
  --shadow-card: 0 1px 3px rgba(4, 40, 27, .06);
  --shadow-button: 0 4px 12px rgba(4, 40, 27, .18);
  --radius: 9px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--color-evergreen);
  background: var(--color-page);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
.panel > h2,
.panel-heading h2 {
  font-family: var(--font-heading);
  font-weight: 400;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex: 1;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: 248px;
  display: flex;
  flex-direction: column;
  overflow: hidden auto;
  color: var(--color-white);
  background: linear-gradient(155deg, #063727, var(--color-evergreen) 68%);
}

.brand {
  display: block;
  padding: 26px 24px 21px;
}

.brand img {
  width: 190px;
}

.primary-nav {
  display: grid;
  gap: 5px;
  padding: 12px 16px;
}

.primary-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .2s ease, color .2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: #ffd23d;
  background: rgba(73, 132, 68, .35);
}

.primary-nav img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.sidebar-insight {
  margin: 24px 22px 18px;
  padding: 18px;
  border: 1px solid rgba(245, 189, 61, .55);
  border-radius: 10px;
  background: rgba(1, 27, 18, .45);
}

.sidebar-insight h2 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.sidebar-insight p {
  margin: 10px 0 14px;
  font-size: 14px;
  line-height: 1.45;
}

.sidebar-insight a {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(61, 111, 62, .3);
  font-size: 14px;
  font-weight: 700;
}

.sidebar-house {
  width: 100%;
  margin-top: auto;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to bottom, transparent, black 16%);
}

.workspace {
  min-width: 0;
  margin-left: 248px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.topbar {
  position: relative;
  z-index: 12;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 26px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(253, 253, 253, .96);
}

.search {
  width: min(385px, 36vw);
  position: relative;
}

.search svg {
  position: absolute;
  left: 13px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}

.search input {
  width: 100%;
  height: 42px;
  padding: 0 14px 0 42px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-evergreen);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.search input::placeholder {
  color: #747976;
  opacity: 1;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.date-button,
.notification-button,
.profile-button,
.icon-button {
  border: 0;
  color: var(--color-evergreen);
  background: transparent;
  cursor: pointer;
}

.date-button {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}

.date-button svg {
  width: 19px;
  height: 19px;
}

.date-button .chevron {
  width: 15px;
}

.notification-button {
  width: 40px;
  height: 40px;
  position: relative;
  display: grid;
  place-items: center;
}

.notification-button svg {
  width: 23px;
  height: 23px;
}

.notification-button span {
  position: absolute;
  top: -3px;
  right: -1px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 999px;
  color: white;
  background: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
}

.profile-button {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.profile-button img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-button span {
  display: grid;
}

.profile-button strong {
  font-size: 15px;
}

.profile-button small {
  color: var(--color-muted);
  font-size: 13px;
}

.profile-button svg {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

main {
  min-width: 0;
  position: relative;
  flex: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #fbfbfb, #f7f7f5);
}

.pine-decoration {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: min(180px, 15vw);
  pointer-events: none;
}

.content-container {
  width: min(100%, 1280px);
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 18px 24px 28px;
}

.page-heading {
  margin-bottom: 15px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
}

.back-link svg {
  width: 17px;
  height: 17px;
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.heading-row h1 {
  font-size: 28px;
  line-height: 1.1;
}

.heading-row p {
  margin-top: 2px;
  color: #4e5551;
  font-size: 14px;
}

.heading-row p span {
  padding: 0 7px;
}

.campaign-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 5px;
}

.campaign-name-row h2 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}

.status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.status-active,
.status-new,
.status-booked {
  color: #174b2a;
  background: #e4eee2;
}

.status-contacted {
  color: #73520b;
  background: #fff0cf;
}

.status-proposal {
  color: #174f82;
  background: #dcecfb;
}

.icon-button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}

.icon-button svg {
  width: 17px;
  height: 17px;
}

.campaign-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.button svg {
  width: 17px;
  height: 17px;
}

.button.primary {
  color: white;
  background: var(--color-evergreen);
  box-shadow: var(--shadow-button);
}

.button.secondary {
  color: var(--color-evergreen);
  border-color: var(--color-border);
  background: var(--color-white);
}

.button.gold {
  color: var(--color-evergreen);
  background: var(--color-gold-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.stat-card {
  min-width: 0;
  min-height: 90px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 15px 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.stat-card img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 8px;
  border-radius: 50%;
  background: var(--color-sage);
  object-fit: contain;
}

.stat-card h2 {
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.15;
}

.stat-card p {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 12px;
  white-space: nowrap;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(285px, 1fr);
  align-items: start;
  gap: 14px;
}

.dashboard-main,
.dashboard-side {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.creative-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr .75fr;
  gap: 12px;
}

.panel,
.roi-grid article {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.panel {
  padding: 14px;
}

.panel > h2,
.panel-heading h2 {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.2;
}

.route-map {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  border-radius: 5px;
  object-fit: cover;
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 13px;
}

.route-stats div {
  display: grid;
}

.route-stats strong {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
}

.route-stats span {
  color: var(--color-muted);
  font-size: 11px;
  white-space: nowrap;
}

.postcards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.postcards figure {
  min-width: 0;
}

.postcards figcaption {
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
}

.postcards img {
  width: 100%;
  aspect-ratio: .72 / 1;
  border-radius: 5px;
  object-fit: cover;
  object-position: top;
}

.landing-panel > img {
  width: min(100%, 156px);
  max-height: 335px;
  margin: 0 auto;
  object-fit: contain;
}

.postcard-panel details,
.landing-panel details {
  display: none;
}

.postcard-panel summary,
.landing-panel summary {
  color: var(--color-green);
  font-weight: 700;
  cursor: pointer;
}

.postcard-panel details p,
.landing-panel details p {
  margin-top: 8px;
}

.landing-panel details .button {
  margin-top: 10px;
}

.information-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr 1.3fr;
  gap: 12px;
}

.delivery-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-steps::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #7fb184;
}

.delivery-steps li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.delivery-steps img {
  display: none;
}

.delivery-steps li::before {
  content: "";
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='m5 12 5 5 9-10'/></svg>") center / 15px 15px no-repeat;
}

.delivery-steps strong {
  margin-top: 6px;
  font-size: 12px;
  white-space: nowrap;
}

.delivery-steps span {
  color: var(--color-muted);
  font-size: 12px;
}

.detail-panel dl {
  display: grid;
}

.detail-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px solid #e8e9e6;
  font-size: 12px;
}

.detail-panel dl div:last-child {
  border-bottom: 0;
}

.detail-panel dt {
  white-space: nowrap;
  color: #59605c;
}

.detail-panel dd {
  white-space: nowrap;
  text-align: right;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-heading h2 {
  margin-bottom: 0;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  white-space: nowrap;
}

th,
td {
  padding: 8px 9px;
  border-bottom: 1px solid #e5e6e3;
  text-align: left;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

th {
  color: #38413c;
  font-weight: 700;
}

td a,
.text-link,
.panel-heading a {
  color: var(--color-green);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  font-size: 14px;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.funnel-list {
  display: grid;
}

.funnel-list > div {
  min-height: 36px;
  display: grid;
  grid-template-columns: 34% 1fr;
  align-items: center;
  gap: 12px;
}

.funnel-shape {
  height: 36px;
  justify-self: center;
  background: var(--color-evergreen);
  clip-path: polygon(6% 0, 94% 0, 88% 100%, 12% 100%);
}

.level-1 { width: 100%; opacity: 1; }
.level-2 { width: 88%; opacity: .82; }
.level-3 { width: 76%; opacity: .67; }
.level-4 { width: 64%; opacity: .51; }
.level-5 { width: 52%; opacity: .37; }
.level-6 { width: 40%; opacity: .25; }
.level-7 { width: 28%; opacity: .16; }

.funnel-list p {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}

.funnel-list p strong,
.funnel-list p b {
  font-weight: 600;
  white-space: nowrap;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.roi-grid article {
  padding: 12px;
}

.roi-grid h2 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.roi-grid strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.15;
}

.roi-grid p {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 12px;
}

.offer-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.offer-content img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}

.offer-content strong {
  display: block;
  font-size: 13px;
}

.offer-content p {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 12px;
}

.activity-panel ul {
  display: grid;
  gap: 11px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.activity-panel li {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  align-items: start;
  gap: 9px;
}

.activity-panel li img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.activity-panel li div {
  min-width: 0;
  display: grid;
}

.activity-panel li strong,
.activity-panel li span,
.activity-panel li time,
.activity-panel li em {
  font-size: 12px;
}

.activity-panel li strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-panel li span {
  color: #555d58;
}

.activity-panel li time {
  color: var(--color-muted);
  white-space: nowrap;
}

.activity-panel li em {
  width: max-content;
  margin-top: 3px;
  padding: 2px 6px;
  border-radius: 4px;
  color: #174b2a;
  background: var(--color-sage);
  font-style: normal;
  font-weight: 700;
}

footer {
  flex: 0 0 auto;
  background: var(--color-evergreen);
}

@media (max-width: 1220px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .dashboard-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-panel {
    grid-row: span 2;
  }
}

@media (max-width: 960px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    position: relative;
    width: 100%;
    overflow: visible;
  }

  .brand {
    padding: 18px 20px 10px;
  }

  .brand img {
    width: 180px;
  }

  .primary-nav {
    display: flex;
    overflow-x: auto;
    padding: 8px 16px 16px;
  }

  .primary-nav a {
    flex: 0 0 auto;
  }

  .sidebar-insight,
  .sidebar-house {
    margin: 0;
  }

  .sidebar-insight {
    margin: 0 20px 18px;
  }

  .sidebar-house {
    width: 100%;
    max-height: 260px;
    aspect-ratio: 2.5 / 1;
  }

  .workspace {
    margin-left: 0;
  }

  .topbar {
    flex-wrap: wrap;
  }

  .search {
    width: 100%;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .landing-panel {
    grid-column: span 2;
  }

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

  .delivery-panel {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .topbar {
    padding: 13px 16px;
  }

  .date-button span,
  .profile-button span,
  .profile-button > svg {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .content-container {
    padding: 17px 14px 24px;
  }

  .pine-decoration {
    width: 105px;
    opacity: .65;
  }

  .heading-row h1 {
    font-size: 38px;
  }

  .campaign-name-row h2 {
    font-size: 18px;
  }

  .campaign-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats-grid,
  .creative-grid,
  .information-grid,
  .dashboard-side,
  .roi-grid {
    grid-template-columns: 1fr;
  }

  .landing-panel,
  .delivery-panel {
    grid-column: auto;
  }

  .stat-card {
    min-height: auto;
  }

  .postcards {
    gap: 9px;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 15px;
  }

  .delivery-steps::before {
    top: 12px;
    bottom: 12px;
    left: 13px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .delivery-steps li {
    grid-template-columns: 27px 1fr auto;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .delivery-steps strong {
    margin-top: 0;
  }

  .activity-panel {
    grid-row: auto;
  }
}

/* ===== app consistency: pinned palette (leads ref) ===== */
:root{--color-evergreen:#04281b;--color-gold:#c99216;--color-muted:#677069;--color-background:#fbfbfb;--font-heading:"DM Serif Display",Georgia,serif;}
.sidebar {position: relative;
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px 16px 0;
  background: linear-gradient(160deg, #043426 0%, var(--color-evergreen) 65%, #003326 100%);
  color: #fff;}
.brand {display: block;
  width: 100%;
  max-width: 205px;
  margin-bottom: 28px;}
.brand img {display: block;
  width: 100%;
  object-fit: contain;}
.primary-nav {display: grid;
  gap: 5px;
  position: relative;
  z-index: 1;}
.primary-nav a {min-height: 43px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease;}
.primary-nav a:hover {background: rgba(255, 255, 255, 0.08);}
.primary-nav a.active {background: rgba(88, 135, 61, 0.36);
  color: #f4c32c;}
.primary-nav img {width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;}
.insights-card {position: relative;
  z-index: 1;
  margin: 28px 4px 22px;
  padding: 16px;
  border: 1px solid rgba(213, 167, 54, 0.7);
  border-radius: var(--radius-md);
  background: rgba(0, 44, 31, 0.72);
  box-shadow: var(--shadow-sm);}
.insights-card h2 {margin: 0 0 7px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.3;}
.insights-card p {margin: 0 0 13px;
  font-size: 14px;
  line-height: 1.45;}
.insights-card a {width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 6px;
  background: rgba(19, 81, 57, 0.75);
  font-size: 14px;
  font-weight: 600;}
.insights-card svg {width: 16px;
  height: 16px;}
.sidebar-photo {width: calc(100% + 32px);
  max-width: none;
  min-height: 260px;
  margin: auto -16px 0;
  display: block;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%);}
/* ===== app consistency overrides (leads ref) ===== */
.sidebar{width:236px !important;flex:0 0 236px !important;flex-direction:column !important;box-sizing:border-box !important;padding:22px 16px 0 !important;gap:0 !important;height:100vh !important;max-height:100vh !important;min-height:100vh !important;position:sticky !important;top:0 !important;align-self:start !important;overflow-y:auto !important;overflow-x:hidden !important;scrollbar-width:none !important;}
.sidebar::-webkit-scrollbar{display:none !important;}
.sidebar .primary-nav{margin-top:0 !important;padding-top:0 !important;flex:0 0 auto !important;}
.sidebar .brand{margin:0 0 28px !important;padding:0 !important;display:block !important;flex:0 0 auto !important;}
.sidebar .brand img{width:204px !important;height:auto !important;max-width:204px !important;}
.sidebar .insights-card{flex:0 0 auto !important;}
.sidebar-photo{position:static !important;width:236px !important;max-width:none !important;min-width:236px !important;margin:auto -16px 0 -16px !important;height:260px !important;min-height:260px !important;flex:0 0 260px !important;object-fit:cover !important;object-position:center !important;display:block !important;background:none !important;background-image:none !important;}
.sidebar .primary-nav{flex-direction:column !important;}
.sidebar .primary-nav>a{justify-content:flex-start !important;}
.sidebar .primary-nav>a>span{position:static !important;width:auto !important;height:auto !important;margin:0 !important;overflow:visible !important;clip:auto !important;clip-path:none !important;}
.page-heading h1,.main-content>h1,main h1,.workspace>h1{font-size:39px !important;line-height:1.08 !important;font-weight:400 !important;font-family:var(--font-heading) !important;}
.page-heading p,.page-subtitle{font-size:16px !important;}
.topbar{min-height:72px !important;padding-top:14px !important;padding-bottom:14px !important;align-items:center !important;}
footer,.site-footer,.app-footer{background:var(--color-evergreen) !important;}
[class*="card"],.panel{border-radius:10px;}
