* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Open Sans", Helvetica, Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.tep-image,
.tep-picture {
  display: contents;
}

picture > source {
  display: none;
}

:where(img.image-auto-height) {
  height: auto;
  aspect-ratio: var(--image-ratio);
}

.header {
  background: #fff;
}

.row-a {
  height: 84px;
  padding: 0 1.4% 0 1%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: block;
  width: 250px;
  height: auto;
}

.searchbar {
  width: 358px;
  height: 38px;
  display: flex;
  border: 1px solid #8adcf5;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(249, 254, 255, 0.8), rgba(221, 247, 255, 0.8));
  box-shadow: inset 0 1px #fff, 0 3px 10px rgba(6, 158, 219, 0.0784313725);
  backdrop-filter: blur(8px);
  transition: 0.2s;
}
.searchbar:focus-within {
  border-color: #19bce9;
  box-shadow: 0 0 0 3px rgba(22, 188, 229, 0.1215686275), 0 5px 14px rgba(6, 158, 219, 0.1215686275);
}
.searchbar input {
  width: calc(100% - 40px);
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
}
.searchbar input::placeholder {
  color: #4e5d65;
}
.searchbar button {
  width: 40px;
  border: 0;
  border-left: 1px solid #bcecf7;
  background: rgba(255, 255, 255, 0.3215686275);
  display: grid;
  place-items: center;
  color: #079edb;
  cursor: pointer;
}
.searchbar button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.top-actions {
  display: flex;
  gap: 7px;
  align-items: center;
}

.top-action {
  height: 40px;
  padding: 0 11px 0 8px;
  border: 1px solid #8adcf5;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(250, 255, 255, 0.8705882353), rgba(223, 248, 255, 0.8));
  box-shadow: inset 0 1px #fff, 0 3px 9px rgba(2, 127, 181, 0.0823529412);
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  color: #17242b;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s;
}
.top-action:hover {
  transform: translateY(-1px);
  border-color: #39c6ed;
  box-shadow: inset 0 1px #fff, 0 5px 12px rgba(2, 127, 181, 0.1450980392);
}

.action-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.action-icon img {
  display: block;
  width: 25px;
  height: 25px;
}

.top-action > :where(picture.tep-picture) > .arrow {
  width: 9px;
  height: auto;
  margin-left: 1px;
  opacity: 0.75;
}

.account a:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .row-a {
    height: 76px;
    gap: 10px;
  }
  .logo {
    width: 212px;
  }
  .searchbar {
    max-width: 294px;
  }
  .top-action {
    height: 36px;
    padding: 0 8px;
    gap: 5px;
    font-size: 11px;
  }
}
@media (max-width: 880px) {
  .row-a {
    height: 76px;
  }
  .logo {
    width: 190px;
  }
  .searchbar {
    max-width: 233px;
  }
  .top-action {
    height: 34px;
    padding: 0 5px;
    gap: 3px;
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .searchbar {
    display: none;
  }
}
@media (max-width: 600px) {
  .row-a {
    height: 58px;
    padding: 0 1.5%;
  }
  .logo {
    width: 128px;
  }
  .top-actions {
    gap: 3px;
  }
  .top-action {
    height: 32px;
    padding: 0 5px;
  }
  .top-action img,
  .top-action .flag,
  .top-action .arrow,
  .action-icon {
    display: none;
  }
}
.row-b {
  height: 48px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(#00e3ff, #0cc1ff 48%, #0e9af9);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.4392156863), inset 0 -1px rgba(8, 124, 196, 0.2666666667);
}

.main-nav {
  width: auto;
  padding-left: 2%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-nav a {
  height: 32px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 107, 176, 0.3019607843);
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: 0.18s;
}
.main-nav a:hover {
  border-color: rgba(255, 255, 255, 0.3490196078);
  background: rgba(255, 255, 255, 0.1764705882);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.231372549);
}
.main-nav svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 1px rgba(0, 105, 156, 0.3333333333));
}
.main-nav img {
  width: auto;
  max-height: 13px;
}
.main-nav .nav-arrow {
  width: 9px;
  height: 5px;
  margin-left: -2px;
}

