:root {
  --bg: #f2f0ed;
  --orange: #ff401a;
  --pink: #ff59ac;
  --pink-soft: #ff66b2;
  --burgundy: #990026;
  --muted: #bf978f;
  --cover: #d9d5d0;
  --gap: 32px;
  --desktop-col: 300px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--orange);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 16px;
}

.catalog-screen {
  display: grid;
  gap: var(--gap);
}

.sidebar-panel {
  display: grid;
  gap: 32px;
}

.sidebar-top {
  display: grid;
  gap: 32px;
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 32px;
  z-index: 2000;
}

.site-icon {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-wordmark {
  position: relative;
  width: 176px;
  height: 32px;
  flex: 0 0 176px;
  overflow: visible;
}

.site-wordmark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 32px;
  flex: 0 0 176px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-wordmark-media {
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 176px;
  height: 33px;
  overflow: visible;
  pointer-events: none;
  background: center / 176px 33px no-repeat url("./assets/wordmark-home-default.svg");
}

.site-wordmark-button:hover .site-wordmark-media,
.site-wordmark-button:focus-visible .site-wordmark-media {
  background-image: url("./assets/wordmark-home-hover.svg");
}

.site-wordmark-button:active .site-wordmark-media {
  background-image: url("./assets/wordmark-home-active.svg");
}

.site-wordmark-button:focus-visible {
  outline: 1px solid var(--pink);
  outline-offset: 2px;
}

.site-wordmark-token {
  position: absolute;
  top: 7px;
  width: 24px;
  transform: translateX(-50%);
  color: #f2f0ed;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
  text-align: center;
  pointer-events: none;
}

.site-wordmark-token-prefix {
  left: 31px;
}

.site-wordmark-token-index {
  left: 63px;
}

.profile-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2100;
}

.profile-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.profile-icon-state {
  display: block;
  width: 32px;
  height: 32px;
  background: center / contain no-repeat url("./assets/profile-state-default.svg");
}

.profile-trigger:hover .profile-icon-state,
.profile-trigger:focus-visible .profile-icon-state,
.profile-menu:hover .profile-icon-state {
  background-image: url("./assets/profile-state-hover.svg");
}

.profile-trigger:active .profile-icon-state,
.profile-menu.is-open .profile-icon-state {
  background-image: url("./assets/profile-state-active.svg");
}

.profile-trigger:focus-visible {
  outline: 1px solid var(--pink);
  outline-offset: 2px;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 2200;
  width: min(288px, calc(100vw - 32px));
  display: none;
  flex-direction: column;
  align-items: stretch;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 64px rgba(255, 102, 178, 0.5);
  overflow: hidden;
}

.profile-menu.is-open .profile-dropdown {
  display: flex;
}

.profile-dropdown-item {
  width: 100%;
  padding: 8px 0;
  margin: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.profile-dropdown-item-email {
  color: #bfada1;
}

.profile-dropdown-item-logout {
  border-top: 1px solid #f2ebe6;
  color: var(--orange);
  cursor: pointer;
  transition: color 0.15s ease;
}

.profile-dropdown-item-logout:hover,
.profile-dropdown-item-logout:focus-visible {
  color: var(--burgundy);
}

.profile-dropdown-item-logout:active {
  color: #730026;
}

.site-logo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-logo-icon {
  display: block;
  width: 32px;
  height: 32px;
  background: center / contain no-repeat url("./assets/logo-state-default.svg");
}

.site-logo-button:hover .site-logo-icon,
.site-logo-button:focus-visible .site-logo-icon {
  background-image: url("./assets/logo-state-hover.svg");
}

.site-logo-button:active .site-logo-icon {
  background-image: url("./assets/logo-state-active.svg");
}

.site-logo-button:focus-visible {
  outline: 1px solid var(--pink);
  outline-offset: 2px;
}

.filter-panel {
  display: grid;
}

.search-row,
.filter-row,
.clear-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-top: 1px solid var(--pink);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.search-row {
  height: 48px;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.search-row input {
  flex: 1 0 0;
  min-width: 0;
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--pink);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
  outline: 0;
  transition: color 0.15s ease;
}

.search-row input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.search-row input::placeholder {
  color: #ff59ac;
  opacity: 1;
  transition: color 0.15s ease;
}

.search-row input:focus::placeholder {
  color: transparent;
}

.search-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.search-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.search-action.is-hidden {
  display: none;
}

.search-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #ff59ac;
  -webkit-mask: center / 24px 24px no-repeat url("./assets/icon24-search.svg");
  mask: center / 24px 24px no-repeat url("./assets/icon24-search.svg");
  transition: background-color 0.15s ease;
}

