/* Department site local asset stub (created by Department Site wizard) */
/* ICPS CTA stripe */
.icps-cta {
  /* Accessible alternative to #1791AD for white text */
  background-color: #14819A !important;
  color: #ffffff;
  padding: 2.25rem 0;
  text-align: center;
}

/* Keep site typography; just constrain width and spacing */
.icps-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
			
/* Ensure breathing room on mobile */
.icps-cta {
  padding-top: 3rem;
}

.icps-cta__subhead {
  margin-top: 0.5rem;
}

/* Buttons: accessible links styled as buttons */
.icps-cta__actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap; /* allows wrap on medium screens */
}

/* If you want stacked buttons on narrow mobile */
@media (max-width: 520px) {
  .icps-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .icps-cta__btn {
    width: min(340px, 100%);
  }
}

.icps-cta__btn {
  /* If you prefer to keep the university’s button look, you can
     drop these styles and just override underline/focus below.
     This version is self-contained and consistent. */
  display: inline-block;
  padding: 0.85rem 1.15rem;
  border-radius: 0.375rem;
  border: 2px solid #990000;
  color: #990000 !important;
  background: #ffffff;
  text-decoration: none !important; /* prevents underline on hover */
  font-weight: 600;
  line-height: 1.2;
}

/* Hover: allow color change WITHOUT underline */
.icps-cta__btn:hover {
  background: #ffffff;
  color: #14819A !important;
  text-decoration: none !important;
}

/* Keyboard focus: keep a strong visible indicator */
.icps-cta__btn:focus,
.icps-cta__btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

/* If your theme adds underline on hover for all links, this blocks it here */
.icps-cta__actions a:hover,
.icps-cta__actions a:focus {
  text-decoration: none !important;
}


}
