:root {
  --ww-navy: #102a43;
  --ww-navy-dark: #071b2d;
  --ww-blue: #1769aa;
  --ww-teal: #0f9d8a;
  --ww-orange: #f59e0b;
  --ww-text: #243b53;
  --ww-muted: #627d98;
  --ww-border: #d9e2ec;
  --ww-surface: #ffffff;
  --ww-background: #f4f7fa;
  --ww-success: #16845b;
  --ww-danger: #c0392b;
  --ww-shadow: 0 12px 32px rgba(16, 42, 67, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ww-background);
  color: var(--ww-text);
  font-family:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--ww-blue);
}

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

.ww-container {
  width: min(100% - 40px, 1440px);
  margin-inline: auto;
}

.ww-top-bar {
  background: var(--ww-navy-dark);
  color: #d9e8f2;
  font-size: 13px;
}

.ww-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--ww-border);
  backdrop-filter: blur(12px);
}

.ww-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}
/* Focused public login page. */
.path-user .ww-public-main > .ww-container {
  padding-block: 48px;
}

.path-user .user-login-form {
  width: min(100%, 560px);
  margin-inline: auto;
  padding: 36px;
  border: 1px solid #dce5eb;
  border-top: 5px solid var(--ww-primary-color, #2878a9);
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 50, 77, 0.08);
  box-sizing: border-box;
}

.path-user .user-login-form::after {
  content: "Log in to manage your profile and opportunities.";
  display: block;
  grid-row: 2;
  margin-bottom: 26px;
  color: #64798a;
  font-size: 14px;
  line-height: 1.5;
}

.path-user .user-login-form .form-item {
  margin: 0 0 20px;
}

.path-user .user-login-form label {
  display: block;
  margin-bottom: 8px;
  color: #29465f;
  font-size: 14px;
  font-weight: 800;
}

.path-user .user-login-form input[type="text"],
.path-user .user-login-form input[type="password"] {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #cbd8e1;
  background: #fff;
  color: #17324d;
  font-size: 15px;
  box-sizing: border-box;
}

.path-user .user-login-form input:focus {
  border-color: var(--ww-primary-color, #2878a9);
  outline: 3px solid rgba(40, 120, 169, 0.12);
}

.path-user .user-login-form .form-actions {
  margin: 26px 0 0;
}

.path-user .user-login-form input[type="submit"] {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--ww-primary-color, #2878a9);
  background: var(--ww-primary-color, #2878a9);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.path-user .tabs {
  width: min(100%, 560px);
  margin: 0 auto 20px;
}

@media (max-width: 620px) {
  .path-user .ww-public-main > .ww-container {
    padding-block: 24px;
  }

  .path-user .user-login-form {
    padding: 26px 20px;
  }

  .path-user .user-login-form::before {
    font-size: 24px;
  }
}

.ww-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ww-navy);
  text-decoration: none;
}

.ww-brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ww-blue), var(--ww-teal));
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(23, 105, 170, 0.22);
}

.ww-brand__text {
  display: grid;
  line-height: 1.15;
}

.ww-brand__text strong {
  font-size: 21px;
  letter-spacing: -0.03em;
}

.ww-brand__text small {
  margin-top: 4px;
  color: var(--ww-muted);
  font-size: 11px;
  font-weight: 600;
}

.ww-public-nav {
  flex: 1;
}