.search-action.is-clear .search-icon {
  -webkit-mask-image: url("./assets/icon24-cancel.svg");
  mask-image: url("./assets/icon24-cancel.svg");
}

.search-row.has-value .search-action {
  display: inline-flex;
}

.filter-row {
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
}

.filter-label {
  flex: 0 0 auto;
  color: var(--pink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  font-style: normal;
  line-height: 36px;
  letter-spacing: -1.44px;
  transition: color 0.15s ease;
}

.filter-value {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-end;
  min-width: 0;
  color: #ff59ac;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
  text-align: right;
  transition: color 0.15s ease;
}

.filter-value-line {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-row select {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  display: none;
}

.clear-row {
  justify-content: flex-start;
  padding: 6px 0;
  cursor: pointer;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  color: #ff59ac;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
  transition: color 0.15s ease;
}

.filter-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.filter-popup {
  position: fixed;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: 288px;
  max-height: 356px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 64px rgba(255, 102, 178, 0.5);
}

.filter-popup:not(.has-search) {
  max-height: none;
}

.filter-popup-inner {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: 8px 16px;
}

.filter-popup-search {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 40px;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #f2ebe6;
}

.filter-popup-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--burgundy);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
}

.filter-popup-search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.filter-popup-search input::placeholder {
  color: #bfada1;
}

.filter-popup-search input:focus::placeholder {
  color: transparent;
}

.filter-popup-search:not(.has-value):hover input::placeholder {
  color: var(--burgundy);
}

.filter-popup-search:not(.has-value):hover:focus-within input::placeholder {
  color: transparent;
}

.filter-popup-search-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.filter-popup-search-action.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.filter-popup-search .search-icon {
  flex: 0 0 24px;
  min-width: 24px;
  min-height: 24px;
  background-color: #ff59ac;
}

.filter-popup-search-action.is-clear .search-icon {
  background-color: #ff59ac;
  -webkit-mask-image: url("./assets/icon24-cancel.svg");
  mask-image: url("./assets/icon24-cancel.svg");
}

.filter-popup-search-action.is-clear:hover .search-icon,
.filter-popup-search-action.is-clear:focus-visible .search-icon {
  background-color: #990026;
}

.filter-popup-search-action.is-clear:active .search-icon {
  background-color: #730026;
}

.filter-popup-search.has-value input {
  color: var(--pink-soft);
}

.filter-popup-search.has-value:focus-within input {
  color: var(--burgundy);
}

.filter-popup-list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  max-height: 332px;
  overflow-y: auto;
  padding: 8px 0;
}

.filter-popup:not(.has-search) .filter-popup-list {
  max-height: none;
  overflow: visible;
}

.filter-popup.has-search .filter-popup-list {
  max-height: 300px;
  padding-top: 0;
}

.filter-popup-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--burgundy);
  cursor: pointer;
  text-align: left;
}

.filter-popup-item-count {
  color: #bfada1;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: right;
}

.filter-popup-item-count:empty {
  display: none;
}

.filter-popup-item-copy {
  display: flex;
  flex: 1 0 0;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  height: auto;
  padding: 8px 0;
}

.filter-popup-item + .filter-popup-item .filter-popup-item-copy {
  border-top: 1px solid #f2ebe6;
}