.sponsor-links {
  padding-right: 1.6%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sponsor-links a {
  padding-left: 12px;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  text-shadow: 0 1px 2px rgba(0, 107, 176, 0.3019607843);
  white-space: nowrap;
}
.sponsor-links img {
  width: 17px;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1200px) {
  .main-nav {
    width: 64%;
  }
}
@media (max-width: 880px) {
  .row-b {
    height: 44px;
  }
  .mobile-menu {
    display: block;
    margin-left: 20px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .mobile-menu img {
    width: 25px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 120px;
    left: 0;
    z-index: 25;
    width: 300px;
    padding: 0;
    background: linear-gradient(#1dbbe3, #11aded, #049dfa);
  }
  .header.menu-open .main-nav {
    display: block;
  }
  .main-nav a {
    height: auto;
    padding: 10px 15px;
    border-bottom: 1.5px dashed #fff;
  }
  .sponsor-links {
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .main-nav {
    top: 102px;
  }
  .sponsor-links a {
    font-size: 11px;
  }
  .sponsor-links a:first-child {
    display: none;
  }
}
.row-c {
  height: 28px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(#3c3c3b, #1d1d1b);
}

.categories,
.more-categories {
  display: flex;
  align-items: center;
}

.categories a {
  height: 28px;
  padding: 0 8px;
  border-right: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
}

.categories a:hover {
  background: rgba(255, 255, 255, 0.0941176471);
}

.category-arrow {
  width: 9px;
  height: 5px;
}

.category-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.category-toggle img {
  width: 12px;
  height: 10px;
  padding: 2px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.category-toggle .close-icon {
  display: none;
}

.ai-links {
  padding-right: 1.6%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-links a {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.ai-links a img {
  width: auto;
  max-height: 15px;
}
.ai-links .divider {
  height: 60%;
  border-left: 1px solid #fff;
}

@media (max-width: 1200px) {
  .categories a,
  .ai-links a {
    font-size: 11px;
    padding-inline: 6px;
  }
}
@media (max-width: 880px) {
  .category-toggle {
    display: flex;
    align-items: center;
    margin: 0 5px;
  }
  .more-categories {
    position: absolute;
    top: 148px;
    left: 0;
    z-index: 24;
    width: 300px;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    display: block;
    background: linear-gradient(0deg, #1d1d1b, #3c3c3b);
    transition: height 0.3s;
  }
  .categories.categories-open .more-categories {
    height: 250px;
    overflow: auto;
    visibility: visible;
  }
  .categories.categories-open .open-icon {
    display: none;
  }
  .categories.categories-open .close-icon {
    display: block;
  }
  .more-categories a {
    height: 36px;
    padding: 5px 8px;
    border-right: 0;
    border-left: 1px solid #fff;
    border-bottom: 1px dashed #fff;
  }
  .ai-links {
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .row-c {
    height: 25px;
  }
  .categories {
    max-width: 100%;
  }
  .categories > a {
    height: 25px;
    font-size: 11px;
  }
  .more-categories {
    top: 127px;
  }
  .ai-links {
    display: none;
  }
}
.header {
  position: relative;
  z-index: 50;
}

.header-glyphs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.header-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.main-nav > .header-dropdown {
  display: flex;
  align-items: center;
}

.categories > .header-dropdown,
.more-categories > .header-dropdown {
  display: flex;
}

.nav-dropdown-trigger {
  height: 32px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 107, 176, 0.3019607843);
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.nav-dropdown-trigger:hover, .nav-dropdown-trigger[aria-expanded=true] {
  border-color: rgba(255, 255, 255, 0.3490196078);
  background: rgba(255, 255, 255, 0.1764705882);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.231372549);
}

.category-dropdown-trigger {
  height: 28px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-right: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
}
.category-dropdown-trigger:hover, .category-dropdown-trigger[aria-expanded=true] {
  background: rgba(255, 255, 255, 0.0941176471);
}

.header [data-dropdown-trigger] .arrow,
.header [data-dropdown-trigger] .nav-arrow,
.header [data-dropdown-trigger] .category-arrow {
  transition: transform 0.18s ease;
}

.header [data-dropdown-trigger][aria-expanded=true] .arrow,
.header [data-dropdown-trigger][aria-expanded=true] .nav-arrow,
.header [data-dropdown-trigger][aria-expanded=true] .category-arrow {
  transform: rotate(180deg);
}

.top-action[aria-expanded=true] {
  border-color: #39c6ed;
  box-shadow: inset 0 1px #fff, 0 5px 12px rgba(2, 127, 181, 0.1450980392);
}

.header [data-dropdown-trigger]:focus-visible {
  outline: 2px solid #087fae;
  outline-offset: 3px;
}

.header .row-b [data-dropdown-trigger]:focus-visible,
.header .row-c [data-dropdown-trigger]:focus-visible {
  outline-color: #fff;
  outline-offset: -3px;
}

.header .header-panel {
  position: fixed;
  z-index: 100;
  top: var(--dropdown-top, 84px);
  left: var(--dropdown-left, 12px);
  width: 304px;
  max-width: calc(100vw - 24px);
  max-height: var(--dropdown-max-height, calc(100dvh - 108px));
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #8acfe2 transparent;
  padding: 12px;
  border: 1px solid #a4dbe9;
  border-radius: 14px;
  color: #274b5a;
  background: linear-gradient(135deg, rgba(244, 253, 255, 0.9803921569), rgba(230, 247, 253, 0.968627451) 62%, rgba(243, 242, 255, 0.9803921569));
  box-shadow: inset 0 1px #fff, 0 15px 36px rgba(23, 73, 102, 0.1490196078), 0 3px 9px rgba(23, 73, 102, 0.0705882353);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  text-shadow: none;
  text-align: left;
  white-space: normal;
}

.header .header-panel[hidden] {
  display: none;
}

.header .header-panel:not([hidden]) {
  animation: header-panel-enter 0.14s ease-out;
}

.header .header-panel--language {
  width: 320px;
}

.header .header-panel--contact {
  width: 840px;
}

.header .header-panel--account {
  width: 280px;
}

.header .dd-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 2px 12px;
  border-bottom: 1px solid #c6e4ed;
}

.header .dd-heading h2 {
  margin: 0;
  color: #234e61;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: none;
}

.header .dd-heading img {
  display: block;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  max-height: none;
  object-fit: contain;
}

.header .header-panel svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}

.header .dd-list {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.header .header-panel .dd-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 42px;
  padding: 6px 8px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #294b5b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: normal;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  text-align: left;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.16s, border-color 0.16s, box-shadow 0.16s;
}

.header .header-panel a.dd-link:hover {
  border-color: #addfec;
  color: #086f99;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.8509803922), #dff5fd);
  box-shadow: inset 0 1px #fff, 0 3px 8px rgba(22, 137, 173, 0.062745098);
  text-decoration: none;
  cursor: pointer;
}

.header .dd-icon {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid #b3dfea;
  border-radius: 8px;
  color: #1296c4;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.9294117647), #c9efff);
  box-shadow: inset 0 1px #fff, 0 2px 5px rgba(22, 126, 165, 0.0941176471);
}

.header .dd-icon--mint {
  color: #189775;
  border-color: #b0e6d3;
  background: linear-gradient(140deg, #f6fff9, #c5f1e1);
}

.header .dd-icon--violet {
  color: #8d64bf;
  border-color: #d8c5ed;
  background: linear-gradient(140deg, #fffaff, #e9dcfc);
}

.header .dd-icon--amber {
  color: #ae7a20;
  border-color: #efdbab;
  background: linear-gradient(140deg, #fffdf6, #ffedbc);
}

.header .dd-icon--rose {
  color: #bd6584;
  border-color: #edcedd;
  background: linear-gradient(140deg, #fffafd, #f8dfeb);
}

.header .dd-icon img {
  display: block;
  width: 22px;
  height: 22px;
  max-height: none;
  object-fit: contain;
}

.header .header-panel .dd-next {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  margin-left: auto;
  color: #81a9b9;
}

.header .header-panel .dd-link:hover .dd-next {
  color: #129dcc;
}

.header .dd-foot {
  margin-top: 11px;
  padding: 10px 2px 0;
  border-top: 1px solid #c6e4ed;
}

.header .header-panel .dd-footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: auto;
  min-height: 30px;
  margin: 0;
  padding: 3px 6px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #087da5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.4;
  white-space: normal;
  text-transform: none;
  text-shadow: none;
  text-decoration: none;
  box-shadow: none;
}

.header .header-panel .dd-footer-link:hover {
  background: rgba(255, 255, 255, 0.6509803922);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header .dd-note {
  margin: 8px 6px 0;
  color: #617e8c;
  font-size: 12px;
  line-height: 1.55;
}

.header .dd-language-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 12px;
}

.header .dd-language-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px;
  border: 1px solid #cbdfe7;
  border-radius: 8px;
  color: #617684;
  background: rgba(255, 255, 255, 0.4196078431);
  text-align: left;
  font-size: 13px;
}

.header .dd-language-option img {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: auto;
  max-height: none;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(38, 75, 90, 0.1411764706);
}

.header .dd-language-option[aria-current=true] {
  color: #096f95;
  border-color: #7bcce2;
  background: linear-gradient(125deg, #f3feff, #cbf0fb);
  box-shadow: inset 0 1px #fff;
}

.header .dd-language-option svg {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  margin-left: auto;
  color: #199d8c;
  stroke-width: 2.5;
}

.header .dd-language-option:disabled {
  opacity: 1;
  cursor: not-allowed;
}

.header .dd-currency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 2px 0;
  padding-top: 12px;
  border-top: 1px solid #c6e4ed;
  font-size: 12px;
  color: #617e8c;
}

.header .dd-currency strong {
  padding: 5px 9px;
  border: 1px solid #b6dfea;
  border-radius: 7px;
  color: #267591;
  background: rgba(255, 255, 255, 0.6862745098);
  font-weight: 600;
}

.header .dd-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.header .dd-contact-group + .dd-contact-group {
  border-left: 1px solid #c6e4ed;
  padding-left: 12px;
}

.header .dd-contact-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.header .dd-contact-title h3 {
  color: #345c6c;
  font-size: 13px;
  font-weight: 600;
}

.header .dd-contact-title .dd-icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

.header .header-panel .dd-service-link {
  min-height: 38px;
  padding: 5px;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.header .dd-service-link:disabled {
  color: #6b8290;
  cursor: not-allowed;
  opacity: 1;
}

.header .dd-unavailable {
  margin-left: auto;
  font-size: 10px;
  color: #758d98;
}

.header .dd-hotlines {
  list-style: none;
  display: grid;
  gap: 9px;
  padding: 4px;
}

.header .dd-hotlines li {
  display: grid;
  gap: 1px;
  font-size: 12px;
}

.header .dd-hotlines span {
  color: #617e8c;
}

.header .dd-hotlines strong {
  color: #365e70;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.header .header-panel :is(a, button):focus-visible {
  outline: 2px solid #1499c4;
  outline-offset: 2px;
}

.header .header-panel--compact {
  width: 260px;
  padding: 10px;
  border-radius: 12px;
}

.header .header-panel--compact.header-panel--language {
  width: 280px;
}

.header .header-panel--compact.header-panel--account {
  width: 240px;
}

.header .header-panel--compact .dd-heading {
  min-width: 0;
  gap: 8px;
  margin: -2px -2px 9px;
  padding: 6px 7px 10px;
  border-bottom-color: #b9dce8;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(115deg, rgba(219, 244, 252, 0.5490196078), rgba(238, 248, 255, 0.4));
}

.header .header-panel--compact .dd-heading h2 {
  min-width: 0;
  color: #254e64;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.header .header-panel--compact .dd-heading img {
  flex-basis: 28px;
  width: 28px;
  height: 28px;
}

.header .header-panel--compact .dd-list {
  gap: 2px;
  margin-top: 0;
}

.header .header-panel--compact .dd-link {
  min-height: 34px;
  gap: 8px;
  padding: 4px 6px;
  border-radius: 7px;
  color: #385665;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.header .header-panel--compact .dd-link > span:not(.dd-icon) {
  min-width: 0;
}

.header .header-panel--compact .dd-icon {
  flex-basis: 24px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.header .header-panel--compact .dd-icon svg {
  width: 16px;
  height: 16px;
}

.header .header-panel--compact .dd-icon img {
  width: 18px;
  height: 18px;
}

.header .header-panel--compact .dd-next {
  flex-basis: 11px;
  width: 11px;
  height: 11px;
}

.header .header-panel--compact .dd-foot {
  margin-top: 8px;
  padding-top: 8px;
}

.header .header-panel--compact .dd-footer-link {
  min-height: 28px;
  font-weight: 500;
}

.header .header-panel--compact .dd-footer-link svg {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.header .header-panel--compact .dd-language-list {
  gap: 5px;
  margin-top: 0;
}

.header .header-panel--compact .dd-language-option {
  min-height: 34px;
  gap: 7px;
  padding: 6px;
  border-radius: 7px;
  font-size: 12px;
}

.header .header-panel--compact .dd-language-option img {
  flex-basis: 20px;
  width: 20px;
}

.header .header-panel--compact .dd-note {
  margin: 7px 3px 0;
}

.header .header-panel--compact .dd-currency {
  gap: 8px;
  margin-top: 9px;
  padding-top: 9px;
}

.header .header-panel--compact .dd-currency strong {
  padding: 4px 7px;
}

@keyframes header-panel-enter {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .category-dropdown-trigger {
    font-size: 11px;
    padding-inline: 6px;
  }
}
@media (max-width: 880px) {
  .main-nav > .header-dropdown {
    display: block;
  }
  .nav-dropdown-trigger {
    width: 100%;
    height: auto;
    min-height: 39px;
    padding: 10px 15px;
    border-bottom: 1.5px dashed #fff;
  }
  .more-categories > .header-dropdown {
    display: block;
  }
  .more-categories > .header-dropdown > :where(figure.tep-image) > .category-dropdown-trigger {
    width: 100%;
    height: 36px;
    padding: 5px 8px;
    border-right: 0;
    border-left: 1px solid #fff;
    border-bottom: 1px dashed #fff;
  }
  .header .dd-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .header .dd-contact-group:last-child {
    grid-column: 1/-1;
    border-left: 0;
    border-top: 1px solid #c6e4ed;
    padding: 12px 0 0;
  }
  .header .dd-hotlines {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .categories > .header-dropdown > :where(figure.tep-image) > .category-dropdown-trigger {
    height: 25px;
  }
  .header .header-panel {
    padding: 10px;
    border-radius: 12px;
  }
}
@media (max-width: 460px) {
  .header .dd-contact-grid {
    grid-template-columns: 1fr;
  }
  .header .dd-contact-group + .dd-contact-group {
    border-left: 0;
    border-top: 1px solid #c6e4ed;
    padding: 12px 0 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header .header-panel:not([hidden]) {
    animation: none;
  }
  .header [data-dropdown-trigger] img,
  .header .header-panel .dd-link {
    transition: none;
  }
}
.header .member-tools {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2px;
  padding: 2px 4px;
  border: 1px solid #8adcf5;
  border-radius: 9px;
  background: linear-gradient(135deg, #faffff, #dff8ff);
  box-shadow: inset 0 1px #fff, 0 3px 9px rgba(2, 127, 181, 0.0823529412);
}

.header .member-icon, .header .member-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header .member-tool {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  color: #237694;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}
.header .member-tool:hover, .header .member-tool[aria-expanded=true] {
  color: #075a83;
  background: rgba(184, 236, 250, 0.5647058824);
}
.header .member-tool:focus-visible {
  outline: 2px solid #087fae;
  outline-offset: 1px;
}

.header .member-account {
  border-left: 1px solid #b5deec;
  padding-left: 4px;
  margin-left: 2px;
}

.header .member-account-trigger {
  width: 49px;
}

.header .member-chevron {
  width: 12px;
  height: 12px;
}

.header .member-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #116188;
  border: 1px solid #86d4ed;
  background: linear-gradient(145deg, #fff, #a9e7fa);
  box-shadow: inset 0 1px #fff;
}
.header .member-avatar .member-icon {
  width: 18px;
  height: 18px;
}

.header .member-account-panel, .header .member-activity-panel {
  width: 280px;
}

.header .member-identity > div {
  min-width: 0;
}

.header .member-identity h2 {
  overflow-wrap: anywhere;
}

.header .member-caption {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  color: #57717f;
}

.header .member-links {
  display: grid;
  gap: 2px;
}

.header .member-links a, .header .member-logout button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #31596c;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}
.header .member-links a:hover, .header .member-logout button:hover {
  background: #d0f0fa;
}
.header .member-links a .member-icon, .header .member-logout button .member-icon {
  width: 18px;
  height: 18px;
}

.header .member-logout {
  border-top: 1px solid #bddfeb;
  margin-top: 7px;
  padding-top: 7px;
}

.header .member-logout button {
  color: #b13549;
}
.header .member-logout button:hover {
  background: #ffebef;
}

.header .member-preview-label {
  margin-left: auto;
  padding: 2px 6px;
  border-radius: 4px;
  background: #e2ecf5;
  color: #506b7c;
  font-size: 10px;
}

.header .member-empty {
  padding: 16px 8px 18px;
  text-align: center;
}

.header .member-empty-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border: 1px solid #bce5f2;
  border-radius: 16px;
  background: #e1f6fc;
  color: #2588ad;
}
.header .member-empty-icon .member-icon {
  width: 24px;
  height: 24px;
}

.header .member-empty strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}

.header .member-empty p {
  color: #526e7d;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .header .row-a:has(.member-tools) {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 10px;
    gap: 8px 14px;
  }
  .header .top-actions:has(.member-tools) {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
}
.header .account {
  cursor: default;
}
.header .account:focus-within {
  border-color: #39c6ed;
  box-shadow: inset 0 1px #fff, 0 5px 12px rgba(2, 127, 181, 0.1450980392);
}

.header .account-links {
  display: flex;
  align-items: center;
  gap: 3px;
}
.header .account-links a {
  padding-block: 6px;
  color: inherit;
  text-underline-offset: 3px;
  cursor: pointer;
}
.header .account-links a:focus-visible {
  outline: 2px solid #087fae;
  outline-offset: 2px;
  border-radius: 2px;
}

.header .account-toggle {
  display: grid;
  place-items: center;
  align-self: stretch;
  flex: 0 0 18px;
  width: 18px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}
.header .account-toggle:hover, .header .account-toggle[aria-expanded=true] {
  background: rgba(168, 234, 251, 0.4);
}
.header .account-toggle .arrow {
  display: block;
  width: 9px;
  height: auto;
  opacity: 0.75;
}

.header .header-login {
  display: grid;
  gap: 11px;
  padding: 2px 3px 3px;
}

.header .header-login-field {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.header .header-login-field label {
  color: #385665;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.header .header-login-field input {
  width: 100%;
  min-width: 0;
  height: 36px;
  padding: 7px 10px;
  border: 1px solid #a8dce9;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9215686275), rgba(240, 251, 255, 0.8));
  box-shadow: inset 0 1px #fff;
  color: #234e61;
  font-size: 13px;
  line-height: 1.4;
  transition: border-color 0.16s, box-shadow 0.16s;
}
.header .header-login-field input::placeholder {
  color: #657f8a;
  opacity: 1;
}
.header .header-login-field input:focus {
  border-color: #19bce9;
  outline: 2px solid rgba(25, 188, 233, 0.2509803922);
  outline-offset: 1px;
  box-shadow: inset 0 1px #fff, 0 2px 7px rgba(6, 158, 219, 0.0784313725);
}

.header .header-login-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 35px;
  margin-top: 3px;
  padding: 7px 12px;
  border: 1px solid #27b9eb;
  border-radius: 7px;
  background: linear-gradient(#00e3ff, #0cc1ff 48%, #0e9af9);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.6509803922), 0 3px 8px rgba(19, 139, 195, 0.1098039216);
  color: #123e53;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
  transition: box-shadow 0.16s;
}
.header .header-login-submit:hover {
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8509803922), 0 4px 10px rgba(19, 139, 195, 0.2);
}
.header .header-login-submit:disabled {
  opacity: 0.65;
  cursor: default;
}
.header .header-login-submit svg {
  width: 16px;
  height: 16px;
}

.header .header-login-status {
  margin: 0;
  padding: 8px;
  border: 1px solid #bddfeb;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.6509803922);
  color: #385665;
  font-size: 12px;
  line-height: 1.5;
}
.header .header-login-status[hidden] {
  display: none;
}

@media (max-width: 600px) {
  .header .account-toggle {
    flex-basis: 15px;
    width: 15px;
  }
  .header .header-login-field input {
    font-size: 16px;
  }
  .header .header-login-field input::placeholder {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header .header-login-field input,
  .header .header-login-submit {
    transition: none;
  }
}
.profile-page {
  background: #fff;
  color: #466478;
}

.profile-shell {
  max-width: 1420px;
  margin: auto;
  padding: 23px 28px 46px;
  font-size: 13px;
  line-height: 1.65;
}

.profile-shell :is(button, input, textarea),
.profile-dialog :is(button, input, textarea) {
  font: inherit;
}

.profile-shell button,
.profile-dialog button {
  cursor: pointer;
}

.profile-shell svg,
.profile-dialog svg,
.profile-toast svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.profile-shell :is(h1, h2, h3, p),
.profile-dialog :is(h2, h3, p) {
  margin: 0;
}

.profile-shell [hidden],
.profile-dialog [hidden] {
  display: none !important;
}

.profile-tone-cyan {
  --profile-tint: #e0f5fd;
  --profile-edge: #b9dfed;
  --profile-ink: #2f8aa8;
}

.profile-tone-mint {
  --profile-tint: #e2f6ed;
  --profile-edge: #bcded0;
  --profile-ink: #418a72;
}

.profile-tone-violet {
  --profile-tint: #ece5fc;
  --profile-edge: #d7c9eb;
  --profile-ink: #8870af;
}

.profile-tone-rose {
  --profile-tint: #fbe7ef;
  --profile-edge: #edc8d9;
  --profile-ink: #b77993;
}

.profile-tone-amber {
  --profile-tint: #fff1d4;
  --profile-edge: #ead7aa;
  --profile-ink: #ab8442;
}

.profile-tone-blue {
  --profile-tint: #e7effc;
  --profile-edge: #c5d8ed;
  --profile-ink: #668ab1;
}

.profile-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  font-size: 11px;
  color: #6b889b;
}

.profile-breadcrumb > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #3284a6;
}

.profile-breadcrumb > svg {
  width: 12px;
  height: 12px;
  color: #9ab0bd;
}

.profile-preview-tag {
  margin-left: auto;
  padding: 3px 9px;
  border: 1px solid #e0daed;
  background: #faf8fe;
  color: #887ba0;
  border-radius: 20px;
  font-size: 9px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 242px minmax(0, 1fr) 282px;
  align-items: start;
  gap: 22px;
}

.profile-center,
.profile-left,
.profile-right {
  min-width: 0;
}

.profile-panel {
  background: linear-gradient(145deg, #fff, #fcfeff);
  border: 1px solid #d6e5ed;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(54, 100, 123, 0.0274509804), inset 0 1px #fff;
}

.profile-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--profile-edge, #bfdfea);
  border-radius: 9px;
  color: var(--profile-ink, #338aab);
  background: linear-gradient(135deg, #fff, var(--profile-tint, #e3f5fc));
  box-shadow: inset 0 1px #fff, 0 3px 7px rgba(76, 118, 156, 0.0392156863);
  flex-shrink: 0;
}

.profile-icon svg {
  width: 18px;
  height: 18px;
}

.profile-identity {
  padding: 15px;
  background: linear-gradient(160deg, #f0fbff, #fff 52%, #f7f5fd);
}

.profile-photo {
  position: relative;
  display: block;
  width: 100%;
  padding: 5px;
  border: 1px solid #d3e5ed;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7882352941);
  box-shadow: 0 6px 16px rgba(49, 107, 132, 0.0784313725), inset 0 1px #fff;
}

.profile-photo picture,
.profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.profile-photo > span {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7882352941);
  border-radius: 8px;
  color: #fff;
  background: rgba(35, 91, 116, 0.4);
  backdrop-filter: blur(8px);
}

.profile-photo > span svg {
  width: 16px;
  height: 16px;
}

.profile-identity-copy {
  padding-top: 15px;
}

.profile-identity h2 {
  font-size: 22px;
  color: #2b678c;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.profile-handle {
  color: #8b7e9c;
  font-size: 11px;
  padding: 3px 0 8px;
}

.profile-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #6e8799;
}

.profile-location svg {
  width: 13px;
  height: 13px;
}

.profile-available {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 10px;
  color: #4f8670;
}

.profile-available i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #67b793;
  box-shadow: 0 0 0 3px #dff3e8;
}

.profile-identity-actions {
  display: grid;
  gap: 8px;
  margin-top: 17px;
}

.profile-identity-actions > div {
  display: flex;
  gap: 7px;
}

.profile-identity-actions > div > button:first-child {
  flex: 1;
}

.profile-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #bedcea;
  border-radius: 8px;
  background: linear-gradient(#fff, #eef8fe);
  color: #417b99;
  font-size: 11px !important;
  font-weight: 600 !important;
  box-shadow: inset 0 1px #fff;
}

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

.profile-button-primary {
  color: #fff;
  border-color: #1984ad;
  background: linear-gradient(135deg, #279fc3, #1b7daa);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3019607843), 0 4px 9px rgba(39, 133, 171, 0.0980392157);
}

.profile-square {
  width: 39px;
  padding: 8px;
}

.profile-member-since {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 15px;
  font-size: 9px;
  color: #7d91a0;
}

.profile-member-since svg {
  width: 13px;
  height: 13px;
}

.profile-menu {
  margin-top: 16px;
  padding: 8px;
}

.profile-menu :is(a, button) {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #53758b;
  font-size: 12px;
  text-align: left;
  border-radius: 8px;
}

.profile-menu [aria-current] {
  border-color: #cce9f3;
  background: linear-gradient(110deg, #e7f8ff, #f6fcff);
  color: #287e9f;
  font-weight: 600;
}

.profile-menu .profile-icon {
  width: 29px;
  height: 29px;
  border-radius: 8px;
}

.profile-menu .profile-icon svg {
  width: 16px;
  height: 16px;
}

.profile-menu small {
  margin-left: auto;
  padding: 1px 6px;
  border-radius: 5px;
  color: #7e96a7;
  background: #f0f5f9;
  font-size: 10px;
}

.profile-personal-note {
  padding: 20px 16px;
  margin-top: 4px;
}

.profile-personal-note > span {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #a593b2;
  font-size: 10px;
}

.profile-personal-note p {
  color: #7b7093;
  font: italic 19px/1.7 Georgia, serif;
  margin-top: 9px;
}

.profile-personal-note small {
  display: block;
  margin-top: 9px;
  color: #95a4b0;
  font-size: 9px;
}

.profile-hero {
  position: relative;
  overflow: hidden;
  padding: 23px 24px 0;
  border: 1px solid #c9e2ec;
  border-radius: 15px;
  background: radial-gradient(ellipse at 100% 0, rgba(229, 220, 247, 0.7215686275), transparent 55%), radial-gradient(ellipse at 0 100%, rgba(194, 239, 229, 0.4784313725), transparent 65%), linear-gradient(125deg, #effaff, #f8f6ff);
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.8509803922), 0 5px 20px rgba(45, 116, 144, 0.0431372549);
}

.profile-hero > :not(.profile-hero-orbit) {
  position: relative;
}

.profile-eyebrow {
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #7794a8;
  font-weight: 650;
}

.profile-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 9px;
}

.profile-name h1 {
  font-size: 32px;
  line-height: 1.3;
  color: #286e95;
  letter-spacing: -0.03em;
}

.profile-name > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
  border: 1px solid #c1dfd5;
  border-radius: 6px;
  color: #4c8b74;
  background: rgba(241, 255, 248, 0.6784313725);
  font-size: 9px;
}

.profile-name > span svg {
  width: 11px;
  height: 11px;
}

.profile-role {
  margin-top: 5px !important;
  color: #607f95;
  font-size: 12px;
  max-width: 84%;
}

.profile-role i {
  margin: 0 5px;
  font-style: normal;
  color: #a6adbd;
}

.profile-mood {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  margin-top: 15px;
  border: 1px solid rgba(255, 255, 255, 0.8784313725);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.3607843137);
  color: #77729a;
  width: fit-content;
  max-width: 100%;
  font-size: 12px;
}

.profile-mood svg {
  color: #a28ab9;
  width: 16px;
  height: 16px;
}

.profile-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 13px 0 17px;
  color: #7894a5;
  font-size: 10px;
}

.profile-hero-meta > span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.profile-hero-meta svg {
  width: 13px;
  height: 13px;
}

.profile-social-stats {
  display: flex;
  gap: 0;
  margin: 0 -24px;
  padding: 11px 24px;
  border-top: 1px solid rgba(207, 228, 236, 0.6666666667);
  background: rgba(255, 255, 255, 0.3803921569);
}

.profile-social-stats button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 2px 5px;
  color: #6e879b;
  font-size: 10px;
  background: transparent;
  border: 0;
}

.profile-social-stats button + button {
  border-left: 1px solid #cfe1e8;
}

.profile-social-stats svg {
  width: 15px;
  height: 15px;
  color: #759db0;
}

.profile-social-stats strong {
  color: #3c7895;
  font-weight: 650;
}

.profile-hero-orbit {
  position: absolute;
  top: -11px;
  right: -15px;
  width: 156px;
  height: 156px;
  border: 1px solid rgba(255, 255, 255, 0.6509803922);
  border-radius: 50%;
  transform: rotate(14deg);
}

.profile-hero-orbit::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7215686275);
  border-radius: 50%;
}

.profile-hero-orbit > span {
  position: absolute;
  top: 50px;
  left: 38px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.7215686275);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7333333333), rgba(220, 233, 246, 0.7019607843));
  color: #93a5c5;
  box-shadow: inset 0 1px #fff, 0 5px 13px rgba(118, 139, 170, 0.0784313725);
}

.profile-hero-orbit > span svg {
  width: 34px;
  height: 34px;
}

.profile-hero-orbit > i,
.profile-hero-orbit > b {
  position: absolute;
  color: #b7a2cc;
}

.profile-hero-orbit > i {
  left: 18px;
  top: 29px;
}

.profile-hero-orbit > b {
  right: 19px;
  bottom: 11px;
  color: #c59aae;
}

.profile-tabs {
  display: flex;
  gap: 3px;
  margin: 17px 0;
  padding: 5px;
  border: 1px solid #d7e7ef;
  background: linear-gradient(#fcfeff, #f5fafc);
  border-radius: 11px;
}

.profile-tabs > button {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #728c9e;
  font-size: 11px;
  white-space: nowrap;
}

.profile-tabs > button[aria-selected=true] {
  color: #3585a5;
  border-color: #c3e2ef;
  background: linear-gradient(130deg, #fff, #e9f7fc);
  box-shadow: 0 2px 4px rgba(86, 130, 156, 0.0392156863), inset 0 1px #fff;
}

.profile-tabs svg {
  width: 15px;
  height: 15px;
}

.profile-tabs > button > span {
  padding: 0 4px;
  border-radius: 4px;
  font-size: 8px;
  background: #e8f0f6;
}

[data-profile-panel] > .profile-panel {
  padding: 18px;
  margin-bottom: 18px;
}

.profile-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.profile-section-heading h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #427e9c;
}

.profile-caption {
  color: #96a7b3;
  font-size: 9px;
}

.profile-bio {
  font-size: 13px;
  line-height: 1.9;
  color: #547286;
}

.profile-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 25px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid #edf2f5;
  border-bottom: 1px solid #edf2f5;
}

.profile-facts dt {
  color: #8a9daa;
  font-size: 10px;
  margin-bottom: 3px;
}

.profile-facts dd {
  color: #58768b;
  font-size: 11px;
}

.profile-small-heading {
  font-size: 10px;
  font-weight: 600;
  color: #7d90a1;
  margin-bottom: 9px !important;
}

.profile-interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.profile-interest-tags > span {
  padding: 4px 9px;
  border: 1px solid var(--profile-edge);
  border-radius: 6px;
  color: var(--profile-ink);
  background: linear-gradient(#fff, var(--profile-tint));
  font-size: 10px;
}

.profile-text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: #6b9aaf;
  font-size: 10px;
  white-space: nowrap;
}

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

.profile-project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.profile-project {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--profile-edge);
  border-radius: 10px;
  background: #fff;
}

.profile-project-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8px 12px;
  min-height: 108px;
  background: radial-gradient(ellipse at 90% 30%, var(--profile-tint), transparent), linear-gradient(120deg, #fff, var(--profile-tint));
}

.profile-project-art img {
  display: block;
  width: 130px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 7px 5px rgba(55, 99, 133, 0.0862745098));
}

.profile-project-art > span {
  position: absolute;
  top: 12px;
  left: 11px;
  max-width: 95px;
  padding: 3px 6px;
  border: 1px solid rgba(255, 255, 255, 0.7215686275);
  border-radius: 5px;
  font-size: 8px;
  color: var(--profile-ink);
  background: rgba(255, 255, 255, 0.7215686275);
}

.profile-project > div:last-child {
  padding: 12px;
}

.profile-project h3 {
  font-size: 12px;
  color: #407892;
  font-weight: 650;
  line-height: 1.5;
}

.profile-project p {
  margin-top: 6px;
  font-size: 10px;
  color: #7891a2;
  line-height: 1.75;
}

.profile-project footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--profile-ink);
}

.profile-project footer > span {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.profile-project i {
  font-style: normal;
  font-size: 8px;
  padding: 2px 5px;
  background: var(--profile-tint);
  border-radius: 4px;
}

.profile-project footer svg {
  width: 14px;
  height: 14px;
}

.profile-scrap {
  display: flex;
  gap: 11px;
  padding: 16px 0;
  border-top: 1px solid #e9f0f4;
}

.profile-scrap:first-child {
  padding-top: 0;
  border-top: 0;
}

.profile-scrap > div {
  flex: 1;
  min-width: 0;
}

.profile-scrap header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
}

.profile-scrap strong {
  font-weight: 600;
  color: #497c98;
}

.profile-scrap header > span {
  color: #93a3b1;
  font-size: 9px;
}

.profile-scrap p {
  font-size: 12px;
  color: #6d8698;
  line-height: 1.85;
  margin-top: 7px;
  overflow-wrap: anywhere;
}

.profile-avatar {
  display: inline-block;
  flex-shrink: 0;
  width: 39px;
  height: 39px;
  overflow: hidden;
  border: 1px solid var(--profile-edge);
  border-radius: 11px;
  background: linear-gradient(140deg, #fff, var(--profile-tint));
  box-shadow: inset 0 1px #fff;
}

.profile-avatar svg {
  display: block;
  width: 100%;
  height: 100%;
}

.profile-like {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  padding: 7px 0 0;
  background: none;
  color: #9b8da7;
  font-size: 9px !important;
}

.profile-like svg {
  width: 13px;
  height: 13px;
}

.profile-like[aria-pressed=true] {
  color: #bd7294;
}

.profile-like[aria-pressed=true] svg {
  fill: #f6d5e6;
}

.profile-right > section {
  padding: 16px;
  margin-bottom: 18px;
}

.profile-right .profile-section-heading {
  margin-bottom: 17px;
}

.profile-right .profile-section-heading h2 {
  font-size: 15px;
}

.profile-count {
  font-size: 10px;
  color: #7e9cad;
  padding: 2px 7px;
  border: 1px solid #e1ebf1;
  border-radius: 6px;
  background: #f6fafc;
}

.profile-friends-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px 8px;
}

.profile-friend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  min-width: 0;
}

