/* Minimal Bootstrap compatibility layer for legacy Razor views */

* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

[class*="col-"] {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333333%; }
.col-3 { width: 25%; }

@media (min-width: 768px) {
  .col-md-12 { width: 100%; }
  .col-md-10 { width: 83.333333%; }
  .col-md-8 { width: 66.666667%; }
  .col-md-6 { width: 50%; }
  .col-md-5 { width: 41.666667%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-3 { width: 25%; }
  .col-md-2 { width: 16.666667%; }
}

@media (min-width: 992px) {
  .col-lg-12 { width: 100%; }
  .col-lg-9 { width: 75%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-3 { width: 25%; }
}

.justify-content-lg-center {
  justify-content: center;
}

.order-lg-1 { order: 1; }
.order-lg-2 { order: 2; }
.order-lg-3 { order: 3; }
.ml-xl-auto { margin-left: auto; }

.text-center { text-align: center; }
.text-right, .text-lg-right { text-align: right; }
.text-left { text-align: left; }

.main-container {
  padding: 2.5rem 0;
}

.page-title {
  margin: 0 0 0.9rem;
  color: var(--song-navy);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  margin: 0;
  font-size: 0.875rem;
  gap: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin-right: 0.5rem;
  color: #94a3b8;
}

.nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  margin-bottom: 1rem;
}

.nav-link {
  display: inline-block;
  padding: 0.625rem 0.9rem;
  text-decoration: none;
  cursor: pointer;
}

.nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--song-gold);
  color: var(--song-navy);
}

.space-y-1 a.active {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-weight: 600;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active,
.tab-content > .show {
  display: block;
}

.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

.card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
}

.card + .card {
  margin-top: 0.75rem;
}

.card-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.card-block,
.card-body {
  padding: 1rem;
}

.alert {
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
  background: #fff;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.2);
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  color: var(--song-navy);
  background: #fff;
}

