.tcr5-page {
  background: #fff;
}

.tcr5-page * {
  box-sizing: border-box;
}

.tcr5-jump-nav {
  border-bottom: 1px solid #dbdbdb;
  background: #f2f2f2;
}

.tcr5-jump-nav__inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.tcr5-jump-nav a {
  display: block;
  padding: 1rem 1.25rem;
  border-right: 1px solid #dbdbdb;
  color: #003566;
  font-weight: 700;
}

.tcr5-jump-nav a:first-child {
  border-left: 1px solid #dbdbdb;
}

.tcr5-jump-nav a:hover,
.tcr5-jump-nav a:focus {
  color: #fff;
  background: #0A4B78;
}

.tcr5-section {
  width: 100%;
  padding: 4rem 0;
}

.tcr5-section + .tcr5-section {
  border-top: 1px solid #e6e6e6;
}

.tcr5-section--gray {
  background: #f5f5f5;
}

.tcr5-section--navy {
  color: #fff;
  background: #003566;
}

.tcr5-section--blue {
  color: #fff;
  background: #0A4B78;
}

.tcr5-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.tcr5-reading-width {
  max-width: 980px;
}

.tcr5-kicker {
  margin: 0 0 .75rem;
  color: #D92732;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tcr5-section--navy .tcr5-kicker,
.tcr5-section--blue .tcr5-kicker {
  color: #FADADD;
}

.tcr5-page h2 {
  margin-bottom: 1.5rem;
  color: #003566;
  font-size: 2.25rem;
  line-height: 1.2;
}

.tcr5-page h3 {
  color: #003566;
  font-size: 1.5rem;
}

.tcr5-section--navy h2,
.tcr5-section--navy h3,
.tcr5-section--blue h2,
.tcr5-section--blue h3 {
  color: #fff;
}

.tcr5-page p,
.tcr5-page li {
  line-height: 1.625;
}

.tcr5-page p {
  margin-bottom: 1.5rem;
}

.tcr5-page ul,
.tcr5-page ol {
  margin: 0 0 2rem 1.5rem;
  padding-left: 1rem;
}

.tcr5-page li {
  margin-bottom: .75rem;
}

.tcr5-page ul li {
  list-style: disc;
}

.tcr5-page a {
  font-weight: 700;
}

.tcr5-section--navy a,
.tcr5-section--blue a {
  color: #FADADD;
}

.tcr5-intro {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 4rem;
  align-items: start;
}

.tcr5-intro__copy {
  max-width: 850px;
}

.tcr5-intro__copy > p:first-of-type {
  font-size: 1.25rem;
  line-height: 1.55;
}

.tcr5-intro__image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #003566;
}

.tcr5-intro__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcr5-intro__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,53,102, .05), rgba(0,53,102, .65));
  pointer-events: none;
}

.tcr5-intro__image-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(33, 145, 251, .78), rgba(0,53,102, .92)),
    repeating-linear-gradient(90deg, transparent 0, transparent 42px, rgba(255, 255, 255, .1) 43px, rgba(255, 255, 255, .1) 44px);
}

.tcr5-bucket-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tcr5-bucket-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tcr5-bucket {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background-color: #0A4B78;
  background-position: center;
  background-size: cover;
}

.tcr5-bucket::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,53,102, .1) 20%, rgba(0,53,102, .8) 80%, #003566);
  transition: transform .3s;
}

.tcr5-bucket__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem;
  transform: translateY(40px);
  transition: transform .3s;
}

.tcr5-bucket h3 {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
}

.tcr5-bucket__action {
  display: block;
  margin-top: 1rem;
  color: #FADADD;
  opacity: 0;
  transition: opacity .3s;
}

.tcr5-bucket:hover,
.tcr5-bucket:focus {
  color: #fff;
}

.tcr5-bucket:hover::before,
.tcr5-bucket:focus::before {
  transform: translateY(-1rem);
}

.tcr5-bucket:hover .tcr5-bucket__content,
.tcr5-bucket:focus .tcr5-bucket__content {
  transform: translateY(0);
}

.tcr5-bucket:hover .tcr5-bucket__action,
.tcr5-bucket:focus .tcr5-bucket__action {
  opacity: 1;
}

.tcr5-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: start;
}

.tcr5-split__panel {
  padding-left: 2rem;
  border-left: 3px solid #D92732;
}

.tcr5-review-grid,
.tcr5-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  background: #dbdbdb;
}

.tcr5-review-card,
.tcr5-evidence-card {
  padding: 2rem;
  color: #333;
  background: #fff;
}

.tcr5-review-card:only-child {
  grid-column: 1 / -1;
}

.tcr5-review-card:only-child > * {
  max-width: 1100px;
}