.profile-friend .profile-avatar {
  width: 61px;
  height: 61px;
  border-radius: 13px;
  box-shadow: inset 0 1px #fff, 0 3px 7px rgba(54, 113, 144, 0.0470588235);
}

.profile-friend strong {
  width: 100%;
  color: #68859b;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.profile-panel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-top: 17px;
  padding: 12px 0 0;
  border: 0;
  border-top: 1px solid #e7eff3;
  color: #6193ae;
  font-size: 10px !important;
  background: none;
}

.profile-panel-link svg {
  width: 13px;
  height: 13px;
}

.profile-side-intro {
  color: #879aaa;
  font-size: 10px;
  margin: -7px 0 9px !important;
}

.profile-community {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 0;
  border-bottom: 1px solid #edf2f5;
}

.profile-community:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.profile-community .profile-icon {
  width: 37px;
  height: 37px;
  border-radius: 10px;
}

.profile-community > span:nth-child(2) {
  flex: 1;
  min-width: 0;
}

.profile-community strong {
  display: block;
  color: #567e96;
  font-size: 11px;
  font-weight: 600;
}

.profile-community small {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  color: #8da0af;
}

.profile-community > svg {
  width: 12px;
  height: 12px;
  color: #a6bdca;
}

.profile-kindness {
  background: radial-gradient(ellipse at 100% 0%, rgba(250, 233, 242, 0.631372549), transparent), linear-gradient(145deg, #fff, #f6f2fc);
}

.profile-kindness h2 {
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #807193;
}

.profile-kindness > p {
  font: italic 13px/1.95 Georgia, serif;
  color: #8b7c9a;
  margin-top: 12px;
}

.profile-kindness > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
}

