/* Page Header */
.page_header {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

/* Background */
.page_header_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page_header_background_container {
  width: 100%;
  height: 100%;
}

.page_header_background_media {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page_header_background_media img {
  display: none;
}

/* Inner Content */
.page_header_inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

.page_header_inner.gradient_6 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.page_header_row {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page_header_cell {
  width: 100%;
  max-width: 66.666%;
}

/* Breadcrumbs */
.breadcrumb_mobile {
  margin-bottom: 20px;
}

.breadcrumb_nav {
  margin-bottom: 10px;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb .linkitem {
  color: #ffffff;
  font-size: 14px;
}

.breadcrumb .linkitem:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #ffffff;
}

.breadcrumb .linkitem a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb .linkitem a:hover {
  text-decoration: underline;
}

/* Page Title */
.page_header_content {
  color: #ffffff;
}

.page_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: #ffffff;
  line-height: 1.2;
}

.program-finder-header__subtitle {
  font-size: 1.125rem;
  margin: 0 0 20px;
  color: #ffffff;
  line-height: 1.5;
}

/* Search Container */
.program-finder-header__search-container {
  position: relative;
  max-width: 500px;
  margin-top: 20px;
}

.program-finder-header__search {
  width: 100%;
  padding: 12px 45px 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  background: #ffffff;
}

.program-finder-header__search:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

.program-finder-header__search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  fill: #666;
  pointer-events: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .page_header_inner {
    padding: 40px 15px;
  }

  .page_title {
    font-size: 2rem;
  }

  .page_header_cell {
    max-width: 100%;
  }
}

@media (max-width: 740px) {
  .page_header_inner {
    padding: 30px 15px;
    min-height: 300px;
  }

  .page_title {
    font-size: 1.75rem;
  }

  .program-finder-header__subtitle {
    font-size: 1rem;
  }
}

