/* Profile top gutter and homepage-matched view selector */

/* Give the Profile page more breathing room below the navigation. */
.page-profile .about-page {
  padding-top: clamp(48px, 5vw, 72px) !important;
}

/* Match the Profile view selector to the homepage category dropdown. */
.page-profile .profile-actions .view-switcher__button {
  display: inline-flex;
  min-width: 122px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 2px 6px;
  border: 0;
  border-bottom: 1px solid rgba(61, 51, 44, 0.38);
  border-radius: 0;
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(10px, 0.9vw, 11px);
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-profile .profile-actions .view-switcher__button:hover,
.page-profile .profile-actions .view-switcher__button:focus-visible {
  border-bottom-color: #023fa1;
  color: #023fa1;
}

.page-profile .profile-actions .view-switcher__arrow {
  position: static;
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1;
  opacity: 0.72;
}

@media (max-width: 608px) {
  .page-profile .about-page {
    padding-top: 38px !important;
  }

  .page-profile .profile-actions .view-switcher__button {
    min-width: 124px;
    padding: 8px 2px 6px;
    font-size: 10px;
  }
}