.profile-kindness > div strong,
.profile-kindness > div small {
  display: block;
}

.profile-kindness > div strong {
  font-size: 10px;
  font-weight: 600;
  color: #7c7394;
}

.profile-kindness > div small {
  font-size: 8px;
  color: #a295ae;
}

.profile-kindness .profile-text-link {
  margin-top: 13px;
  color: #9786aa;
}

.profile-demo-note {
  margin-top: 20px !important;
  font-size: 9px;
  color: #93a4b1;
  text-align: center;
}

.profile-section-intro {
  color: #7e97a7;
  font-size: 12px;
  margin-bottom: 18px !important;
}

#profile-scrap-form {
  padding: 14px;
  border: 1px solid #dcd8ed;
  border-radius: 10px;
  background: linear-gradient(135deg, #fbfaff, #f1faff);
  margin-bottom: 23px;
}

#profile-scrap-form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #7e7396;
  margin-bottom: 8px;
}

#profile-scrap-form textarea {
  width: 100%;
  min-height: 84px;
  resize: vertical;
  padding: 10px;
  background: rgba(255, 255, 255, 0.6784313725);
  border: 1px solid #d8e3ed;
  border-radius: 7px;
  color: #55788e;
  font-size: 12px;
}

#profile-scrap-form > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

#profile-scrap-form > div > span {
  font-size: 9px;
  color: #8c98a9;
}

