/* Final Profile action-button sizing and arrow removal */
.page-profile .profile-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 156px)) !important;
  align-items: stretch !important;
  gap: clamp(18px, 2vw, 26px) !important;
  width: max-content !important;
}

.page-profile .profile-actions .view-switcher--inline {
  width: 100% !important;
  margin: 0 !important;
}

.page-profile .profile-actions .view-switcher__button,
.page-profile .profile-actions .explore-work {
  box-sizing: border-box !important;
  width: 156px !important;
  min-width: 156px !important;
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  font-family: "Raleway", Arial, sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.page-profile .profile-actions .view-switcher__button {
  border: 0 !important;
  background: var(--royal-blue, #1747b0) !important;
  color: var(--cream, #f7f1e8) !important;
}

.page-profile .profile-actions .view-switcher__arrow {
  display: none !important;
}

@media (max-width: 760px) {
  .page-profile .profile-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: min(100%, 310px) !important;
  }

  .page-profile .profile-actions .view-switcher__button,
  .page-profile .profile-actions .explore-work {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 40px !important;
    padding: 11px 12px !important;
    font-size: 10px !important;
    letter-spacing: 0.09em !important;
  }
}

@media (max-width: 360px) {
  .page-profile .profile-actions {
    grid-template-columns: 1fr !important;
    width: min(100%, 190px) !important;
  }
}
