/*
Theme Name: Sheshi Action Role Closure
Version: 0.29.1
Description: Assigns every visibly bordered internal CTA to the secondary Slate role, including the intentional dark discovery island.
*/

/* Bordered internal links are secondary actions, not tertiary text links. */
body.sheshi-home .sheshi-section .sheshi-directory-link,
body.sheshi-home .sheshi-travel-feature .sheshi-cta-link,
body.sheshi-home .sheshi-section-soft .sheshi-cta-link,
body.sheshi-shell .sheshi-travel-transparency .sheshi-cta-link {
  display: inline-flex !important;
  min-height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: 1px solid var(--border-strong) !important;
  border-radius: 8px !important;
  color: var(--text-primary) !important;
  background: var(--surface-card) !important;
  box-shadow: none !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

body.sheshi-home .sheshi-section .sheshi-directory-link span,
body.sheshi-home .sheshi-travel-feature .sheshi-cta-link span,
body.sheshi-home .sheshi-section-soft .sheshi-cta-link span,
body.sheshi-shell .sheshi-travel-transparency .sheshi-cta-link span {
  color: currentColor !important;
}

body.sheshi-home .sheshi-section .sheshi-directory-link:hover,
body.sheshi-home .sheshi-section .sheshi-directory-link:focus-visible,
body.sheshi-home .sheshi-travel-feature .sheshi-cta-link:hover,
body.sheshi-home .sheshi-travel-feature .sheshi-cta-link:focus-visible,
body.sheshi-home .sheshi-section-soft .sheshi-cta-link:hover,
body.sheshi-home .sheshi-section-soft .sheshi-cta-link:focus-visible,
body.sheshi-shell .sheshi-travel-transparency .sheshi-cta-link:hover,
body.sheshi-shell .sheshi-travel-transparency .sheshi-cta-link:focus-visible {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: var(--surface-sunken) !important;
}

/* The discovery section is the only dark content island containing this
   secondary link. It uses the same role with the dark token aliases. */
body.sheshi-home .sheshi-discovery .sheshi-directory-link {
  min-height: 44px !important;
  border: 1px solid var(--dark-border-strong) !important;
  border-radius: 8px !important;
  color: var(--dark-text-primary) !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.sheshi-home .sheshi-discovery .sheshi-directory-link span {
  color: currentColor !important;
}

body.sheshi-home .sheshi-discovery .sheshi-directory-link:hover,
body.sheshi-home .sheshi-discovery .sheshi-directory-link:focus-visible {
  border-color: var(--dark-accent-text) !important;
  color: var(--dark-accent-text) !important;
  background: var(--dark-surface-sunken) !important;
}
