.ws-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  transform-origin: center;
  will-change: transform;
}

.ws-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

/* .ws-btn:visited {
  color: inherit;
} */

.ws-btn-primary {
  background: var(--ws-blue);
  border: 2px solid var(--ws-blue);
  color: #ffffff;
}

.ws-btn-primary:hover {
  background: var(--ws-blue-dark);
  border-color: var(--ws-blue-dark);
  color: #ffffff;
}

.ws-btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.ws-btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.95);
  color: #ffffff;
}

.ws-btn-outline-blue:hover {
  background-color: color-mix(in srgb, var(--ws-blue), transparent 94%);
  border-color: var(--ws-blue);
  color: var(--ws-blue-dark);
}

.ws-btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
}

.ws-btn-md {
  font-size: 0.95rem;
  padding: 14px 30px;
}

.ws-hero {
  position: relative;
}

.ws-hero-overlay {
  background: linear-gradient(135deg, rgba(0, 71, 187, 0.72) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(54, 87, 59, 0.45) 100%);
}

.ws-hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #0047BB 0%, #CB6015 50%, #36573B 100%);
  z-index: 10;
}

.ws-hero-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 16px;
  background: #CB6015;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ws-hero-title {
  margin-bottom: 24px;
  color: #ffffff;
  font-family: var(--display-font);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.ws-hero-title-accent {
  color: #CB6015;
}

.ws-hero-title-kicker {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.ws-hero-copy {
  max-width: 540px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
}

.ws-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.ws-marquee-band {
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  background: #0047BB;
  border-bottom: 3px solid #CB6015;
}

.ws-marquee {
  display: inline-block;
  animation: wsMarquee 28s linear infinite;
}

.ws-marquee-item {
  margin: 0 28px;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ws-marquee-separator {
  margin: 0 4px;
  color: #CB6015;
}

@keyframes wsMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ws-stone-row > div {
  display: flex;
}

.ws-stone-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.ws-stone-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.ws-stone-card-content a {
  margin-top: auto;
}

.ws-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.ws-inline-link-label,
.ws-inline-link i {
  transition: transform 0.25s ease, color 0.25s ease;
}

.ws-inline-link:hover .ws-inline-link-label {
  transform: scale(1.04);
  transform-origin: left center;
}

.ws-inline-link:hover i {
  transform: translateX(4px);
}