.ww-public-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ww-public-nav a,
.ww-account-nav a {
  color: var(--ww-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.ww-account-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ww-register-link__mobile {
  display: none;
}

.ww-account-nav .ww-notification-bell {
  min-height: 40px;
  border-radius: 8px;
  white-space: nowrap;
}

.ww-quick-bar {
  border-bottom: 1px solid var(--ww-border);
  background: #f6fafc;
}

.ww-quick-bar__inner {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 20px;
}

.ww-quick-bar__context {
  flex: 0 0 auto;
  color: var(--ww-navy);
  font-size: 13px;
}

.ww-quick-bar__actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.ww-profile-completion {
  display: inline-flex;
  min-width: 190px;
  min-height: 44px;
  margin-left: auto;
  padding: 7px 16px;
  flex: 0 0 auto;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  border: 1px solid #b9e1dc;
  border-radius: 8px;
  background: linear-gradient(135deg, #e7f8f5 0%, #f5fcfb 100%);
  color: var(--ww-navy);
  box-shadow: 0 5px 16px rgba(21, 150, 140, .12);
  white-space: nowrap;
}

.ww-profile-completion span,
.ww-profile-completion small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.ww-profile-completion strong {
  color: var(--ww-teal);
  font-size: 21px;
  line-height: 1;
}

.ww-quick-bar__link {
  flex: 0 0 auto;
  padding: 7px 12px;
  border: 1px solid var(--ww-border);
  border-radius: 7px;
  background: #fff;
  color: var(--ww-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}

.ww-quick-bar__link:hover {
  border-color: var(--ww-teal);
}

.ww-quick-bar__link--primary {
  border-color: var(--ww-blue);
  background: var(--ww-blue);
  color: #fff;
}

.ww-quick-bar__link--primary:hover {
  background: var(--ww-navy);
  color: #fff;
}

.ww-button,
.button,
input[type="submit"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--ww-blue);
  border-radius: 8px;
  background: var(--ww-blue);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.ww-button:hover,
.button:hover,
input[type="submit"]:hover {
  background: var(--ww-navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(23, 105, 170, 0.18);
}

.ww-button--outline {
  background: transparent;
  color: var(--ww-blue);
}

.ww-highlighted,
.ww-header-region {
  background: #fff;
}

.ww-breadcrumb {
  padding-block: 18px 4px;
  color: var(--ww-muted);
  font-size: 13px;
}

.ww-dashboard {
  min-height: calc(100vh - 76px);
  padding: 24px 0 50px;
}

.ww-dashboard__grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.ww-sidebar {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border: 1px solid var(--ww-border);
  border-radius: 14px;
  background: var(--ww-surface);
  box-shadow: var(--ww-shadow);
}

.ww-sidebar__company {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--ww-border);
  background: linear-gradient(135deg, #edf7ff, #ecfbf7);
}

.ww-sidebar__avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ww-navy);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.ww-sidebar__company div {
  min-width: 0;
}

.ww-sidebar__company strong,
.ww-sidebar__company small {
  display: block;
}

.ww-sidebar__company strong {
  overflow: hidden;
  color: var(--ww-navy);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ww-sidebar__company small {
  margin-top: 2px;
  color: var(--ww-muted);
  font-size: 12px;
  font-weight: 700;
}

.ww-sidebar__nav {
  padding: 16px 12px 20px;
}

.ww-sidebar__label {
  margin: 0;
  padding: 4px 10px 10px;
  color: var(--ww-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ww-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin: 3px 0;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ww-text);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.ww-sidebar__link:hover,
.ww-sidebar__link:focus {
  background: #edf6ff;
  color: var(--ww-blue);
}

.ww-sidebar__icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e8f1f8;
  color: var(--ww-blue);
  font-size: 12px;
  font-weight: 900;
}

.ww-sidebar__region {
  padding: 16px;
  border-top: 1px solid var(--ww-border);
}

.ww-main,
.ww-public-main .ww-container {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--ww-border);
  border-radius: 14px;
  background: var(--ww-surface);
  box-shadow: var(--ww-shadow);
}

.ww-public-main {
  min-height: 65vh;
  padding: 12px 0 60px;
}

.ww-main h1,
.ww-public-main h1 {
  margin: 0 0 24px;
  color: var(--ww-navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.ww-main h2 {
  color: var(--ww-navy);
}

table {
  width: 100%;
  margin-top: 22px;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border: 1px solid var(--ww-border);
  border-radius: 10px;
  background: #fff;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ww-border);
  text-align: left;
  vertical-align: middle;
}

th {
  background: #eef3f7;
  color: var(--ww-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

tr:hover td {
  background: #f8fbfd;
}

form {
  max-width: 820px;
}

.form-item {
  margin-block: 0 22px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--ww-navy);
  font-size: 14px;
  font-weight: 800;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="url"],
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #bcccdc;
  border-radius: 7px;
  background: #fff;
  color: var(--ww-text);
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(23, 105, 170, 0.15);
  border-color: var(--ww-blue);
}

.description {
  margin-top: 6px;
  color: var(--ww-muted);
  font-size: 13px;
}

.messages {
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 0;
  border-left: 4px solid var(--ww-blue);
  border-radius: 7px;
  background: #edf7ff;
  box-shadow: none;
}

.messages--status {
  border-left-color: var(--ww-success);
  background: #ebfaf4;
}

.messages--error {
  border-left-color: var(--ww-danger);
  background: #fff1f0;
}

.ww-footer {
  padding: 38px 0;
  background: var(--ww-navy-dark);
  color: #d9e8f2;
}

.ww-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.ww-footer strong {
  color: #fff;
  font-size: 19px;
}

.ww-footer p {
  margin: 6px 0 0;
  color: #9fb3c8;
}

.ww-menu-toggle,
.ww-sidebar-overlay {
  display: none;
}

@media (max-width: 900px) {
  .ww-container {
    width: min(100% - 28px, 1440px);
  }

  .ww-header__inner {
    min-height: 68px;
  }

  .ww-brand__text small,
  .ww-public-nav {
    display: none;
  }

  .ww-header__inner {
    gap: 12px;
  }

  .ww-account-nav {
    gap: 10px;
  }

  .ww-account-nav a {
    font-size: 12px;
  }

  .ww-account-nav .ww-notification-bell,
  .ww-account-nav .ww-button {
    min-height: 38px;
    padding: 7px 10px;
  }

  .ww-menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: 0;
    padding: 9px;
    border: 1px solid var(--ww-border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
  }

  .ww-menu-toggle,
  .ww-menu-toggle span:not(.visually-hidden) {
    display: block;
  }

  .ww-menu-toggle span:not(.visually-hidden) {
    height: 2px;
    margin: 4px 0;
    background: var(--ww-navy);
  }

  .ww-dashboard__grid {
    display: block;
  }

  .ww-sidebar {
    position: fixed;
    z-index: 300;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(86vw, 320px);
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    transform: translateX(-105%);
    transition: transform 0.22s ease;
  }

  .ww-sidebar-open {
    overflow: hidden;
  }

  .ww-sidebar-open .ww-sidebar {
    transform: translateX(0);
  }

  .ww-sidebar-overlay {
    position: fixed;
    z-index: 290;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(7, 27, 45, 0.58);
  }

  .ww-sidebar-open .ww-sidebar-overlay {
    display: block;
  }

  .ww-main {
    padding: 20px;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 620px) {
  .ww-brand__text,
  .ww-account-nav > a:not(.ww-notification-bell):not(.ww-button) {
    display: none;
  }

  .ww-brand {
    margin-right: auto;
  }

  .ww-account-nav {
    margin-left: 0;
  }

  .ww-account-nav .ww-notification-bell {
    overflow: hidden;
    width: 42px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .ww-account-nav .ww-notification-bell::before {
    margin-right: 0;
    font-size: 16px;
  }

  .ww-register-link__desktop {
    display: none;
  }

  .ww-register-link__mobile {
    display: inline;
  }

  .ww-account-nav .ww-register-link {
    min-height: 36px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .ww-quick-bar__inner {
    min-height: 50px;
    gap: 12px;
  }

  .ww-quick-bar__context {
    font-size: 12px;
  }

  .ww-quick-bar__link {
    padding: 6px 10px;
    font-size: 12px;
  }

  .ww-profile-completion {
    min-width: auto;
    padding: 7px 11px;
  }

  .ww-profile-completion span,
  .ww-profile-completion small {
    display: none;
  }
}

@media (max-width: 560px) {
  .ww-container {
    width: min(100% - 20px, 1440px);
  }

  .ww-dashboard {
    padding-top: 12px;
  }

  .ww-main,
  .ww-public-main .ww-container {
    padding: 18px;
    border-radius: 10px;
  }

  .ww-main h1,
  .ww-public-main h1 {
    font-size: 28px;
  }

  .ww-footer__inner {
    display: block;
  }
}
/* WillWorks clean and elegant refinement layer. */
:root {
  --ww-navy: #17324d;
  --ww-navy-dark: #10263a;
  --ww-blue: #2878a9;
  --ww-teal: #15968c;
  --ww-text: #31465a;
  --ww-muted: #718397;
  --ww-border: #e4eaf0;
  --ww-background: #f7f9fb;
  --ww-shadow: 0 8px 28px rgba(26, 54, 79, 0.055);
}

body {
  color: var(--ww-text);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

a {
  color: #2878a9;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ww-teal);
}

.ww-header__inner {
  min-height: 70px;
}

.ww-brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(145deg, #2477a7, #15968c);
  box-shadow: 0 6px 16px rgba(24, 119, 154, 0.16);
}

.ww-brand__text strong {
  font-size: 20px;
  font-weight: 780;
}

.ww-brand__text small {
  color: #7890a5;
  font-weight: 550;
}

.ww-public-nav a,
.ww-account-nav a {
  color: #344a5f;
  font-size: 14px;
  font-weight: 650;
}

.ww-public-nav a:hover,
.ww-account-nav a:hover {
  color: var(--ww-teal);
}

.ww-dashboard {
  padding-top: 22px;
  background:
    radial-gradient(circle at top left, rgba(21, 150, 140, 0.035), transparent 32%),
    var(--ww-background);
}

.ww-dashboard__grid {
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 24px;
}

.ww-sidebar {
  border-color: #e1e8ee;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(24, 51, 75, 0.055);
}

.ww-sidebar__company {
  padding: 18px;
  background: #f5fbfb;
}

.ww-sidebar__avatar {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 9px;
  background: #173b57;
  font-size: 16px;
}

.ww-sidebar__company strong {
  font-size: 15px;
  font-weight: 750;
}

.ww-sidebar__company small {
  color: #72879a;
  font-size: 11px;
  font-weight: 650;
}

.ww-sidebar__nav {
  padding: 13px 10px 18px;
}

.ww-sidebar__label {
  padding: 5px 10px 8px;
  color: #8393a3;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.ww-sidebar__link {
  min-height: 42px;
  gap: 10px;
  margin: 2px 0;
  padding: 7px 9px;
  border-left: 3px solid transparent;
  border-radius: 7px;
  color: #42566a;
  font-size: 13.5px;
  font-weight: 650;
}

.ww-sidebar__link:hover,
.ww-sidebar__link:focus,
.ww-sidebar__link.is-active {
  border-left-color: var(--ww-teal);
  background: #f0f8f7;
  color: #176e6b;
}

.ww-sidebar__icon {
  width: 27px;
  height: 27px;
  flex-basis: 27px;
  border-radius: 7px;
  background: #eef4f7;
  color: #397494;
  font-size: 10px;
}

.ww-main,
.ww-public-main .ww-container {
  padding: 30px 34px;
  border-color: #e3e9ef;
  border-radius: 12px;
  box-shadow: var(--ww-shadow);
}

.ww-main h1,
.ww-public-main h1 {
  margin-bottom: 20px;
  color: #16324a;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 760;
  letter-spacing: -0.03em;
}

.ww-main h2 {
  margin-top: 0;
  color: #1c3952;
  font-size: 23px;
  font-weight: 720;
}

.ww-breadcrumb {
  padding-block: 14px 2px;
  color: #8998a7;
  font-size: 12px;
}

.ww-breadcrumb a {
  color: #718497;
  text-decoration: none;
}

.ww-breadcrumb a:hover {
  color: var(--ww-teal);
}

/* Drupal primary and secondary tabs. */
.tabs {
  margin: 0 0 24px;
}

.tabs ul,
ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 4px;
  border: 1px solid var(--ww-border);
  border-radius: 9px;
  background: #f5f7f9;
  list-style: none;
}

.tabs li {
  margin: 0;
}

.tabs a {
  display: block;
  padding: 8px 13px;
  border-radius: 6px;
  color: #617386;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.tabs a:hover {
  background: #fff;
  color: var(--ww-blue);
}

.tabs a.is-active,
.tabs li.is-active a {
  background: #fff;
  color: #176f78;
  box-shadow: 0 1px 4px rgba(21, 55, 76, 0.1);
}

/* Lighter buttons with restrained sizing. */
.ww-button,
.button,
input[type="submit"] {
  min-height: 40px;
  padding: 8px 15px;
  border-radius: 7px;
  background: #2878a9;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

.ww-button:hover,
.button:hover,
input[type="submit"]:hover {
  background: #176f78;
  box-shadow: 0 5px 14px rgba(23, 111, 120, 0.14);
}

/* Cleaner forms. */
form {
  max-width: 760px;
}

.form-item {
  margin-bottom: 18px;
}

label {
  color: #324b61;
  font-size: 13px;
  font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="url"],
select,
textarea {
  min-height: 43px;
  border-color: #d4dee7;
  border-radius: 7px;
  color: #334b60;
  font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #56a3ad;
  outline: 3px solid rgba(21, 150, 140, 0.1);
}

.description {
  color: #7c8d9d;
  font-size: 12px;
}

/* Clean, compact data tables. */
table {
  margin-top: 18px;
  border-color: #e1e7ec;
  border-radius: 9px;
}

th,
td {
  padding: 12px 14px;
}

th {
  background: #f6f8fa;
  color: #607387;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

td {
  color: #40566b;
  font-size: 13.5px;
}

tr:hover td {
  background: #fafcfd;
}

/* Reusable lightweight job-list design. */
.ww-job-list {
  display: grid;
  gap: 12px;
}

.ww-job-card {
  padding: 18px 20px;
  border: 1px solid var(--ww-border);
  border-radius: 10px;
  background: #fff;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.ww-job-card:hover {
  border-color: #c8dce1;
  box-shadow: 0 8px 22px rgba(26, 57, 79, 0.06);
  transform: translateY(-1px);
}

.ww-job-card h3 {
  margin: 0 0 6px;
  color: #183a55;
  font-size: 17px;
  font-weight: 720;
}

.ww-job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  color: #788a9b;
  font-size: 12px;
}

.ww-job-card__summary {
  margin: 10px 0 0;
  color: #536a7e;
  font-size: 13.5px;
}

@media (max-width: 900px) {
  .ww-dashboard__grid {
    display: block;
  }

  .ww-main {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .ww-main,
  .ww-public-main .ww-container {
    padding: 18px;
  }

  .tabs ul,
  ul.tabs {
    display: grid;
  }
}
/* Job and internship editor: content left, publishing controls right. */
.node-job-posting-form,
.node-internship-posting-form {
  max-width: none;
}

.node-job-posting-form .layout-node-form,
.node-internship-posting-form .layout-node-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  grid-template-rows: auto auto;
  gap: 20px 28px;
  align-items: start;
}

.node-job-posting-form .layout-region-node-main,
.node-internship-posting-form .layout-region-node-main {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-width: 0;
}

.node-job-posting-form .layout-region-node-secondary,
.node-internship-posting-form .layout-region-node-secondary {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--ww-border);
  border-radius: 10px;
  background: #fafbfd;
}

.node-job-posting-form .layout-region-node-footer,
.node-internship-posting-form .layout-region-node-footer {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--ww-border);
  border-radius: 10px;
  background: #fff;
}

.layout-region-node-secondary .vertical-tabs {
  margin: 0;
  border: 0;
  background: transparent;
}

.layout-region-node-secondary .vertical-tabs__menu {
  width: 100%;
  margin: 0 0 14px;
  border: 0;
}

.layout-region-node-secondary .vertical-tabs__menu-item {
  border: 0;
  border-bottom: 1px solid var(--ww-border);
  background: transparent;
}

.layout-region-node-secondary .vertical-tabs__menu-item a {
  padding: 10px 4px;
  color: #536b80;
  font-size: 13px;
  text-decoration: none;
}

.layout-region-node-secondary .vertical-tabs__menu-item.is-selected {
  background: transparent;
}

.layout-region-node-secondary .vertical-tabs__menu-item.is-selected a {
  color: var(--ww-teal);
}

.layout-region-node-secondary .vertical-tabs__panes {
  margin: 0;
  padding: 0;
  border: 0;
}

.layout-region-node-footer select {
  width: 100%;
}

.layout-region-node-footer .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.layout-region-node-footer .form-actions .button {
  margin: 0;
}

@media (max-width: 1100px) {
  .node-job-posting-form .layout-node-form,
  .node-internship-posting-form .layout-node-form {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 18px;
  }
}

@media (max-width: 800px) {
  .node-job-posting-form .layout-node-form,
  .node-internship-posting-form .layout-node-form {
    display: block;
  }

  .node-job-posting-form .layout-region-node-secondary,
  .node-internship-posting-form .layout-region-node-secondary,
  .node-job-posting-form .layout-region-node-footer,
  .node-internship-posting-form .layout-region-node-footer {
    margin-top: 18px;
  }
}
/* Node form publishing sidebar. */
.layout-node-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px 28px;
  align-items: start;
}

.layout-region-node-main {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-width: 0;
}

.layout-region-node-secondary {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.layout-region-node-footer {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
}

.ww-publishing-panel,
.ww-publishing-actions {
  padding: 18px;
  border: 1px solid var(--ww-border);
  border-radius: 10px;
  background: #fafbfd;
}

.ww-publishing-panel__title {
  margin: 0 0 14px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ww-border);
  color: #29465d !important;
  font-size: 15px !important;
  font-weight: 750 !important;
}

.ww-publishing-panel .vertical-tabs {
  margin: 0;
  border: 0;
}

.ww-publishing-panel .vertical-tabs__menu {
  float: none;
  width: 100%;
  margin: 0 0 12px;
  border: 0;
}

.ww-publishing-panel .vertical-tabs__panes {
  margin: 0;
  padding: 0;
  border: 0;
}

.ww-publishing-panel .vertical-tabs__menu-item {
  border: 0;
  border-bottom: 1px solid var(--ww-border);
  background: transparent;
}

.ww-publishing-panel .vertical-tabs__menu-item a {
  padding: 10px 0;
  font-size: 12px;
}

.ww-publishing-actions select,
.ww-publishing-actions .form-item {
  width: 100%;
}

.ww-publishing-actions .form-actions {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.ww-publishing-actions .button {
  width: 100%;
  margin: 0;
}

@media (max-width: 950px) {
  .layout-node-form {
    display: block;
  }

  .layout-region-node-secondary,
  .layout-region-node-footer {
    margin-top: 18px;
  }
}
/* Force WillWorks node editor columns over Drupal defaults. */
.ww-main .layout-node-form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px !important;
  grid-template-areas:
    "main secondary"
    "main footer" !important;
  gap: 18px 28px !important;
  width: 100% !important;
}

.ww-main .layout-region-node-main {
  grid-area: main !important;
  float: none !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ww-main .layout-region-node-secondary {
  grid-area: secondary !important;
  position: static !important;
  float: none !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ww-main .layout-region-node-footer {
  grid-area: footer !important;
  position: static !important;
  float: none !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  align-self: start;
}

.ww-main .layout-region-node-secondary .vertical-tabs {
  display: block !important;
  width: 100% !important;
}

.ww-main .layout-region-node-secondary .vertical-tabs__menu {
  position: static !important;
  float: none !important;
  width: 100% !important;
}

.ww-main .layout-region-node-secondary .vertical-tabs__panes {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

@media (max-width: 950px) {
  .ww-main .layout-node-form {
    display: block !important;
  }

  .ww-main .layout-region-node-secondary,
  .ww-main .layout-region-node-footer {
    margin-top: 18px !important;
  }
}
/* Keep publishing actions directly below revision controls. */
.ww-main .layout-node-form {
  grid-template-areas: "main secondary" !important;
  grid-template-rows: auto !important;
}

.ww-main .layout-region-node-main {
  grid-area: main !important;
}

.ww-main .layout-region-node-secondary {
  grid-area: secondary !important;
  align-self: start;
}

.ww-publishing-actions {
  margin-top: 14px;
}

@media (min-width: 951px) {
  .ww-main .layout-region-node-secondary {
    position: sticky !important;
    top: 94px;
  }
}
/* Values controlled through WillWorks Theme Settings. */
body {
  background: var(--ww-body-background);
  color: var(--ww-admin-text-color);
  font-family: var(--ww-admin-font-family);
}

a {
  color: var(--ww-admin-link-color);
}

.ww-header {
  background: var(--ww-header-background);
}

.ww-footer {
  background: var(--ww-footer-background);
}

.ww-button,
.button,
input[type="submit"] {
  border-color: var(--ww-primary-color);
  background: var(--ww-primary-color);
}

.ww-main h1,
.ww-main h2,
.ww-main h3,
.ww-public-main h1,
.ww-public-main h2,
.ww-public-main h3 {
  color: var(--ww-admin-heading-color);
}
/* Admin-controlled typography and buttons. */
body,
button,
input,
select,
textarea {
  font-family: var(--ww-admin-font-family);
}

.ww-button,
.button,
input[type="submit"],
button.button {
  min-height: var(--ww-button-height);
  border-color: var(--ww-button-background);
  border-radius: var(--ww-button-radius);
  background: var(--ww-button-background);
  color: var(--ww-button-text-color);
  font-weight: var(--ww-button-font-weight);
}

.ww-button:visited,
.button:visited {
  color: var(--ww-button-text-color);
}

.ww-button:hover,
.ww-button:focus,
.button:hover,
.button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
button.button:hover,
button.button:focus {
  border-color: var(--ww-button-hover-background);
  background: var(--ww-button-hover-background);
  color: var(--ww-button-hover-text-color);
}

.ww-button--outline {
  border-color: var(--ww-button-background);
  background: transparent;
  color: var(--ww-button-background);
}

.ww-button--outline:hover,
.ww-button--outline:focus {
  border-color: var(--ww-button-hover-background);
  background: var(--ww-button-hover-background);
  color: var(--ww-button-hover-text-color);
}
/* Square visual system for all public inner pages. */
.ww-public-main,
.ww-public-main *:not(input[type="radio"]):not(input[type="checkbox"]),
.ww-public-main *::before,
.ww-public-main *::after {
  border-radius: 0 !important;
}
/* Clean square public header. */
.ww-header {
  border-bottom: 1px solid #dce4ea;
  background: #fff;
  box-shadow: none;
}

.ww-header__inner {
  min-height: 72px;
  gap: 38px;
}

/* Square brand mark. */
.ww-brand__mark {
  border-radius: 0 !important;
  box-shadow: none;
}

/* Keep direct and Drupal-generated menu links aligned. */
.ww-public-nav {
  display: flex;
  flex: 1;
  align-items: stretch;
  gap: 30px;
  min-height: 72px;
}

.ww-public-nav > a,
.ww-public-nav > ul,
.ww-public-nav > div,
.ww-public-nav li {
  display: flex;
  align-items: stretch;
  margin: 0;
}

.ww-public-nav ul {
  gap: 30px;
  padding: 0;
}

.ww-public-nav a {
  display: inline-flex;
  position: relative;
  align-items: center;
  padding: 0;
  color: #30485d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ww-public-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
}

.ww-public-nav a:hover {
  color: #126f75;
}

.ww-public-nav a:hover::after,
.ww-public-nav a.is-active::after,
.path-jobs .ww-public-nav > a::after {
  background: #15968c;
}

/* Clean account actions. */
.ww-account-nav {
  gap: 12px;
}

.ww-account-nav > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 4px;
  border-radius: 0 !important;
}

.ww-account-nav > .ww-button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 0 !important;
  box-shadow: none;
  transform: none;
}

.ww-account-nav > .ww-button:hover {
  box-shadow: none;
  transform: none;
}

/* Remove remaining header rounding. */
.ww-header *,
.ww-header *::before,
.ww-header *::after {
  border-radius: 0 !important;
}
/* Keep the header outline action readable. */
.ww-account-nav .ww-button--outline {
  border: 1px solid var(--ww-primary-color, #2878a9);
  background: transparent;
  color: var(--ww-primary-color, #2878a9) !important;
}

.ww-account-nav .ww-button--outline:hover,
.ww-account-nav .ww-button--outline:focus {
  border-color: var(--ww-primary-color, #2878a9);
  background: var(--ww-primary-color, #2878a9);
  color: #fff !important;
}
/* Responsive public header. */
@media (max-width: 900px) {
  .ww-header__inner {
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
    gap: 0 18px;
    padding-top: 10px;
  }

  .ww-brand {
    min-height: 52px;
  }

  .ww-brand__mark {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .ww-brand__text small {
    display: none;
  }

  .ww-account-nav {
    min-height: 52px;
    margin-left: auto;
    gap: 8px;
  }

  .ww-register-link__desktop {
    display: none;
  }

  .ww-register-link__mobile {
    display: inline;
  }

  .ww-account-nav > a {
    min-height: 38px;
    font-size: 12px;
  }

  .ww-account-nav > .ww-button {
    min-height: 38px;
    padding-inline: 12px;
  }

  .ww-public-nav {
    display: flex;
    flex: 0 0 100%;
    order: 3;
    min-height: 44px;
    gap: 24px;
    overflow-x: auto;
    border-top: 1px solid #edf1f4;
  }

  .ww-public-nav > a,
  .ww-public-nav > ul,
  .ww-public-nav > div,
  .ww-public-nav li {
    min-height: 44px;
  }

  .ww-public-nav ul {
    gap: 24px;
  }

  .ww-public-nav a {
    min-height: 44px;
    font-size: 13px;
  }
}

@media (max-width: 620px) {
  .ww-header__inner {
    width: min(100% - 20px, 1440px);
  }

  .ww-brand__text {
    display: none;
  }

  .ww-account-nav > a:not(.ww-button) {
    display: none;
  }

  .ww-account-nav > .ww-button {
    padding-inline: 9px;
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .ww-brand__mark {
    width: 36px;
    height: 36px;
  }

  .ww-account-nav {
    gap: 5px;
  }

  .ww-account-nav > .ww-button {
    padding-inline: 7px;
    font-size: 10px;
  }
}
/* Header login action. */
.ww-account-nav .ww-login-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid #cad7df;
  background: #fff;
  color: #17324d !important;
}

.ww-account-nav .ww-login-link:hover,
.ww-account-nav .ww-login-link:focus {
  border-color: var(--ww-primary-color, #2878a9);
  background: #f2f7fa;
  color: var(--ww-primary-color, #2878a9) !important;
}

.ww-login-link svg {
  flex: 0 0 auto;
}

@media (max-width: 620px) {
  .ww-account-nav .ww-login-link {
    width: 38px;
    padding: 0;
  }

  .ww-login-link span {
    display: none;
  }
}
/* Plain account navigation links with icons. */
.ww-account-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ww-account-nav .ww-account-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #17324d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ww-account-nav .ww-account-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ww-account-nav .ww-account-link:hover,
.ww-account-nav .ww-account-link:focus {
  border: 0;
  background: transparent;
  color: #15968c;
  box-shadow: none;
}

@media (max-width: 800px) {
  .ww-account-nav {
    gap: 14px;
  }

  .ww-account-nav .ww-account-link {
    font-size: 12px;
  }

  .ww-account-nav .ww-account-link svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

@media (max-width: 620px) {
  .ww-account-nav {
    margin-left: auto;
    gap: 8px;
  }

  .ww-account-nav .ww-account-link {
    width: 38px;
    min-height: 40px;
    justify-content: center;
  }

  .ww-account-nav .ww-account-link span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
/* WillWorks global typography. */
:root {
  --ww-font-family:
    "Open Sans",
    Arial,
    Helvetica,
    sans-serif;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--ww-font-family) !important;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.ww-brand__text strong,
.ww-job-result h2,
.ww-job-preview h2 {
  font-family: var(--ww-font-family) !important;
  font-weight: 700;
  letter-spacing: -0.025em;
}

button,
input,
select,
textarea {
  font-size: 15px;
}

.ww-public-nav a,
.ww-account-nav a {
  font-weight: 600;
}

.ww-job-result__company,
.ww-job-preview__company {
  font-weight: 600;
}

.ww-job-result__description,
.ww-job-preview__description {
  font-weight: 400;
  line-height: 1.65;
}
/* ==========================================================
   LOGIN MODAL
   ========================================================== */

.ui-dialog.ww-login-modal {
  overflow: hidden;
  max-width: calc(100vw - 32px);
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow:
    0 24px 70px rgba(23, 50, 77, 0.22),
    0 8px 24px rgba(23, 50(23, 50, 77, 0.12);
}

.ww-login-modal .ui-dialog-titlebar {
  display: flex;
  min-height: 68px;
  align-items: center;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid #e1e8ec;
  border-radius: 0;
  background: #fff;
  color: #17324d;
}

.ww-login-modal .ui-dialog-title {
  margin: 0;
  font-family: var(--ww-font-family);
  font-size: 22px;
  font-weight: 700;
}

.ww-login-modal .ui-dialog-titlebar-close {
  top: 50%;
  right: 20px;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #f2f6f7;
  color: #17324d;
  transform: translateY(-50%);
}

.ww-login-modal .ui-dialog-content {
  overflow: visible;
  padding: 26px 24px 28px;
  background: #fff;
}

.ww-login-modal .user-login-form {
  display: grid;
  gap: 20px;
  margin: 0;
}

.ww-login-modal .form-item {
  margin: 0;
}

.ww-login-modal .form-item label {
  display: block;
  margin-bottom: 8px;
  color: #29465f;
  font-size: 13px;
  font-weight: 700;
}

.ww-login-modal input[type="text"],
.ww-login-modal input[type="password"] {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #bdccd4;
  border-radius: 0;
  background: #fff;
  box-sizing: border-box;
  color: #17324d;
  font-size: 15px;
}

.ww-login-modal input[type="text"]:focus,
.ww-login-modal input[type="password"]:focus {
  border-color: #15968c;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(21, 150, 140, 0.14);
}

.ww-login-modal .form-actions {
  margin: 4px 0 0;
}

.ww-login-modal .form-submit {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid #157f78;
  border-radius: 0;
  background: #157f78;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.ww-login-modal .form-submit:hover,
.ww-login-modal .form-submit:focus {
  border-color: #116d68;
  background: #116d68;
}

.ww-login-modal .description {
  margin-top: 7px;
  color: #687d8e;
  font-size: 12px;
  line-height: 1.5;
}

.ui-widget-overlay {
  background: rgba(15, 35, 52, 0.58);
  opacity: 1;
}

@media (max-width: 520px) {
  .ui-dialog.ww-login-modal {
    left: 16px !important;
    width: calc(100vw - 32px) !important;
    max-width: none;
  }

  .ww-login-modal .ui-dialog-titlebar {
    min-height: 60px;
    padding: 0 18px;
  }

  .ww-login-modal .ui-dialog-content {
    padding: 22px 18px 24px;
  }
}
/* ==========================================================
   FINAL LOGIN MODAL DESIGN
   ========================================================== */

.ui-dialog.ww-login-modal {
  overflow: hidden;
  width: 460px !important;
  max-width: calc(100vw - 32px);
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff;
  box-shadow:
    0 28px 80px rgba(15, 35, 52, 0.26),
    0 8px 22px rgba(15, 35, 52, 0.12);
}

.ww-login-modal .ui-dialog-titlebar {
  display: flex;
  min-height: 60px;
  align-items: center;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid #e1e8ec;
  border-radius: 0;
  background: #fff;
}

.ww-login-modal .ui-dialog-title {
  color: #17324d;
  font-size: 20px;
  font-weight: 700;
}

.ww-login-modal .ui-dialog-titlebar-close {
  top: 50%;
  right: 18px;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #f1f5f7;
  color: #17324d;
  transform: translateY(-50%);
}

.ww-login-modal .ui-dialog-titlebar-close:hover {
  background: #e5edef;
  color: #157f78;
}

.ww-login-modal .ui-dialog-content {
  overflow: visible;
  padding: 0;
  background: #fff;
}

.ww-login-modal .user-login-form {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 26px;
}

.ww-login-intro {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5ebee;
}

.ww-login-intro__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: #edf8f6;
  color: #157f78;
}

.ww-login-intro__icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ww-login-intro strong {
  display: block;
  margin-bottom: 3px;
  color: #17324d;
  font-size: 17px;
  font-weight: 700;
}

.ww-login-intro p {
  margin: 0;
  color: #667b8d;
  font-size: 13px;
  line-height: 1.5;
}

.ww-login-modal .form-item {
  margin: 0;
}

.ww-login-modal .form-item label {
  display: block;
  margin: 0 0 7px;
  color: #29465f;
  font-size: 13px;
  font-weight: 700;
}

.ww-login-modal input[type="text"],
.ww-login-modal input[type="password"] {
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid #bdccd4;
  border-radius: 0;
  background: #fff;
  box-sizing: border-box;
  color: #17324d;
  font-size: 15px;
}

.ww-login-modal input[type="text"]:focus,
.ww-login-modal input[type="password"]:focus {
  border-color: #15968c;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(21, 150, 140, 0.14);
}

.ww-login-modal .description {
  margin-top: 6px;
  color: #708394;
  font-size: 11px;
  line-height: 1.45;
}

.ww-login-forgot {
  display: inline-flex;
  width: fit-content;
  margin-top: -6px;
  color: #157f78;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.ww-login-forgot:hover,
.ww-login-forgot:focus {
  color: #116d68;
  text-decoration: underline;
}

.ww-login-modal .form-actions {
  margin: 0;
}

.ww-login-modal .form-submit {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid #157f78 !important;
  border-radius: 0;
  background: #157f78 !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
}

.ww-login-modal .form-submit:hover,
.ww-login-modal .form-submit:focus {
  border-color: #116d68 !important;
  background: #116d68 !important;
}

@media (max-width: 520px) {
  .ui-dialog.ww-login-modal {
    left: 16px !important;
    width: calc(100vw - 32px) !important;
  }

  .ww-login-modal .ui-dialog-titlebar {
    padding: 0 18px;
  }

  .ww-login-modal .user-login-form {
    padding: 22px 18px;
  }

  .ww-login-intro {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .ww-login-intro__icon {
    width: 42px;
    height: 42px;
  }
}
/* ==========================================================
   FINAL MINIMAL LOGIN MODAL
   ========================================================== */

.ui-dialog.ww-login-modal{
  overflow: hidden !important;
  width: 440px !important;
  max-width: calc(100vw - 32px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow:
    0 30px 80px rgba(15, 35, 52, 0.24),
    0 8px 24px rgba(15, 35, 52, 0.10) !important;
}

.ui-dialog.ww-login-modal
.ui-dialog-titlebar {
  min-height: 68px !important;
  padding: 0 26px !important;
  border: 0 !important;
  border-bottom: 1px solid #e5ebee !important;
  border-radius: 0 !important;
  background: #fff !important;
}

.ui-dialog.ww-login-modal
.ui-dialog-title {
  color: #17324d !important;
  font-size: 23px !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em;
}

.ui-dialog.ww-login-modal
.ui-dialog-titlebar-close {
  top: 50% !important;
  right: 20px !important;
  width: 36px !important;
  height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #617789 !important;
  transform: translateY(-50%);
}

.ui-dialog.ww-login-modal
.ui-dialog-content {
  overflow: visible !important;
  padding: 26px 26px 20px !important;
  background: #fff !important;
}

.ui-dialog.ww-login-modal
.user-login-form {
  display: grid;
  gap: 19px;
  margin: 0;
  padding: 0;
}

.ui-dialog.ww-login-modal
.form-item {
  margin: 0 !important;
}

.ui-dialog.ww-login-modal
.form-item label {
  display: block;
  margin: 0 0 8px;
  color: #29465f;
  font-size: 13px;
  font-weight: 700;
}

.ui-dialog.ww-login-modal
input[type="text"],
.ui-dialog.ww-login-modal
input[type="password"] {
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid #bdccd4;
  border-radius: 0 !important;
  background: #fff;
  box-shadow: none;
  box-sizing: border-box;
  color: #17324d;
  font-size: 15px;
}

.ui-dialog.ww-login-modal
input[type="text"]:focus,
.ui-dialog.ww-login-modal
input[type="password"]:focus {
  border-color: #15968c;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(21, 150, 140, 0.13);
}

/* Remove Drupal's long username description. */
.ui-dialog.ww-login-modal
.description {
  display: none;
}

.ui-dialog.ww-login-modal
.ww-login-forgot {
  display: inline-flex;
  width: fit-content;
  margin-top: -7px;
  color: #157f78;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.ui-dialog.ww-login-modal
.ww-login-forgot:hover {
  color: #116d68;
  text-decoration: underline;
}

/* Drupal moves the submit button into this modal footer. */
.ui-dialog.ww-login-modal
.ui-dialog-buttonpane {
  margin: 0 !important;
  padding: 0 26px 26px !important;
  border: 0 !important;
  background: #fff !important;
}

.ui-dialog.ww-login-modal
.ui-dialog-buttonset {
  float: none !important;
  width: 100%;
}

.ui-dialog.ww-login-modal
.ui-dialog-buttonpane button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  border: 1px solid #157f78 !important;
  border-radius: 0 !important;
  background: #157f78 !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
}

.ui-dialog.ww-login-modal
.ui-dialog-buttonpane button:hover,
.ui-dialog.ww-login-modal
.ui-dialog-buttonpane button:focus {
  border-color: #116d68 !important;
  background: #116d68 !important;
}

@media (max-width: 520px) {
  .ui-dialog.ww-login-modal {
    left: 16px !important;
    width: calc(100vw - 32px) !important;
  }

  .ui-dialog.ww-login-modal
  .ui-dialog-titlebar {
    min-height: 60px !important;
    padding: 0 20px !important;
  }

  .ui-dialog.ww-login-modal
  .ui-dialog-content {
    padding: 22px 20px 18px !important;
  }

  .ui-dialog.ww-login-modal
  .ui-dialog-buttonpane {
    padding: 0 20px 22px !important;
  }
}
/* ==========================================================
   REFINED WILLWORKS TYPOGRAPHY
   ========================================================== */

html,
body {
  font-family:
    "Open Sans",
    Arial,
    Helvetica,
    sans-serif !important;
  color: #29465f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

/* Main page headings. */
h1 {
  color: #17324d;
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

h2 {
  color: #17324d;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

h3 {
  color: #17324d;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

/* Header navigation should feel lighter. */
.ww-public-nav a,
.ww-account-nav a {
  font-size: 14px;
  font-weight: 600 !important;
  letter-spacing: 0;
}

/* Search controls. */
.ww-search-field > span,
.ww-jobs-filterbar label > span,
.ww-jobs-filterbar legend {
  font-size: 12px;
  font-weight: 600 !important;
  letter-spacing: 0;
}

.ww-jobs-searchbar input,
.ww-jobs-filterbar select {
  font-size: 14px;
  font-weight: 400;
}

.ww-jobs-searchbar input::placeholder {
  color: #667b8d;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
}

.ww-search-submit,
.ww-jobs-filterbar button {
  font-size: 14px;
  font-weight: 700 !important;
}

/* Search-results summary. */
.ww-jobs-summary strong {
  font-size: 17px;
  font-weight: 700;
}

.ww-jobs-summary span {
  font-size: 13px;
  font-weight: 400;
}

/* Job cards: clear but not excessively bold. */
.ww-job-result__meta {
  font-size: 11px;
  font-weight: 500;
}

.ww-job-result__meta span {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ww-job-result h2 {
  margin: 5px 0 4px;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.32;
  letter-spacing: -0.018em;
}

.ww-job-result h2 a {
  font-weight: inherit;
}

.ww-job-result__company {
  font-size: 13px;
  font-weight: 600 !important;
  line-height: 1.4;
}

.ww-job-result__facts span,
.ww-job-result__skills span {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}

.ww-job-result__description {
  color: #526b7d;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

/* Selected-job preview. */
.ww-job-preview__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ww-job-preview h2 {
  font-size: clamp(26px, 2.3vw, 32px) !important;
  font-weight: 700 !important;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.ww-job-preview__company {
  font-size: 14px;
  font-weight: 600 !important;
}

.ww-job-preview__section h3 {
  font-size: 17px;
  font-weight: 600;
}

.ww-job-preview__description {
  color: #455f74;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

/* Login modal. */
.ui-dialog.ww-login-modal .ui-dialog-title {
  font-size: 21px !important;
  font-weight: 700 !important;
}

.ui-dialog.ww-login-modal label {
  font-size: 13px;
  font-weight: 600 !important;
}

.ui-dialog.ww-login-modal input,
.ui-dialog.ww-login-modal button {
  font-size: 14px;
}

/* Mobile typography. */
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .ww-job-result h2 {
    font-size: 17px !important;
  }

  .ww-job-result__description {
    font-size: 13px;
  }

  .ww-job-preview h2,
  .ww-mobile-preview__content h2 {
    font-size: 24px !important;
  }

  .ww-job-preview__description {
    font-size: 14px;
  }
}
/* ==========================================================
   PUBLIC VIEW — LIGHTER TYPOGRAPHY
   ========================================================== */

.ww-public-main h1,
.ww-public-main h2 {
  font-weight: 600 !important;
}

.ww-public-main h3 {
  font-weight: 500 !important;
}

.ww-public-nav a,
.ww-account-nav a {
  font-weight: 500 !important;
}

.ww-public-main .ww-search-field > span,
.ww-public-main .ww-jobs-filterbar label > span,
.ww-public-main .ww-jobs-filterbar legend {
  font-weight: 500 !important;
}

.ww-public-main .ww-search-submit,
.ww-public-main .ww-jobs-filterbar button {
  font-weight: 600 !important;
}

.ww-public-main .ww-jobs-summary strong {
  font-weight: 600;
}

.ww-public-main .ww-job-result__meta span,
.ww-public-main .ww-job-preview__type {
  font-weight: 600;
}

.ww-public-main .ww-job-result h2,
.ww-public-main .ww-job-result h2 a {
  font-weight: 600 !important;
}

.ww-public-main .ww-job-result__company,
.ww-public-main .ww-job-preview__company {
  font-weight: 400 !important;
}

.ww-public-main .ww-job-preview h2 {
  font-size: clamp(22px, 2vw, 27px) !important;
  font-weight: 600 !important;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ww-public-main .ww-job-preview__section h3 {
  font-weight: 500 !important;
}
/* Public job search — secondary text should remain light. */
.ww-public-main .ww-jobs-summary strong {
  font-weight: 400 !important;
}

.ww-public-main .ww-job-result__meta span,
.ww-public-main .ww-job-preview__type {
  font-weight: 400 !important;
}

.ww-public-main .ww-job-preview__details summary,
.ww-public-main .ww-job-preview__show-more,
.ww-public-main .ww-job-preview__show-less {
  font-weight: 400 !important;
}
/* Refined employer sidebar navigation. */
.ww-sidebar__company > div {
  min-width: 0;
}

.ww-sidebar__company strong {
  display: block;
  overflow: visible;
  color: #17324d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: clip;
  white-space: normal;
}

.ww-sidebar__company small {
  display: block;
  margin-top: 3px;
  font-weight: 400;
  line-height: 1.3;
}

.ww-sidebar__nav {
  padding: 12px 10px 16px;
}

.ww-sidebar__label {
  margin: 0 0 5px;
  padding: 5px 10px 8px;
  font-weight: 500;
}

.ww-sidebar__link {
  position: relative;
  min-height: 39px;
  margin: 1px 0;
  padding: 7px 11px;
  border: 0;
  border-radius: 5px;
  color: #435a6e;
  font-size: 13px;
  font-weight: 500;
}

.ww-sidebar__link:hover,
.ww-sidebar__link:focus {
  background: #f4f8f9;
  color: #176f6a;
}

.ww-sidebar__link.is-active {
  background: #e8f5f3;
  color: #126d66;
  font-weight: 600;
}

.ww-sidebar__link.is-active::before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: #15968c;
}
/* Employer job and internship posting lists. */
.ww-main .ww-employer-postings {
  display: grid;
  grid-template-areas:
    "heading action"
    "summary summary"
    "table table";
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 24px;
  width: 100%;
}

.ww-main .ww-employer-postings__heading {
  grid-area: heading;
}

.ww-main .ww-employer-postings__heading span {
  display: block;
  margin-bottom: 5px;
  color: #718596;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ww-main .ww-employer-postings__heading h1 {
  margin: 0 !important;
  color: #17324d;
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* Post button. */
.ww-main .ww-employer-postings > .button {
  grid-area: action;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #167c74 !important;
  border-radius: 6px;
  background: #167c74 !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.ww-main .ww-employer-postings > .button:hover,
.ww-main .ww-employer-postings > .button:focus {
  border-color: #105f59 !important;
  background: #105f59 !important;
  color: #fff !important;
}

/* Posting usage cards. */
.ww-main .ww-posting-summary {
  grid-area: summary;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border: 1px solid #e0e7ec;
  border-radius: 8px;
  background: #f7f9fa;
}

.ww-main .ww-summary-card {
  display: flex;
  min-height: 66px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 12px 15px;
  border: 1px solid #dce5eb;
  border-radius: 6px;
  background: #fff;
}

.ww-main .ww-summary-card span {
  color: #64798a;
  font-size: 12px;
  font-weight: 400;
}

.ww-main .ww-summary-card strong {
  color: #17324d;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
}

/* Postings table. */
.ww-main table.ww-postings-table {
  grid-area: table;
  width: 100%;
  margin: 0 !important;
  border: 1px solid #dce5eb;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  overflow: hidden;
}

.ww-main table.ww-postings-table thead {
  background: #f4f7f9;
}

.ww-main table.ww-postings-table th {
  padding: 12px 15px;
  border: 0;
  border-bottom: 1px solid #dce5eb;
  color: #64798a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
}

.ww-main table.ww-postings-table td {
  padding: 15px;
  border: 0;
  border-bottom: 1px solid #e5ebef;
  color: #526b7d;
  font-weight: 400;
  vertical-align: middle;
}

.ww-main table.ww-postings-table tbody tr:last-child td {
  border-bottom: 0;
}

.ww-main table.ww-postings-table tbody tr:hover {
  background: #fafcfc;
}

.ww-main table.ww-postings-table td:first-child {
  color: #17324d;
  font-weight: 500;
}

/* Status labels. */
.ww-main .ww-posting-status {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: #eef2f4;
  color: #536b7d;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.ww-main .ww-posting-status--published {
  background: #e5f5ed;
  color: #287653;
}

.ww-main .ww-posting-status--draft,
.ww-main .ww-posting-status--unpublished {
  background: #edf0f2;
  color: #596b78;
}

.ww-main .ww-posting-status--pending-review {
  background: #fff4d9;
  color: #8a6418;
}

.ww-main .ww-posting-status--archived {
  background: #f5e9e9;
  color: #8a4949;
}

/* Row actions. */
.ww-main .ww-posting-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ww-main .ww-posting-actions a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #cbd9e1;
  border-radius: 4px;
  background: #fff;
  color: #176f9f;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.ww-main .ww-posting-actions a:hover,
.ww-main .ww-posting-actions a:focus {
  border-color: #176f9f;
  background: #f2f8fa;
}

.ww-main .ww-employer-postings .ww-limit-message {
  grid-area: action;
  margin: 0;
}

/* Responsive posting list. */
@media (max-width: 700px) {
  .ww-main .ww-employer-postings {
    grid-template-areas:
      "heading"
      "action"
      "summary"
      "table";
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .ww-main .ww-employer-postings > .button {
    justify-self: start;
  }

  .ww-main .ww-posting-summary {
    grid-template-columns: 1fr;
  }

  .ww-main table.ww-postings-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
/* Final employer postings override. */
.ww-employer-postings {
  display: grid !important;
  grid-template-areas:
    "heading action"
    "summary summary"
    "table table" !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 20px 24px !important;
  width: 100% !important;
}

.ww-employer-postings__heading {
  grid-area: heading !important;
}

.ww-employer-postings__heading span {
  display: block !important;
  margin-bottom: 5px !important;
  color: #718596 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.ww-employer-postings__heading h1 {
  margin: 0 !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.ww-employer-postings > .button {
  grid-area: action !important;
  min-height: 42px !important;
  padding: 0 18px !important;
  border: 1px solid #167c74 !important;
  border-radius: 6px !important;
  background: #167c74 !important;
  color: #fff !important;
}

.ww-posting-summary {
  grid-area: summary !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.ww-summary-card {
  display: flex !important;
  min-height: 72px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 14px 16px !important;
  border: 1px solid #dce5eb !important;
  border-radius: 7px !important;
  background: #f8fafb !important;
}

.ww-summary-card span {
  display: block !important;
  color: #64798a !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

.ww-summary-card strong {
  display: block !important;
  color: #17324d !important;
  font-size: 22px !important;
  font-weight: 600 !important;
}

table.ww-postings-table {
  grid-area: table !important;
  width: 100% !important;
  margin: 0 !important;
}

.ww-posting-status {
  display: inline-flex !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  background: #eef2f4 !important;
  color: #536b7d !important;
  font-size: 11px !important;
  text-decoration: none !important;
}

.ww-posting-status--published {
  background: #e5f5ed !important;
  color: #287653 !important;
}

.ww-posting-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.ww-posting-actions a {
  display: inline-flex !important;
  min-height: 30px !important;
  align-items: center !important;
  padding: 0 10px !important;
  border: 1px solid #cbd9e1 !important;
  border-radius: 4px !important;
  color: #176f9f !important;
  text-decoration: none !important;
}

@media (max-width: 700px) {
  .ww-employer-postings {
    grid-template-areas:
      "heading"
      "action"
      "summary"
      "table" !important;
    grid-template-columns: 1fr !important;
  }

  .ww-posting-summary {
    grid-template-columns: 1fr !important;
  }
}
/* Standalone login-page navigation. */
.path-user .tabs-wrapper {
  width: min(calc(100% - 32px), 700px);
  margin: 18px auto 12px !important;
  padding: 5px !important;
  border: 1px solid #d7e1e7;
  border-radius: 7px;
  background: #f2f6f7;
}

.path-user .tabs {
  display: flex !important;
  gap: 5px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.path-user .tabs li {
  margin: 0 !important;
  padding: 0 !important;
}

.path-user .tabs a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 15px !important;
  border: 0 !important;
  border-radius: 5px;
  background: transparent;
  color: #526b7d;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.path-user .tabs a:hover,
.path-user .tabs a:focus {
  background: #e4efee;
  color: #126d66;
}

.path-user .tabs a.is-active,
.path-user .tabs li.is-active a {
  background: #167c74 !important;
  color: #fff !important;
}

/* Pull the login card closer to the tabs. */
.path-user .ww-public-main {
  padding-top: 8px !important;
}

.path-user .ww-public-main > .ww-container {
  margin-top: 0 !important;
}
/* Login page already provides its own password-reset link. */
body:has(.user-login-form) .tabs-wrapper,
body:has(.user-login-form) nav.tabs-wrapper,
body:has(.user-login-form) .tabs {
  display: none !important;
}

/* Remove the space previously occupied by the tabs. */
body:has(.user-login-form) .ww-public-main {
  padding-top: 20px !important;
}
/* Standalone authentication pages. */
.ww-auth-page {
  min-height: 620px;
  padding: 38px 20px 70px !important;
  background: #f5f8f9;
}

.ww-auth-page > .ww-container {
  width: min(100%, 560px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ww-auth-page .user-pass {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 34px 38px;
  border: 1px solid #dbe4e9;
  border-top: 4px solid #167c74;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(23, 50, 77, 0.08);
}

.ww-auth-heading {
  margin-bottom: 26px;
}

.ww-auth-heading span {
  display: block;
  margin-bottom: 6px;
  color: #167c74;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ww-auth-heading h1 {
  margin: 0 !important;
  color: #17324d;
  font-size: 28px !important;
  font-weight: 600 !important;
  line-height: 1.2;
}

.ww-auth-heading p {
  margin: 9px 0 0;
  color: #64798a;
  font-size: 13px;
  line-height: 1.55;
}

.ww-auth-page .user-pass .form-item {
  margin: 0 0 18px;
}

.ww-auth-page .user-pass label {
  display: block;
  margin-bottom: 7px;
  color: #29465f;
  font-size: 13px;
  font-weight: 500;
}

.ww-auth-page .user-pass input[type="text"] {
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  padding: 0 13px;
  border: 1px solid #cbd8e0;
  border-radius: 5px;
  background: #fff;
}

.ww-auth-page .user-pass input[type="submit"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid #167c74;
  border-radius: 5px;
  background: #167c74;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.ww-auth-page .user-pass input[type="submit"]:hover {
  background: #105f59;
}

@media (max-width: 600px) {
  .ww-auth-page {
    padding: 20px 12px 50px !important;
  }

  .ww-auth-page .user-pass {
    padding: 26px 20px;
  }
}

.ww-header .ww-brand img.ww-brand__mark {
  display: block !important;
  width: 210px !important;
  height: auto !important;
  max-width: none !important;
  flex: 0 0 210px !important;
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 600px) {
  .ww-header .ww-brand img.ww-brand__mark {
    width: 165px !important;
    flex-basis: 165px !important;
  }
}
.ww-header .ww-brand .ww-main-logo {
  display: block !important;
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
  flex: 0 0 150px !important;
}

@media (max-width: 600px) {
  .ww-header .ww-brand .ww-main-logo {
    width: 125px !important;
    max-width: 125px !important;
    flex-basis: 125px !important;
  }
}