:root {
  --cc-bg: #111111;
  --cc-panel: #151515;
  --cc-line: #25262d;
  --cc-ink: #ffffff;
  --cc-muted: #c6cad6;
  --cc-red: #ef3f4d;
}

body.cc-shell-ready {
  margin: 0;
}

body .widget-header,
body .widget-footer,
body > header.topbar,
body > footer {
  display: none !important;
}

.cc-shell-header,
.cc-shell-footer {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  background: var(--cc-panel);
  color: var(--cc-ink);
}

.cc-shell-header {
  border-bottom: 1px solid var(--cc-line);
}

.cc-shell-inner {
  width: min(1192px, calc(100% - 32px));
  margin: 0 auto;
}

.cc-shell-header .cc-shell-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto auto;
  align-items: center;
  gap: 34px;
}

.cc-brand {
  display: inline-block;
  color: var(--cc-ink);
  text-decoration: none;
  min-width: 0;
}

.cc-brand img {
  display: none;
}

.cc-brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.cc-brand-kicker {
  display: none;
}

.cc-brand-title {
  color: var(--cc-ink);
  display: block;
  max-width: 330px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: .9;
  text-transform: uppercase;
}

.cc-shell-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.cc-shell-nav a {
  color: var(--cc-ink);
  text-decoration: none;
}

.cc-shell-nav a[aria-current="page"] {
  color: var(--cc-red);
  border-bottom: 1px solid var(--cc-red);
  padding-bottom: 4px;
}

.cc-shell-phone {
  color: var(--cc-red);
  font-size: 24px;
  letter-spacing: .05em;
  text-decoration: none;
  white-space: nowrap;
}

.cc-shell-footer {
  border-top: 1px solid var(--cc-line);
}

.cc-shell-footer .cc-shell-inner {
  min-height: 86px;
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  color: var(--cc-muted);
  text-align: center;
  font-size: 14px;
}

.cc-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cc-footer-links a {
  color: var(--cc-ink);
  text-decoration: none;
}

@media (max-width: 980px) {
  .cc-shell-header .cc-shell-inner {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .cc-shell-nav ul {
    justify-content: start;
    gap: 14px 20px;
  }

  .cc-shell-phone {
    justify-self: start;
  }
}