.form-control:focus {
  border-color: var(--song-gold);
  outline: 0;
  box-shadow: 0 0 0 1px var(--song-gold);
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  padding: 0.75rem 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  background: var(--song-gold);
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.btn:hover {
  background: var(--song-navy);
  color: #fff;
}

.btn-block,
.btn-lg.btn-block {
  width: 100%;
  display: block;
}

.btn-success {
  background: var(--song-gold);
  color: #fff;
}

.btn-default,
.btn-default-transparent,
.btn-gray-transparent,
.btn-dark {
  background: var(--song-navy);
  color: #fff;
}

.main {
  background: #fff;
}

.sidebar,
.sidebar .card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.separator-2 {
  width: 64px;
  height: 2px;
  background: var(--song-gold);
  margin: 0 0 1.1rem;
}

.list-icons {
  list-style: none;
  padding-left: 0;
}

.list-icons li {
  margin-bottom: 0.55rem;
}

.imageleft {
  float: left;
  margin: 0.25rem 1rem 0.75rem 0;
  max-width: 220px;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.link-dark {
  color: var(--song-navy);
  text-decoration: none;
}

.link-dark:hover {
  color: var(--song-gold);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1060;
  overflow-y: auto;
  background: rgba(2, 6, 23, 0.6);
}

.modal.show {
  display: block;
}

.ui-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1060;
  overflow-y: auto;
  background: rgba(2, 6, 23, 0.6);
}

.ui-modal.is-open {
  display: block;
}

.modal-dialog {
  max-width: 600px;
  margin: 2rem auto;
  width: calc(100% - 2rem);
}

.ui-modal-dialog {
  max-width: 600px;
  margin: 2rem auto;
  width: calc(100% - 2rem);
}

.modal-content {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.ui-modal-content {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.modal-header,
.modal-body,
.modal-footer {
  padding: 1rem;
}

.ui-modal-header,
.ui-modal-body,
.ui-modal-footer {
  padding: 1rem;
}

.modal-header,
.modal-footer {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.ui-modal-header,
.ui-modal-footer {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.modal-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 0;
}

.ui-modal-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 0;
}

.close {
  border: 0;
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
}

.fade {
  opacity: 1;
}

/* Global page rhythm unification for legacy content pages */
.main-container > .container {
  max-width: 1200px;
}

.main-container .main.col-lg-9,
.main-container .main.col-12 {
  padding-top: 0.25rem;
}

.main-container .main {
  color: var(--song-navy);
}

.main-container .title,
.main-container h1 {
  margin: 0 0 0.9rem;
  color: var(--song-navy);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.main-container h2 {
  margin: 1.4rem 0 0.7rem;
  color: var(--song-navy);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.25;
}

.main-container h3,
.main-container h4 {
  margin: 1rem 0 0.55rem;
  color: var(--song-navy);
  font-weight: 600;
  line-height: 1.3;
}

.main-container p {
  margin: 0 0 0.85rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.92);
}

.main-container ul:not(.nav):not(.breadcrumb):not(.list-icons),
.main-container ol:not(.breadcrumb) {
  margin: 0 0 1rem 1.1rem;
}

.main-container ul li,
.main-container ol li {
  margin-bottom: 0.35rem;
}

.main-container .list-icons li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.main-container a:not(.btn):not(.btn-song):not(.nav-link) {
  color: #0f4f9c;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.main-container a:not(.btn):not(.btn-song):not(.nav-link):hover {
  color: var(--song-gold);
}

.main-container .alert,
.main-container .alert-1a {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  padding: 0.95rem 1rem;
  margin: 1rem 0 1.25rem;
}

.main-container .table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background: #fff;
}

.main-container .table th,
.main-container .table td {
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.65rem 0.75rem;
  vertical-align: top;
}

.main-container .table thead th {
  background: rgba(15, 23, 42, 0.03);
  color: var(--song-navy);
  font-weight: 700;
}

.main-container .table-striped tbody tr:nth-child(2n) {
  background: rgba(148, 163, 184, 0.08);
}

.main-container .table-colored thead th {
  background: rgba(15, 23, 42, 0.04);
}

.main-container .table-hover tbody tr:hover {
  background: rgba(197, 160, 89, 0.1);
}

.page-header {
  margin: 1.1rem 0 0.45rem;
}

.lead {
  font-size: 1rem;
  line-height: 1.7;
}

.text-default {
  color: var(--song-navy);
}

.alert-link {
  color: #0f4f9c;
  text-decoration: underline;
}

.alert-link:hover {
  color: var(--song-gold);
}

.span2,
.span3,
.span4,
.span6,
.span7,
.span9 {
  width: auto;
}

.main-container .sidebar {
  position: sticky;
  top: 1rem;
}

.main-container .sidebar a {
  text-decoration: none;
}

.main-container .btn,
.main-container .btn-song {
  margin-top: 0.3rem;
}

section.pv-20.stats.padding-bottom-clear.dark-translucent-bg.hovered.background-img-1 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background-image: none !important;
  background-color: #f8f6f1 !important;
  color: var(--song-navy);
}

section.pv-20.stats.padding-bottom-clear.dark-translucent-bg.hovered.background-img-1::after {
  display: none !important;
}

section.pv-20.stats.padding-bottom-clear.dark-translucent-bg.hovered.background-img-1 > .container {
  position: relative;
  z-index: 1;
}

.banner.dark-translucent-bg.hovered.padding-bottom-clear {
  background-image: none !important;
  background-color: #f8f6f1 !important;
  color: var(--song-navy);
}

.banner.dark-translucent-bg.hovered.padding-bottom-clear::after {
  display: none !important;
}

.padding-bottom-clear {
  padding-bottom: 0 !important;
}

.hc-element-invisible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.text-success {
  color: #0f766e !important;
}

.text-warning {
  color: #b45309 !important;
}

.alert-icon > .fa,
.alert-icon > i {
  margin-right: 0.45rem;
}

.bordered {
  border: 1px solid rgba(15, 23, 42, 0.14);
}

.rounded {
  border-radius: 0.5rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.d-block {
  display: block !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.medium_white {
  color: rgba(15, 23, 42, 0.9);
}

.hc-item-box,
.call-to-action,
.image-box {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.light-gray-bg {
  background: #f8fafc !important;
}

.hc-shadow,
.hc-shadow-2 {
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
}

.p-20 {
  padding: 1.25rem !important;
}

.pv-30 {
  padding-top: 1.9rem !important;
  padding-bottom: 1.9rem !important;
}

.ph-20 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.mb-20 {
  margin-bottom: 1.25rem !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.text-info {
  color: #0f4f9c !important;
}

.text-danger {
  color: #b91c1c !important;
}

.title.large {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--song-navy);
}

.section.clearfix {
  margin-top: 1.25rem;
}

.section.clearfix > .container {
  max-width: 1200px;
}

.panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  margin-bottom: 1rem;
}

.panel-heading {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
}

.panel-heading h3,
.panel-heading h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--song-navy);
}

.panel-body {
  padding: 1rem;
}

.leaf {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .main-container .sidebar {
    position: static;
    margin-top: 1.25rem;
  }

  .imageleft {
    float: none;
    margin: 0.4rem 0 0.85rem;
    max-width: 100%;
  }
}