.tcr5-review-card h3,
.tcr5-evidence-card h3 {
  margin-bottom: 1rem;
  color: #003566;
  font-size: 1.35rem;
}

.tcr5-review-card p:last-child,
.tcr5-evidence-card p:last-child {
  margin-bottom: 0;
}

.tcr5-evidence-card a {
  color: #0A4B78;
}

.tcr5-process ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .35);
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  counter-reset: tcr5-step;
}

.tcr5-process li {
  min-height: 220px;
  margin: 0;
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, .35);
  list-style: none;
  counter-increment: tcr5-step;
}

.tcr5-process li:last-child {
  border-right: 0;
}

.tcr5-process li::before {
  content: '0' counter(tcr5-step);
  display: block;
  margin-bottom: 2rem;
  color: #FADADD;
  font-size: 1.25rem;
  font-weight: 700;
}

.tcr5-process strong {
  display: block;
  margin-bottom: .75rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.tcr5-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  background: #dbdbdb;
}

.tcr5-resource {
  display: block;
  padding: 2rem;
  color: #333;
  background: #fff;
}

.tcr5-resource:hover,
.tcr5-resource:focus {
  color: #333;
  background: #f2f2f2;
}

.tcr5-resource__type {
  display: block;
  margin-bottom: 1rem;
  color: #D92732;
  font-weight: 700;
  text-transform: uppercase;
}

.tcr5-resource h3 {
  margin: 0;
  font-size: 1.35rem;
}

.tcr5-resource__action {
  display: block;
  margin-top: 1.5rem;
  color: #0A4B78;
}

.tcr5-faq-list {
  border-top: 1px solid #dbdbdb;
}

.tcr5-faq-list details {
  border-bottom: 1px solid #dbdbdb;
  background: #fff;
}

.tcr5-faq-list summary {
  position: relative;
  padding: 1.5rem 4rem 1.5rem 0;
  color: #003566;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.tcr5-faq-list summary::-webkit-details-marker {
  display: none;
}

.tcr5-faq-list summary::after {
  content: '+';
  position: absolute;
  top: 1rem;
  right: 0;
  color: #D92732;
  font-size: 2rem;
  font-weight: 400;
}

.tcr5-faq-list details[open] summary::after {
  content: '–';
}

.tcr5-faq-list details > div {
  max-width: 900px;
  padding: 0 0 .5rem;
}

.tcr5-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
}

.tcr5-final-cta p:last-child {
  margin-bottom: 0;
}

.tcr5-final-cta__button {
  display: inline-block;
  padding: .8em 1.5em;
  color: #fff;
  background: #D92732;
  font-size: 1.125rem;
  font-weight: 700;
  white-space: nowrap;
}

.tcr5-final-cta__button:hover,
.tcr5-final-cta__button:focus {
  color: #003566;
  background: #FADADD;
}

.tcr5-auto-section__content > :last-child,
.tcr5-auto-section__content > div > :last-child {
  margin-bottom: 0;
}

.tcr5-auto-section__content h3 {
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.tcr5-auto-section__content h3:first-child {
  margin-top: 0;
}

.tcr5-auto-section--cards .tcr5-auto-section__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #dbdbdb;
}

.tcr5-auto-section--cards .tcr5-auto-section__content > h3,
.tcr5-auto-section--cards .tcr5-auto-section__content > p {
  margin: 0;
  padding: 2rem;
  background: #fff;
}

.tcr5-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.tcr5-guide-grid > div {
  min-width: 0;
}

.tcr5-guide-grid .guide-bucket {
  min-height: 320px;
  height: 100%;
}

.tcr5-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #585858;
}

.tcr5-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  gap: 4rem;
}

.tcr5-article-lead > p:first-child {
  font-size: 1.2rem;
  line-height: 1.6;
}

.tcr5-article-image {
  margin: 2rem 0 0;
}

.tcr5-article-image img {
  display: block;
  width: 100%;
}

.tcr5-article-aside {
  align-self: start;
  border-top: 4px solid #D92732;
  background: #f5f5f5;
}

.tcr5-article-aside h2 {
  margin: 0;
  padding: 1.25rem;
  font-size: 1.35rem;
}

.tcr5-article-aside a {
  display: block;
  padding: 1rem 1.25rem;
  border-top: 1px solid #dbdbdb;
  color: #003566;
}

.tcr5-qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #dbdbdb;
}

.tcr5-qualification-card {
  padding: 2.5rem;
  background: #fff;
}

.tcr5-qualification-card h2 {
  font-size: 1.875rem;
}

.tcr5-empty-state {
  padding: 2.5rem;
  border-left: 4px solid #D92732;
  background: #f5f5f5;
}

