/*
- --------------------------------------------------------------------------------------------------------------
- Author: alowe@cihq.org
- Description: Corporate, AI Trust CSS.
- 05/13/2026 Created (Allen)
- --------------------------------------------------------------------------------------------------------------
*/

main h1 {
  margin: 0;
  padding: 30px 0 6px 0;
  font-size: 2.1em;
  color: #000000;
  font-weight: 400;
  line-height: 1.0em;
}

main .pageSubTitle {
  margin: 0;
  padding: 0;
  font-size: 1.3em;
  color: #a30000;
  font-weight: 400;
  line-height: 1.0em;
}

.download-block {
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 16px 20px 16px 20px;
  margin: 20px 0;

  display: flex;
  align-items: center;
  justify-content: flex-start; 
  gap: 15px; 
}

.download-text {
  color: #1f2937;
  margin-top: 10px;
}

.download-btn {
  background-color: #0d6efd;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none !important;
  display: inline-block;
}

.download-btn:hover {
  background-color: #0b5ed7;
  color: #ffffff;
}

.breadcrumb {
  padding: 16px 0 0 0;
  font-size: 0.95em;
  background-color: #ffffff;
}

/* container */
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;           /* ✅ enables wrapping */
  flex-wrap: wrap;
  gap: 4px 8px;           /* ✅ spacing between items */
}

/* each item */
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: #6b7280;
}

/* separator */
.breadcrumb li + li::before {
  content: "|";
  margin-right: 6px;
  color: silver;
}

/* links = bigger tap area ✅ */
.breadcrumb a {
  display: inline-block;
  padding: 0 8px 0 8px;       /* ✅ key fix for mobile tap */
  text-decoration: none !important;
  color: #003a8f;

  white-space: normal;    /* ✅ allow wrapping */
  line-height: 1;
}

/* hover */
.breadcrumb a:hover {
  text-decoration: underline !important;
}

.breadcrumb a:active {
  background-color: #e5e7eb;
  border-radius: 4px;
}

/* current */
.breadcrumb a[aria-current="page"] {
  color: #a30000;
  pointer-events: none;
}

/* MOBILE IMPROVEMENT */
@media (max-width: 768px) {

  .breadcrumb a {
    padding: 4px 10px 4px 10px;    /* ✅ bigger tap targets */
  }

}