.filter-popup-item-label {
  display: block;
  flex: 1 0 0;
  min-width: 0;
  color: var(--burgundy);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.filter-popup-item-count {
  align-self: start;
  flex: 0 0 auto;
}

.filter-popup-checkbox {
  display: flex;
  width: 40px;
  flex: 0 0 40px;
  height: 40px;
  align-self: flex-start;
  padding-right: 16px;
  justify-content: center;
  align-items: center;
}

.filter-popup-checkbox-mark {
  display: block;
  width: 24px;
  height: 18px;
  background: center / 24px 18px no-repeat url("./assets/checkbox-off.svg");
}

.filter-popup-item.is-selected .filter-popup-checkbox-mark {
  background-image: url("./assets/checkbox-on.svg");
}

.filter-popup-item:hover .filter-popup-checkbox-mark,
.filter-popup-item:focus-visible .filter-popup-checkbox-mark {
  background-image: url("./assets/checkbox-off-hover.svg");
}

.filter-popup-item.is-selected:hover .filter-popup-checkbox-mark,
.filter-popup-item.is-selected:focus-visible .filter-popup-checkbox-mark {
  background-image: url("./assets/checkbox-on-hover.svg");
}

.filter-popup-item.is-selected .filter-popup-checkbox-mark::after {
  content: none;
}

.filter-popup-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  padding: 16px;
  border-top: 1px solid #f2ebe6;
  background: #fff;
}

.filter-popup-action {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 40px;
  padding: 8px 16px;
  border: 0;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.filter-popup-action--secondary {
  background: #d9d5d0;
  color: var(--burgundy);
}

.filter-popup-action--secondary:hover,
.filter-popup-action--secondary:focus-visible {
  background: #ccc4bc;
}

.filter-popup-action--secondary:active {
  background: #bfb2a8;
}

.filter-popup-action--primary {
  background: var(--pink-soft);
  color: #fff;
}

.filter-popup-action--primary:hover,
.filter-popup-action--primary:focus-visible {
  background: var(--burgundy);
}

.filter-popup-action--primary:active {
  background: #730026;
}


.search-row:hover,
.search-row:active,
.search-row:focus-within {
  border-top-color: var(--pink);
}

.search-row:not(.has-value):hover input,
.search-row:not(.has-value):hover input::placeholder,
.filter-row:hover .filter-label,
.filter-row:hover .filter-value,
.filter-row:focus-within .filter-label,
.filter-row:focus-within .filter-value,
.clear-row:hover,
.clear-row:focus-visible {
  color: var(--burgundy);
}

.search-row:not(.has-value):active input,
.search-row:not(.has-value):active input::placeholder,
.filter-row:active .filter-label,
.filter-row:active .filter-value,
.clear-row:active {
  color: #730026;
}

.search-row:not(.has-value):hover .search-prefix .search-icon,
.search-row:not(.has-value):focus-within:hover .search-prefix .search-icon {
  background-color: var(--burgundy);
}

.search-row:not(.has-value):active .search-prefix .search-icon {
  background-color: #730026;
}

.search-row:focus-within input::placeholder,
.filter-popup-search:focus-within input::placeholder {
  color: transparent;
}

.search-row:not(.has-value):hover:focus-within input::placeholder {
  color: transparent;
}

.search-row.has-value input {
  color: var(--pink);
}

.search-row.has-value:focus-within input {
  color: var(--burgundy);
}

.search-row:focus-within .search-prefix .search-icon,
.search-row.has-value .search-prefix .search-icon,
.search-row.has-value .search-action .search-icon {
  background-color: var(--pink);
}

.search-row.has-value .search-action:hover .search-icon,
.search-row.has-value .search-action:focus-visible .search-icon {
  background-color: var(--burgundy);
}

.search-row.has-value .search-action:active .search-icon {
  background-color: #730026;
}

@media (max-width: 1365px) {
  .filter-popup.is-responsive {
    width: auto;
    max-width: none;
  }

  .filter-popup.is-responsive .filter-popup-inner {
    padding-bottom: 0;
  }

  .filter-popup.is-responsive .filter-popup-list {
    max-height: none;
    padding-bottom: 8px;
  }
}

.content-panel {
  display: grid;
  gap: 64px;
}

.content-panel.content-panel-reveal {
  opacity: 0;
  transition: opacity 0.24s ease;
}

.content-panel.content-panel-reveal.content-panel-reveal-active {
  opacity: 1;
}

.loader-host {
  display: grid;
  place-items: center;
  width: 100%;
}

.loader-host-index {
  min-height: calc(100dvh - 64px);
}

.loader-icon {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
}

.loader-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
}