.profile-project-explore {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  background: linear-gradient(125deg, #f1fbff, #f7f2fd);
  border: 1px solid #d7e1ee;
  border-radius: 10px;
  margin-top: 20px;
}

.profile-project-explore > span:nth-child(2) {
  flex: 1;
}

.profile-project-explore strong,
.profile-project-explore small {
  display: block;
}

.profile-project-explore strong {
  color: #61839d;
  font-size: 12px;
}

.profile-project-explore small {
  margin-top: 4px;
  color: #8b9dae;
  font-size: 10px;
}

.profile-testimonial {
  padding: 20px;
  margin-top: 14px;
  border: 1px solid #e3ddec;
  border-radius: 11px;
  background: linear-gradient(135deg, #fff, #fbf7ff);
}

.profile-quote {
  color: #c0a6d3;
}

.profile-testimonial blockquote {
  margin: 9px 0 17px;
  color: #7d7292;
  font: italic 16px/1.9 Georgia, serif;
}

.profile-testimonial footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-testimonial footer strong,
.profile-testimonial footer small {
  display: block;
}

.profile-testimonial footer strong {
  color: #6b7f96;
  font-size: 12px;
}

.profile-testimonial footer small {
  color: #96a0af;
  font-size: 10px;
}

.profile-noscript {
  max-width: 1100px;
  margin: 20px auto;
  padding: 15px;
  color: #6b7e8d;
  font-size: 12px;
}

@media (max-width: 1200px) {
  .profile-shell {
    padding: 23px 20px 40px;
  }
  .profile-layout {
    grid-template-columns: 218px minmax(0, 1fr) 254px;
    gap: 17px;
  }
  .profile-hero {
    padding: 21px 20px 0;
  }
  .profile-social-stats {
    margin: 0 -20px;
    padding: 11px 16px;
  }
  .profile-name h1 {
    font-size: 29px;
  }
  .profile-role {
    font-size: 11px;
  }
  .profile-hero-orbit {
    right: -35px;
    opacity: 0.65;
  }
  .profile-tabs > button {
    padding: 7px 6px;
    gap: 4px;
    font-size: 10px;
  }
  .profile-tabs svg {
    width: 13px;
    height: 13px;
  }
  .profile-caption {
    display: none;
  }
  .profile-facts {
    gap: 13px;
  }
  .profile-section-heading h2 {
    font-size: 14px;
  }
  .profile-friend .profile-avatar {
    width: 56px;
    height: 56px;
  }
  .profile-project-art > span {
    max-width: 90px;
  }
  .profile-project-art img {
    width: 108px;
  }
}
@media (max-width: 1050px) {
  .profile-layout {
    grid-template-columns: 218px minmax(0, 1fr);
    gap: 20px;
  }
  .profile-right {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }
  .profile-right > section {
    margin-bottom: 0;
  }
  .profile-kindness {
    grid-column: 1/-1;
  }
  .profile-kindness h2 br {
    display: none;
  }
  .profile-kindness > p {
    max-width: 520px;
  }
  .profile-name h1 {
    font-size: 32px;
  }
}
@media (max-width: 700px) {
  .profile-shell {
    padding: 20px 12px 30px;
  }
  .profile-breadcrumb {
    margin-bottom: 16px;
    font-size: 10px;
  }
  .profile-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .profile-identity {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    column-gap: 16px;
    padding: 14px;
  }
  .profile-photo {
    align-self: start;
    grid-row: span 2;
  }
  .profile-identity-copy {
    padding-top: 3px;
  }
  .profile-identity h2 {
    font-size: 22px;
  }
  .profile-identity-actions {
    margin-top: 11px;
    gap: 6px;
  }
  .profile-identity-actions .profile-button {
    min-height: 33px;
    padding: 6px 8px;
    font-size: 10px !important;
  }
  .profile-member-since {
    grid-column: 1/-1;
    padding-top: 12px;
  }
  .profile-menu {
    display: none;
  }
  .profile-menu :is(a, button) {
    min-width: max-content;
    width: auto;
    padding: 6px 8px;
    gap: 6px;
    font-size: 10px;
  }
  .profile-menu .profile-icon {
    width: 23px;
    height: 23px;
    border-radius: 6px;
  }
  .profile-menu .profile-icon svg {
    width: 13px;
    height: 13px;
  }
  .profile-menu small {
    display: none;
  }
  .profile-personal-note {
    display: none;
  }
  .profile-right {
    grid-column: 1;
  }
  .profile-center {
    width: 100%;
  }
  .profile-hero {
    padding: 20px 18px 0;
  }
  .profile-social-stats {
    margin: 0 -18px;
    padding: 11px 12px;
  }
  .profile-tabs {
    margin: 14px 0;
  }
  .profile-tabs > button {
    min-height: 38px;
    font-size: 10px;
  }
  [data-profile-panel] > .profile-panel {
    padding: 15px;
  }
}
@media (max-width: 440px) {
  .profile-identity {
    grid-template-columns: 118px minmax(0, 1fr);
    column-gap: 12px;
    padding: 12px;
  }
  .profile-identity h2 {
    font-size: 20px;
  }
  .profile-handle {
    font-size: 10px;
  }
  .profile-location {
    font-size: 10px;
  }
  .profile-available {
    font-size: 9px;
    margin-top: 8px;
  }
  .profile-button {
    gap: 5px;
  }
  .profile-square {
    width: 31px;
  }
  .profile-square svg {
    width: 14px;
  }
  .profile-name h1 {
    font-size: 28px;
  }
  .profile-eyebrow {
    font-size: 7px;
  }
  .profile-hero-orbit {
    right: -56px;
  }
  .profile-role {
    max-width: 91%;
    line-height: 1.8;
    font-size: 11px;
  }
  .profile-mood {
    font-size: 11px;
  }
  .profile-social-stats button {
    gap: 4px;
    padding: 2px 3px;
    font-size: 9px;
  }
  .profile-social-stats svg {
    width: 13px;
  }
  .profile-tabs {
    gap: 1px;
    padding: 4px;
  }
  .profile-tabs > button {
    padding: 7px 5px;
    font-size: 9px;
  }
  .profile-tabs > button > span {
    display: none;
  }
  .profile-tabs svg {
    width: 13px;
    height: 13px;
  }
  .profile-section-heading h2 {
    font-size: 14px;
  }
  .profile-section-heading .profile-icon {
    width: 28px;
    height: 28px;
  }
  .profile-bio {
    font-size: 12px;
  }
  .profile-facts {
    gap: 14px 12px;
  }
  .profile-facts dd {
    font-size: 10px;
  }
  .profile-project-grid {
    grid-template-columns: 1fr;
  }
  .profile-project {
    display: grid;
    grid-template-columns: 106px minmax(0, 1fr);
  }
  .profile-project-art {
    padding: 7px;
    min-height: 148px;
    justify-content: center;
  }
  .profile-project-art img {
    width: 100px;
    height: 74px;
  }
  .profile-project-art > span {
    top: 10px;
    left: 8px;
    max-width: 90px;
    font-size: 7px;
  }
  .profile-project > div:last-child {
    padding: 11px;
  }
  .profile-right {
    grid-template-columns: 1fr;
  }
  .profile-kindness {
    grid-column: auto;
  }
  .profile-friend .profile-avatar {
    width: 72px;
    height: 72px;
  }
  .profile-friend strong {
    font-size: 11px;
  }
  .profile-friends-grid {
    gap: 16px 10px;
  }
  .profile-scrap p {
    font-size: 11px;
  }
  .profile-text-link {
    font-size: 9px;
  }
  .profile-text-link svg {
    width: 11px;
  }
  #profile-scrap-form textarea {
    font-size: 16px;
  }
  #profile-scrap-form > div {
    flex-wrap: wrap;
  }
}
.main-nav .mobile-ai-link {
  display: none;
}

@media (max-width: 880px) {
  .main-nav .mobile-ai-link {
    display: flex;
  }
}
body h1[tabindex="-1"]:focus {
  outline: none;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  border: 2px solid #075985;
  border-radius: 7px;
  color: #07364d;
  background: #fff;
  font-weight: 600;
  transform: translateY(calc(-100% - 12px));
}
.skip-link:focus {
  transform: none;
}

body :is(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid #075985;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}
/*# sourceMappingURL=userProfileCritical.css.map */
