: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: static;
  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: max-content;
  max-width: 100%;
  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 {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 8px 0;
  margin: 0;
  border: 0;
  background: transparent;
  text-align: left;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.36px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-dropdown-item[hidden] {
  display: none;
}

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

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

.profile-dropdown-item-login {
  border-top: 0;
}

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

.profile-dropdown-item-logout:active,
.profile-dropdown-item-login: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 {
  position: relative;
  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-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 {
  display: none;
}

.filter-popup-search-prefix,
.filter-popup-search-clear {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.filter-popup-search-prefix {
  position: relative;
}

.filter-popup-search-clear {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-image: url("./assets/icon24-cancel.svg");
}

.filter-popup-search-prefix-glyph {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: center / 24px 24px no-repeat url("./assets/icon24-search.svg");
}

.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: 0;
  scrollbar-width: thin;
  scrollbar-color: #bfada1 transparent;
}

.filter-popup-list::-webkit-scrollbar {
  width: 4px;
}

.filter-popup-list::-webkit-scrollbar-track {
  margin: 8px 0;
  background: transparent;
}

.filter-popup-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #bfada1;
}

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

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

.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-radio {
  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-radio-mark {
  display: block;
  width: 24px;
  height: 18px;
  border: 1px solid var(--pink);
  border-radius: 12px;
  background: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 6px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

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

.filter-popup-item--sort.is-selected .filter-popup-radio-mark {
  border-color: var(--burgundy);
  background-color: var(--burgundy);
  background-image: url("./assets/radio-mark.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--sort:hover .filter-popup-radio-mark,
.filter-popup-item--sort:focus-visible .filter-popup-radio-mark {
  border-color: var(--burgundy);
}

.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--sort.is-selected:hover .filter-popup-radio-mark,
.filter-popup-item--sort.is-selected:focus-visible .filter-popup-radio-mark {
  border-color: #730026;
  background-color: #730026;
}

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

.filter-popup-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  height: 72px;
  padding: 16px;
  position: relative;
  background: #fff;
}

.filter-popup-actions::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: #f2ebe6;
}

.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;
}

html[data-viewer="guest"] #filterPanel .search-row,
html[data-viewer="guest"] #filterPanel .filter-row,
html[data-viewer="guest"] #filterPanel .clear-row,
.filter-panel.is-gated .search-row,
.filter-panel.is-gated .filter-row,
.filter-panel.is-gated .clear-row {
  border-top: 0;
  background-image: repeating-linear-gradient(
    to right,
    var(--muted) 0 1px,
    transparent 1px 4px
  );
  background-position: top left;
  background-repeat: repeat-x;
  background-size: 4px 1px;
  cursor: default;
}

html[data-viewer="guest"] #filterPanel .search-row input,
html[data-viewer="guest"] #filterPanel .search-row input::placeholder,
html[data-viewer="guest"] #filterPanel .filter-label,
html[data-viewer="guest"] #filterPanel .filter-value,
html[data-viewer="guest"] #filterPanel .clear-row,
.filter-panel.is-gated .search-row input,
.filter-panel.is-gated .search-row input::placeholder,
.filter-panel.is-gated .filter-label,
.filter-panel.is-gated .filter-value,
.filter-panel.is-gated .clear-row {
  color: var(--cover);
  -webkit-text-fill-color: var(--cover);
}

html[data-viewer="guest"] #filterPanel .search-icon,
.filter-panel.is-gated .search-icon {
  background-color: var(--cover);
}

html[data-viewer="guest"] #filterPanel .search-action,
.filter-panel.is-gated .search-action {
  visibility: hidden;
  pointer-events: none;
}

html[data-viewer="guest"] #filterPanel .search-row:hover,
html[data-viewer="guest"] #filterPanel .search-row:active,
html[data-viewer="guest"] #filterPanel .search-row:focus-within,
.filter-panel.is-gated .search-row:hover,
.filter-panel.is-gated .search-row:active,
.filter-panel.is-gated .search-row:focus-within {
  border-top-color: var(--muted);
}

html[data-viewer="guest"] #filterPanel .search-row:hover input,
html[data-viewer="guest"] #filterPanel .search-row:hover input::placeholder,
html[data-viewer="guest"] #filterPanel .filter-row:hover .filter-label,
html[data-viewer="guest"] #filterPanel .filter-row:hover .filter-value,
html[data-viewer="guest"] #filterPanel .filter-row:focus-within .filter-label,
html[data-viewer="guest"] #filterPanel .filter-row:focus-within .filter-value,
html[data-viewer="guest"] #filterPanel .clear-row:hover,
html[data-viewer="guest"] #filterPanel .clear-row:focus-visible,
html[data-viewer="guest"] #filterPanel .search-row:active input,
html[data-viewer="guest"] #filterPanel .search-row:active input::placeholder,
html[data-viewer="guest"] #filterPanel .filter-row:active .filter-label,
html[data-viewer="guest"] #filterPanel .filter-row:active .filter-value,
html[data-viewer="guest"] #filterPanel .clear-row:active,
.filter-panel.is-gated .search-row:hover input,
.filter-panel.is-gated .search-row:hover input::placeholder,
.filter-panel.is-gated .filter-row:hover .filter-label,
.filter-panel.is-gated .filter-row:hover .filter-value,
.filter-panel.is-gated .filter-row:focus-within .filter-label,
.filter-panel.is-gated .filter-row:focus-within .filter-value,
.filter-panel.is-gated .clear-row:hover,
.filter-panel.is-gated .clear-row:focus-visible,
.filter-panel.is-gated .search-row:active input,
.filter-panel.is-gated .search-row:active input::placeholder,
.filter-panel.is-gated .filter-row:active .filter-label,
.filter-panel.is-gated .filter-row:active .filter-value,
.filter-panel.is-gated .clear-row:active {
  color: var(--cover);
}

html[data-viewer="guest"] #filterPanel .search-row:hover .search-prefix .search-icon,
html[data-viewer="guest"] #filterPanel .search-row:focus-within:hover .search-prefix .search-icon,
html[data-viewer="guest"] #filterPanel .search-row:active .search-prefix .search-icon,
html[data-viewer="guest"] #filterPanel .search-row:focus-within .search-prefix .search-icon,
html[data-viewer="guest"] #filterPanel .search-row.has-value .search-prefix .search-icon,
html[data-viewer="guest"] #filterPanel .search-row.has-value .search-action .search-icon,
.filter-panel.is-gated .search-row:hover .search-prefix .search-icon,
.filter-panel.is-gated .search-row:focus-within:hover .search-prefix .search-icon,
.filter-panel.is-gated .search-row:active .search-prefix .search-icon,
.filter-panel.is-gated .search-row:focus-within .search-prefix .search-icon,
.filter-panel.is-gated .search-row.has-value .search-prefix .search-icon,
.filter-panel.is-gated .search-row.has-value .search-action .search-icon {
  background-color: var(--cover);
}

.filter-gate-hitbox {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 5;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.filter-gate-hitbox:focus-visible {
  outline: 1px dashed var(--muted);
  outline-offset: 8px;
}

html[data-viewer="guest"] #filterPanel .filter-gate-hitbox,
.filter-panel.is-gated .filter-gate-hitbox {
  display: block;
}

.filter-gate-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  width: 134px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #f2f0ed;
}

.filter-gate-badge {
  display: none;
  transform: translate(-50%, -50%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

html[data-viewer="guest"] #filterPanel .filter-gate-badge,
.filter-panel.is-gated .filter-gate-badge {
  display: flex;
}

.filter-gate-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / 133.997px 120px no-repeat url("./assets/badge-triangle-figma-default.svg");
}

.filter-gate-badge-icon {
  position: absolute;
  left: 50%;
  top: 4px;
  z-index: 1;
  width: 32px;
  height: 32px;
  margin-top: 0;
  transform: translateX(-50%);
  background-image: url("./assets/badge-profile-union-figma.svg");
  background-position: 50% 3px;
  background-repeat: no-repeat;
  background-size: 23.2446px 28px;
}

.filter-gate-badge-copy {
  position: absolute;
  left: 50%;
  top: 60px;
  z-index: 1;
  display: grid;
  justify-items: center;
  margin-top: 0;
  width: max-content;
  transform: translateX(-50%);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  letter-spacing: -0.36px;
  text-align: center;
  white-space: nowrap;
}

.filter-gate-badge-copy > span {
  display: block;
}

.filter-panel.is-gated .filter-gate-hitbox:hover ~ .filter-gate-badge,
.filter-panel.is-gated .filter-gate-hitbox:focus-visible ~ .filter-gate-badge,
.filter-panel.is-gated.is-badge-visible .filter-gate-badge,
.filter-panel.is-gated .filter-gate-badge:hover,
.filter-panel.is-gated .filter-gate-badge:focus-visible,
html[data-viewer="guest"] #filterPanel .filter-gate-hitbox:hover ~ .filter-gate-badge,
html[data-viewer="guest"] #filterPanel .filter-gate-hitbox:focus-visible ~ .filter-gate-badge,
html[data-viewer="guest"] #filterPanel.is-badge-visible .filter-gate-badge,
html[data-viewer="guest"] #filterPanel .filter-gate-badge:hover,
html[data-viewer="guest"] #filterPanel .filter-gate-badge:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.filter-panel.is-gated .filter-gate-badge:hover::before,
.filter-panel.is-gated .filter-gate-badge:focus-visible::before,
html[data-viewer="guest"] #filterPanel .filter-gate-badge:hover::before,
html[data-viewer="guest"] #filterPanel .filter-gate-badge:focus-visible::before {
  background-image: url("./assets/badge-triangle-figma-hover.svg");
}

.filter-panel.is-gated .filter-gate-badge:active::before,
html[data-viewer="guest"] #filterPanel .filter-gate-badge:active::before {
  background-image: url("./assets/badge-triangle-figma-active.svg");
}

.filter-panel.is-gated .filter-gate-badge:focus-visible,
html[data-viewer="guest"] #filterPanel .filter-gate-badge:focus-visible {
  outline: none;
}

