/*
Theme Name: Sheshi Mobile Profile Website Action
Version: 0.34.9
Description: Restores the website action as a visible secondary CTA on mobile profiles.
*/

@media (max-width: 767px) {
  body.single-listing .sheshi-profile-sidebar .sheshi-profile-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  body.single-listing .sheshi-profile-sidebar .sheshi-profile-action--route,
  body.single-listing .sheshi-profile-sidebar .sheshi-profile-action--website {
    display: inline-flex !important;
    min-width: 0 !important;
  }

  body.single-listing .sheshi-profile-sidebar .sheshi-profile-action.is-primary {
    order: -1 !important;
    grid-column: 1 / -1 !important;
  }

  body.single-listing .sheshi-profile-sidebar .sheshi-profile-action:not(.is-primary) {
    grid-column: auto !important;
  }

  body.single-listing .sheshi-profile-sidebar .sheshi-profile-action--website > span {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 350px) {
  body.single-listing .sheshi-profile-sidebar .sheshi-profile-action {
    gap: 6px !important;
    padding-inline: 8px !important;
    font-size: 11.5px !important;
  }
}