.loader-frame.is-active {
  opacity: 1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

.card-grid.card-grid-reveal {
  opacity: 0;
  transition: opacity 0.22s ease;
}

.card-grid.card-grid-reveal.card-grid-reveal-active {
  opacity: 1;
}

.empty-state {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 240px;
  grid-column: 1 / -1;
}

.empty-state-title,
.empty-state-copy {
  margin: 0;
}

.empty-state-title {
  color: var(--orange);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  font-style: normal;
  line-height: 36px;
  letter-spacing: -1.44px;
}

.empty-state-copy {
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
}

.profile-card {
  display: grid;
  gap: 20px;
  align-content: start;
  align-self: start;
}

.profile-card-skeleton {
  pointer-events: none;
}

.skeleton-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: linear-gradient(110deg, #e6dfd8 8%, #f3eee8 18%, #e6dfd8 33%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s linear infinite;
}

.skeleton-lines {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.skeleton-line {
  height: 18px;
  border-radius: 10px;
  background: linear-gradient(110deg, #eadfd7 8%, #f6eee8 18%, #eadfd7 33%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s linear infinite;
}

.skeleton-line-xl {
  width: 82%;
  height: 28px;
}

.skeleton-line-l {
  width: 66%;
}

.skeleton-line-m {
  width: 48%;
}

@keyframes skeleton-shimmer {
  to {
    background-position-x: -200%;
  }
}

.card-cover {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background-color: var(--cover);
  isolation: isolate;
}

.card-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: linear-gradient(110deg, #e6dfd8 8%, #f3eee8 18%, #e6dfd8 33%);
  background-size: 200% 100%;
}

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background-image: var(--card-cover-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.2s ease;
}

.card-cover.cover-loading::before {
  opacity: 0;
  animation: none;
}

.card-cover.cover-ready::before {
  opacity: 0;
  animation: none;
}

.card-cover.cover-ready::after {
  opacity: 1;
}

.card-cover.cover-failed::before {
  opacity: 1;
  animation: none;
}

.card-cover.cover-failed::after {
  opacity: 0;
}

.card-info {
  display: grid;
  gap: 16px;
  align-content: start;
}

.card-name {
  display: grid;
  width: 100%;
  gap: 0;
  overflow: visible;
  color: var(--orange);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  font-style: normal;
  line-height: 36px;
  letter-spacing: -0.04em;
  transition: color 0.15s ease;
}

.card-name h2 {
  display: inline-block;
  min-width: 100%;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  overflow: visible;
  white-space: nowrap;
  padding-bottom: 0;
  transform: translateY(-1px);
}

.card-name h2,
.career-block p,
.footer-copy p,
.page-track span,
.page-button {
  margin: 0;
}

.career-block {
  display: grid;
  gap: 8px;
}

.profile-location-line,
.career-role,
.career-company {
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
}

.career-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.career-bullet {
  display: block;
  width: 4px;
  min-width: 4px;
  height: 28px;
  margin-top: 4px;
  align-self: flex-start;
  border-radius: 8px;
  background: var(--burgundy);
}

.career-copy {
  display: grid;
}

.tag-groups {
  display: flex;
  align-items: flex-start;
  align-self: start;
  gap: 16px;
}

.tag-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tag {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  background: var(--bg);
  border: 1px solid var(--burgundy);
  border-radius: 12px;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
  text-align: center;
  white-space: nowrap;
}

.tag + .tag {
  margin-top: -1px;
}

.profile-card-link {
  display: block;
  align-self: start;
  color: inherit;
  text-decoration: none;
}

.profile-card-link:hover .card-name,
.profile-card-link:focus-visible .card-name {
  color: var(--burgundy);
}

.profile-card-link:active .card-name {
  color: #730026;
}

.pagination {
  display: grid;
  gap: 8px;
}

.page-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 18px;
}

.page-index {
  width: 32px;
  color: var(--pink-soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
}

.page-index:nth-child(2) {
  text-align: center;
}

.page-index:last-child {
  text-align: right;
}

.page-index.is-active {
  color: var(--burgundy);
}

.page-index.is-link {
  cursor: pointer;
}

.page-buttons {
  display: flex;
  gap: 16px;
}

.page-button {
  appearance: none;
  -webkit-appearance: none;
  flex: 1 0 0;
  min-height: 64px;
  padding: 8px 32px;
  border: 0;
  border-radius: 48px;
  background: var(--pink-soft);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.page-button:hover:not(:disabled),
.page-button:focus-visible:not(:disabled) {
  background: #990026;
}

.page-button:active:not(:disabled) {
  background: #730026;
}

.page-button:disabled {
  border: 1px dashed #bf978f;
  background: transparent;
  color: #bf978f;
  -webkit-text-fill-color: #bf978f;
  opacity: 1;
  box-shadow: none;
  cursor: default;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.site-footer-desktop {
  display: none;
}

.site-footer-mobile {
  display: flex;
}

.footer-copy {
  flex: 1 0 0;
  display: grid;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
}

.footer-author-link {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-author-link:hover,
.footer-author-link:focus-visible {
  color: var(--burgundy);
}

.footer-author-link:active {
  color: #730026;
}

.footer-icon {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  background: center / 32px 32px no-repeat url("./assets/icon32-telegram-disabled.svg");
  text-decoration: none;
  transition: background-image 0.15s ease;
}

.footer-icon:hover,
.footer-icon:focus-visible {
  background-image: url("./assets/icon32-telegram-hover.svg");
}

.footer-icon:active {
  background-image: url("./assets/icon32-telegram-active.svg");
}

.data-status {
  opacity: 0.72;
}

@media (min-width: 768px) {
  .page-shell {
    padding: 24px;
  }

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

@media (min-width: 1366px) {
  .page-shell {
    min-height: 100vh;
    padding: 32px;
  }

  .catalog-screen {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 32px;
    align-items: start;
  }

  .sidebar-panel {
    grid-column: 1 / 2;
    position: sticky;
    top: 32px;
    height: calc(100vh - 64px);
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sidebar-top {
    display: grid;
    gap: 32px;
    align-content: start;
  }

  .profile-menu {
    position: static;
  }

  .profile-dropdown {
    width: 100%;
    right: 0;
  }

  .site-footer {
    margin-top: auto;
    padding-top: 64px;
  }

  .site-footer-desktop {
    display: flex;
  }

  .site-footer-mobile {
    display: none;
  }

  .content-panel {
    grid-column: 2 / 5;
    grid-row: 1;
    align-self: start;
    width: auto;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .pagination {
    width: 100%;
  }
}

@media (min-width: 1600px) {
  .catalog-screen {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .content-panel {
    grid-column: 2 / 5;
    width: auto;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pagination {
    width: 100%;
  }
}

.designer-screen {
  display: grid;
  gap: var(--gap);
}

.designer-sidebar {
  display: grid;
  gap: 32px;
}

.designer-content {
  display: grid;
  gap: 64px;
}

.loader-host-designer {
  min-height: calc(100dvh - 64px);
}

.designer-content.designer-content-reveal {
  opacity: 0;
  transition: opacity 0.24s ease;
}

.designer-content.designer-content-reveal.designer-content-reveal-active {
  opacity: 1;
}

.designer-skeleton {
  display: grid;
  gap: 64px;
}

.designer-skeleton-hero {
  display: grid;
  gap: 32px;
}

.designer-skeleton-copy {
  display: grid;
  gap: 12px;
  align-content: end;
}

.designer-skeleton-spacer {
  height: 24px;
}

.designer-skeleton-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  background: linear-gradient(110deg, #e6dfd8 8%, #f3eee8 18%, #e6dfd8 33%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s linear infinite;
}

.designer-skeleton-core {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.designer-skeleton-career {
  display: grid;
  gap: 12px;
}

.designer-skeleton-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.designer-skeleton-section {
  display: grid;
  gap: 12px;
}

.designer-skeleton-line {
  height: 20px;
  border-radius: 10px;
  background: linear-gradient(110deg, #eadfd7 8%, #f6eee8 18%, #eadfd7 33%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s linear infinite;
}

.designer-skeleton-line.short {
  width: 60%;
}

.designer-skeleton-line-name {
  height: 52px;
  width: 90%;
}

.designer-skeleton-line-meta {
  height: 24px;
  width: 72%;
}

.designer-skeleton-line-title {
  height: 36px;
  width: 220px;
  margin-bottom: 12px;
}

.designer-skeleton-line-row {
  height: 24px;
  width: 100%;
}

.designer-skeleton-tag {
  height: 34px;
  width: 180px;
  border-radius: 18px;
  background: linear-gradient(110deg, #eadfd7 8%, #f6eee8 18%, #eadfd7 33%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s linear infinite;
}

.designer-skeleton-tag.short {
  width: 140px;
}

.designer-hero {
  display: grid;
  gap: 32px;
}

.designer-main-copy {
  display: grid;
  gap: 32px;
  align-content: start;
}

.designer-name {
  display: grid;
  color: var(--burgundy);
  font-size: 54px;
  font-weight: 900;
  line-height: 54px;
  letter-spacing: -2.16px;
}

.designer-name h1 {
  margin: 0;
  font: inherit;
  white-space: normal;
  overflow-wrap: anywhere;
}

.designer-meta {
  display: grid;
  gap: 0;
  color: var(--burgundy);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.designer-meta p {
  margin: 0;
}

.designer-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cover) center / cover no-repeat;
}

.designer-core {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.designer-career-block {
  display: grid;
  gap: 8px;
}

.designer-career-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.designer-career-copy {
  display: grid;
  padding: 0;
}

.designer-career-item .career-bullet {
  align-self: stretch;
  height: auto;
  min-height: 28px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.designer-role,
.designer-company {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.designer-role {
  color: var(--burgundy);
}

.designer-company {
  color: var(--burgundy);
}

.designer-company-link {
  color: #ff401a;
  text-decoration: none;
  transition: color 0.15s ease;
}

.designer-company-link:visited {
  color: #ff401a;
}

.designer-company-link:hover,
.designer-company-link:focus-visible {
  color: #990026;
}

.designer-company-link:active {
  color: #730026;
}

.designer-tags-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.designer-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 4px 12px;
  border: 1px solid var(--burgundy);
  border-radius: 18px;
  color: var(--burgundy);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.36px;
  background: var(--bg);
}

.designer-tag + .designer-tag {
  margin-top: -1px;
}

.designer-section {
  display: grid;
  gap: 0;
}

.designer-section-title {
  margin: 0;
  padding-bottom: 28px;
  color: var(--burgundy);
  font-size: 36px;
  font-weight: 900;
  line-height: 36px;
  letter-spacing: -1.44px;
}

.designer-list,
.designer-open-list {
  display: grid;
}

.designer-achievement-item {
  display: flex;
  gap: 16px;
  padding: 8px 0;
  border-top: 1px solid rgba(153, 0, 38, 0.2);
}

.designer-achievement-copy {
  margin: 0;
  flex: 1 0 0;
  color: var(--burgundy);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.designer-achievement-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 16px;
  background: var(--burgundy);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
}

.designer-open-item {
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(153, 0, 38, 0.2);
  color: var(--burgundy);
  font-size: 36px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -1.44px;
}

.designer-links-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 343px);
}

.designer-link-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 20px 24px 24px;
  border-radius: 32px;
  background: #ff401a;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.designer-link-tile:hover,
.designer-link-tile:focus-visible {
  background: #990026;
}

.designer-link-tile:active {
  background: #730026;
}

.designer-link-label {
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
}

.designer-link-icon {
  display: block;
  align-self: flex-end;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .designer-link-tile--email {
    order: 5;
  }

  .designer-link-tile--telegram {
    order: 6;
  }
}

.designer-fallback {
  display: grid;
  gap: 12px;
  align-content: start;
}

.designer-fallback-title {
  margin: 0;
  color: var(--orange);
  font-size: 36px;
  font-weight: 900;
  line-height: 36px;
  letter-spacing: -1.44px;
}

.designer-fallback-copy {
  margin: 0;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
}

.designer-back-link {
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
  text-decoration: underline;
}

.designer-footer-desktop {
  display: none;
}

.designer-footer-mobile {
  display: flex;
}

@media (min-width: 768px) {
  .designer-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 704px;
  }
}

@media (min-width: 768px) and (max-width: 1365px) {
  .designer-skeleton {
    width: 100%;
    align-items: flex-start;
  }

  .designer-skeleton-hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 32px;
    width: 100%;
  }

  .designer-skeleton-copy {
    grid-column: 1 / 2;
    min-height: 220px;
    height: 100%;
  }

  .designer-skeleton-cover {
    grid-column: 2 / 4;
  }

  .designer-skeleton-core,
  .designer-skeleton-section {
    width: 100%;
  }

  .designer-content {
    width: 100%;
    align-items: flex-start;
  }

  .designer-hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 32px;
    width: 100%;
  }

  .designer-main-copy {
    grid-column: 1 / 2;
    width: auto;
    min-height: 220px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 32px;
  }

  .designer-cover {
    grid-column: 2 / 4;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .designer-core,
  .designer-section {
    width: 100%;
  }

  .designer-links-grid {
    width: 704px;
  }
}

@media (min-width: 1366px) {
  .designer-name {
    font-size: 54px;
    line-height: 54px;
    letter-spacing: -2.16px;
  }

  .designer-screen {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 32px;
    align-items: start;
  }

  .designer-sidebar {
    grid-column: 1 / 2;
    position: sticky;
    top: 32px;
    height: calc(100vh - 64px);
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .loader-host-designer,
  .designer-skeleton,
  .designer-content,
  .designer-fallback {
    grid-column: 2 / 5;
    grid-row: 1;
  }

  .designer-skeleton {
    align-items: flex-start;
    width: auto;
  }

  .designer-skeleton-hero {
    grid-template-columns: 320px 672px;
    align-items: stretch;
  }

  .designer-skeleton-copy {
    width: 320px;
    min-height: 220px;
    height: 100%;
    gap: 16px;
  }

  .designer-skeleton-cover {
    width: 672px;
  }

  .designer-skeleton-core {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    width: min(100%, 672px);
  }

  .designer-skeleton-career {
    flex: 1 0 0;
  }

  .designer-skeleton-tags {
    flex: 0 0 auto;
    align-items: center;
  }

  .designer-skeleton-section {
    width: min(100%, 672px);
  }

  .designer-content {
    align-items: flex-start;
    width: auto;
  }

  .designer-hero {
    grid-template-columns: 320px 672px;
    align-items: stretch;
  }

  .designer-main-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 64px;
    width: 320px;
    min-height: 220px;
    height: 100%;
  }

  .designer-cover {
    width: 672px;
  }

  .designer-core {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    width: min(100%, 672px);
  }

  .designer-career-block {
    flex: 1 0 0;
  }

  .designer-tags-block {
    flex: 0 0 auto;
    align-items: center;
  }

  .designer-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 672px;
  }

  .designer-section {
    width: min(100%, 672px);
  }

  .designer-footer-desktop {
    display: flex;
    margin-top: auto;
    padding-top: 64px;
  }

  .designer-footer-mobile {
    display: none;
  }
}

@media (min-width: 1600px) {
  .designer-screen {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .designer-skeleton,
  .designer-content,
  .designer-fallback {
    grid-column: 2 / 5;
  }

  .designer-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 672px;
  }
}