@media (max-width: 1365px) {
  .filter-popup.is-responsive {
    width: 288px;
    max-width: calc(100vw - 16px);
  }

  .filter-popup.is-responsive .filter-popup-inner {
    padding: 8px 16px 0;
  }

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

.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;
  contain: paint;
}

.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-media {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  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 .card-cover-media {
  opacity: 1;
}

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

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

@media (max-width: 767px) {
  .card-cover-media {
    transition: none;
  }
}

.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;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

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

.profile-card-link:active .card-name {
  color: var(--burgundy);
}

.profile-card-link:focus {
  outline: none;
}

html.is-navigation-pending .profile-card-link,
body.is-navigation-pending .profile-card-link,
html.is-navigation-pending .filter-gate-badge,
body.is-navigation-pending .filter-gate-badge {
  pointer-events: none;
}

html.is-navigation-pending .profile-card-link .card-name,
body.is-navigation-pending .profile-card-link .card-name,
html.is-navigation-pending .filter-gate-badge,
body.is-navigation-pending .filter-gate-badge {
  transition: none;
}

.filter-gate-badge {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.filter-gate-badge:focus {
  outline: none;
}

.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;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  isolation: isolate;
}

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

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

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

.page-button-label {
  position: relative;
  z-index: 1;
}

.page-button-outline {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.page-button-outline-shape {
  fill: none;
  stroke: #bf978f;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.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;
  gap: 16px;
  color: #bfada1;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0;
}

.footer-docs,
.footer-meta {
  display: grid;
  gap: 0;
}

.footer-doc-link {
  width: max-content;
  max-width: 100%;
  color: #bfada1;
  text-decoration: none;
  transition: color 0.15s ease;
}

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

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

.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;
}

.subscribe-screen {
  display: grid;
  gap: var(--gap);
  grid-template-rows: auto 1fr auto;
  min-height: calc(100vh - 32px);
}

.subscribe-sidebar {
  display: none;
}

.subscribe-header-mobile {
  display: flex;
}

.subscribe-footer-mobile {
  display: flex;
  margin-top: auto;
}

.subscribe-content {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 0;
  width: 100%;
  padding: 0 8px;
}

.subscribe-profile-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  background: var(--orange);
  pointer-events: none;
}

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