.tcr5-project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 2rem 0;
}

.tcr5-project-filters a {
  display: inline-flex;
  padding: .75rem 1rem;
  border: 1px solid #0A4B78;
  color: #003566;
  background: #fff;
}

.tcr5-project-filters a:hover,
.tcr5-project-filters a:focus {
  color: #fff;
  background: #0A4B78;
}

.tcr5-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tcr5-project-card {
  min-width: 0;
  margin: 0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,53,102, .1);
}

.tcr5-project-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: #333;
}

.tcr5-project-card > a:hover,
.tcr5-project-card > a:focus {
  color: #333;
}

.tcr5-project-card__image {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  background: #003566;
}

.tcr5-project-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.tcr5-project-card > a:hover .tcr5-project-card__image img,
.tcr5-project-card > a:focus .tcr5-project-card__image img {
  transform: scale(1.035);
}

.tcr5-project-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.75rem;
}

.tcr5-project-card__system {
  display: block;
  margin-bottom: .75rem;
  color: #0A4B78;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tcr5-project-card__content h3 {
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

.tcr5-project-card__content p {
  margin-bottom: 1.5rem;
}

.tcr5-project-card__action {
  display: block;
  margin-top: auto;
  color: #0A4B78;
}

.tcr5-case-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 4rem;
  align-items: start;
}

.tcr5-case-brief {
  max-width: 780px;
  font-size: 1.25rem;
}

.tcr5-case-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
  border-top: 1px solid #dbdbdb;
  border-left: 1px solid #dbdbdb;
}

.tcr5-case-facts div {
  padding: 1.25rem;
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}

.tcr5-case-facts span,
.tcr5-case-facts strong {
  display: block;
}

.tcr5-case-facts span {
  margin-bottom: .35rem;
  color: #0A4B78;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tcr5-case-hero__image {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #003566;
}

.tcr5-case-hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcr5-auto-section__content table,
.tcr5-reading-width table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.tcr5-auto-section__content th,
.tcr5-auto-section__content td,
.tcr5-reading-width th,
.tcr5-reading-width td {
  min-width: 150px;
  padding: 1rem;
  border: 1px solid #dbdbdb;
  text-align: left;
  vertical-align: top;
}

.tcr5-auto-section__content th,
.tcr5-reading-width th {
  color: #003566;
  background: #f2f2f2;
}

@media (min-width: 1280px) {
  .tcr5-jump-nav__inner,
  .tcr5-inner {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media (max-width: 1199px) {
  .tcr5-bucket-grid,
  .tcr5-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 1023px) {
  .tcr5-bucket-grid,
  .tcr5-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tcr5-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tcr5-process li,
  .tcr5-process li:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, .35);
    border-bottom: 1px solid rgba(255, 255, 255, .35);
  }

  .tcr5-process li:nth-child(2n) {
    border-right: 0;
  }

  .tcr5-process li:last-child {
    border-bottom: 0;
  }

  .tcr5-article-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tcr5-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tcr5-case-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .tcr5-jump-nav__inner {
    padding: 0;
  }

  .tcr5-jump-nav a {
    width: 50%;
    border-bottom: 1px solid #dbdbdb;
  }

  .tcr5-jump-nav a:first-child {
    border-left: 0;
  }

  .tcr5-section {
    padding: 3rem 0;
  }

  .tcr5-inner {
    padding: 0 2.5rem;
  }

  .tcr5-page h2 {
    font-size: 1.875rem;
  }

  .tcr5-intro,
  .tcr5-split,
  .tcr5-final-cta {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tcr5-intro__image {
    min-height: 280px;
  }

  .tcr5-review-grid,
  .tcr5-evidence-grid,
  .tcr5-resource-grid,
  .tcr5-auto-section--cards .tcr5-auto-section__content,
  .tcr5-qualification-grid,
  .tcr5-project-grid {
    grid-template-columns: 1fr;
  }

  .tcr5-case-facts {
    grid-template-columns: 1fr;
  }

  .tcr5-case-hero__image {
    min-height: 320px;
  }

  .tcr5-bucket__content {
    transform: none;
  }

  .tcr5-bucket__action {
    opacity: 1;
  }
}

@media (max-width: 520px) {
  .tcr5-bucket-grid,
  .tcr5-guide-grid,
  .tcr5-process ol {
    grid-template-columns: 1fr;
  }

  .tcr5-process li,
  .tcr5-process li:nth-child(2n),
  .tcr5-process li:nth-child(3n) {
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tcr5-bucket::before,
  .tcr5-bucket__content,
  .tcr5-bucket__action {
    transition: none;
  }

  .tcr5-project-card__image img {
    transition: none;
  }
}