.subscribe-benefits,
.subscribe-steps {
  width: 100%;
  max-width: 480px;
  margin: 0;
  color: var(--burgundy);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.36px;
  text-align: center;
}

.subscribe-benefits {
  display: grid;
  gap: 0;
}

.subscribe-benefits-desktop {
  display: none;
}

.subscribe-benefit {
  margin: 0;
}

.subscribe-steps {
  display: grid;
  gap: 0;
}

.subscribe-steps-desktop {
  display: none;
}

.subscribe-step {
  margin: 0;
}

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

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

.subscribe-step-link:active {
  color: #730026;
}

.subscribe-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 40px;
  padding: 1px;
  background: #ff401a;
  border: 0;
  text-decoration: none;
  color: #ff401a;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.subscribe-cta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  background: #f2f0ed;
  border-radius: 20px;
  color: inherit;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.36px;
  white-space: nowrap;
}

.subscribe-cta:hover,
.subscribe-cta:focus-visible {
  background: #990026;
  color: #990026;
}

.subscribe-cta:active {
  background: #730026;
  color: #730026;
}

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

@media (max-width: 767px) {
  .subscribe-benefits,
  .subscribe-steps {
    max-width: none;
  }
}

@media (min-width: 1366px) {
  .subscribe-benefits-desktop,
  .subscribe-steps-desktop {
    display: grid;
  }

  .subscribe-benefits-compact,
  .subscribe-steps-compact {
    display: none;
  }
}

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

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

@media (min-width: 768px) and (max-width: 1365px) {
  .subscribe-screen {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
  }

  .subscribe-content {
    min-height: calc(100vh - 176px);
    padding: 0;
  }
}

@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%;
    max-width: none;
    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%;
  }

  .subscribe-screen {
    grid-template-columns: 320px minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: start;
    min-height: calc(100vh - 64px);
  }

  .subscribe-sidebar {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 64px);
  }

  .subscribe-sidebar .site-footer {
    margin-top: auto;
    padding-top: 0;
  }

  .subscribe-header-mobile,
  .subscribe-footer-mobile {
    display: none;
  }

  .subscribe-content {
    min-height: calc(100vh - 64px);
    padding: 0;
  }
}

@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;
}

.designer-content.is-loading .designer-live-region {
  display: none;
}

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

.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: 64px;
  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: 100%;
}

.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-skeleton-cover,
  .designer-cover {
    order: 1;
  }

  .designer-skeleton-copy,
  .designer-main-copy {
    order: 2;
  }

  .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));
  }
}

@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: 64px;
  }

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

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

}

@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;
  }
}
