:root {
  /* Updated by training.js to the bar's real height. */
  --tr-bar-height: 53px;
  --tr-bar-max-width: 1600px;
}

/*
==========================================
Trainingspagina (page-training-detail.php)
==========================================
Design: Redesign trainingspagina, frame 28:3121.
Colours follow the existing theme tokens (#F5FA00 yellow, #E9F6FF blue).
Switch --tr-font to 'Barlow' once that webfont is loaded site-wide.
*/

.tr-page,
.tr-hero,
.tr-bar,
.tr-tabs {
  --tr-font: "Montserrat", sans-serif;
  --tr-yellow: #F5FA00;
  --tr-yellow-deep: #D9C800;
  --tr-ink: #111111;
  --tr-grey: #666666;
  --tr-blue: #E9F6FF;
  --tr-line: #E3E6EA;
}

/*
==========================================
Hero
==========================================
*/
.tr-hero {
  position: relative;
  background-color: var(--tr-ink);
  background-size: cover;
  background-position: center;
  font-family: var(--tr-font);
}

.tr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0.2) 100%);
}

.tr-hero__inner {
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  max-width: var(--tr-bar-max-width);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

.tr-hero__left {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tr-hero__right {
  display: flex;
  align-items: flex-end;
  flex: 0 0 auto;
}

.tr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  margin: 0 0 1.4rem !important;
  padding: 0.25rem 0.85rem;
  border-radius: 30px;
  background: var(--tr-yellow);
  color: var(--tr-ink);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.tr-hero__title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.tr-hero__title {
  margin: 0;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.tr-hero__seal {
  flex: 0 0 auto;
  width: 127px;
  height: 106px;
  object-fit: contain;
}

.tr-hero__summary {
  max-width: 480px;
  margin-top: 1.4rem;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.tr-hero__summary p:last-child {
  margin-bottom: 0;
}

.tr-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Quick facts strip */
.tr-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.9rem;
  margin: auto 0 0;
  padding: 1.3rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.tr-facts__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 1.3rem 0.375rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.tr-facts__item:last-child {
  border-right: 0;
}

.tr-facts__icon {
  color: var(--tr-yellow);
  font-size: 1.25rem;
  line-height: 1;
}

.tr-facts__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.tr-facts__label {
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1em
}

.tr-facts__value {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

.tr-facts__value small {
  font-size: 0.6875rem;
  font-weight: 400;
}

/*
==========================================
Hero card
==========================================
*/
.tr-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 300px;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.tr-card__tag {
  margin: 0;
  color: var(--tr-grey);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tr-card__title {
  margin: 0;
  color: var(--tr-ink);
  font-size: 1.125rem;
  font-weight: 800;
}

.tr-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tr-checklist li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: var(--tr-ink);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.tr-checklist__check {
  flex: 0 0 auto;
  color: var(--tr-yellow-deep);
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.45;
}

.tr-review {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  background: rgba(245, 225, 0, 0.12);
}

.tr-review__stars {
  --fa-width: 1em;
  display: inline-flex;
  gap: 0.1rem;
  color: var(--tr-yellow-deep);
  font-size: 0.9375rem;
}

.tr-review__body {
  display: flex;
  flex-direction: column;
}

.tr-review__sub {
  color: var(--tr-grey);
  font-size: 0.6875rem;
}

.tr-review__score {
  color: var(--tr-ink);
  font-size: 0.75rem;
  font-weight: 600;
}

/*
==========================================
Buttons
==========================================
*/
.tr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-family: var(--tr-font);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.tr-btn:hover,
.tr-btn:focus {
  text-decoration: none;
  transform: translateY(-2px);
}

.tr-btn--primary {
  background: var(--tr-yellow);
  color: var(--tr-ink);
}

.tr-btn--primary:hover,
.tr-btn--primary:focus {
  color: var(--tr-ink);
}

.tr-btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}

.tr-btn--outline:hover,
.tr-btn--outline:focus {
  border-color: #fff;
  color: #fff;
}

.tr-btn--block {
  display: flex;
  width: 100%;
}

/* Outline buttons inside the light sidebar need dark text. */
.tr-sidebar .tr-btn--outline {
  border-color: var(--tr-ink);
  
  color: var(--tr-ink);
}

.tr-sidebar .tr-btn--outline:hover,
.tr-sidebar .tr-btn--outline:focus {
  background: var(--tr-ink);
  color: #fff;
}

/*
==========================================
Sticky USP bar
==========================================
*/
.tr-bar {

  z-index: 1030;
  border-bottom: 3px solid var(--tr-yellow);
  background: var(--tr-blue);
  font-family: var(--tr-font);
  transition: transform 0.25s ease-in-out;
}

.tr-bar.is-visible {}

.tr-bar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0.625rem 2rem;
}

.tr-bar__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--tr-ink);
  font-size: 0.8125rem;
  line-height: 1.25;
  white-space: nowrap;
}

.tr-bar__title span {
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tr-bar__usps {
  display: flex;
  flex: 1 1 auto;
  gap: 1.75rem;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tr-bar__usps li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--tr-ink);
  font-size: 0.8125rem;
  white-space: nowrap;
}

.tr-bar__usps i {
  color: var(--tr-yellow-deep);
}

/*
==========================================
Tab navigation
==========================================
*/
.tr-tabs {
  position: sticky;
  top: 0;
  z-index: 1020;
  border-bottom: 1px solid var(--tr-line);
  background: #fff;
  font-family: var(--tr-font);
  transition: top 0.25s ease-in-out;
}

body.tr-bar-visible .tr-tabs {
  /*top: var(--tr-bar-height);*/
}

.tr-tabs__inner {
  margin: 0 auto;
  padding: 0 2rem;
}

.tr-tabs__list {
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.tr-tabs__list::-webkit-scrollbar {
  display: none;
}

.tr-tabs__link {
  display: block;
  padding: 0.875rem 0;
  border-bottom: 3px solid transparent;
  color: var(--tr-grey);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.tr-tabs__link:hover,
.tr-tabs__link:focus,
.tr-tabs__link.is-active {
  color: var(--tr-ink);
  text-decoration: none;
}

.tr-tabs__link.is-active {
  border-bottom-color: var(--tr-yellow);
  font-weight: 700;
}

/*
==========================================
Layout
==========================================
*/
.tr-page {
  padding: 2.5rem 0 4rem;
  font-family: var(--tr-font);
}

.tr-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.5rem;
  align-items: start;
}

.tr-main {
  min-width: 0;
}

/* Offset anchor targets so sticky chrome never covers a heading. */
.tr-main [id] {
  scroll-margin-top: 7rem;
}

/*
==========================================
Content blocks
==========================================
*/
.tr-section,
.tr-cards-block {
  margin-bottom: 2.5rem;
}

.tr-section.bg-blue,
.tr-section.bg-real-white {
  padding: 1.75rem;
  border-radius: 8px;
}

.tr-eyebrow {
  margin: 0 0 0.35rem;
  color: var(--tr-yellow-deep);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tr-section__title {
  margin: 0 0 1rem;
  color: var(--tr-ink);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.tr-prose {
  color: var(--tr-ink);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.tr-prose .alignright{
  float: right;
}

.tr-prose> :last-child {
  margin-bottom: 0;
}

.tr-prose ul {
  padding-left: 1.1rem;
}

.tr-prose li {
  margin-bottom: 0.35rem;
}

.tr-figure {
  margin: 0 0 2.5rem;
}

.tr-figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.tr-figure figcaption {
  margin-top: 0.5rem;
  color: var(--tr-grey);
  font-size: 0.8125rem;
}

/* Checklist cards */
.tr-cards {
  display: grid;
  grid-template-columns: repeat(var(--tr-cards, 4), minmax(0, 1fr));
  gap: 0.75rem;
}

.tr-card-col {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--tr-line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.tr-card-col__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--tr-line);
  background: #FAFBFC;
}

.tr-card-col__head i {
  color: var(--tr-yellow-deep);
  margin-bottom: auto;
}

.tr-card-col__heading {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.1rem;
}

.tr-card-col__head h3 {
  margin: 0;
  color: var(--tr-ink);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
}

.tr-card-col__sub {
  color: var(--tr-grey);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.35;
}

.tr-card-col .tr-checklist {
  gap: 0;
  padding: 0.25rem 0.75rem;
}

.tr-checklist--divided li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--tr-line);
}

.tr-checklist--divided li:last-child {
  border-bottom: 0;
}

.tr-card-col--advice {
  border-color: var(--tr-yellow);
  background: #fff;
  /*text-align: center;*/
}

.tr-card-col--advice .tr-card-col__head {
  justify-content: flex-start;
  border-bottom: 0;
  background: var(--tr-yellow);
}

.tr-card-col--advice .tr-card-col__head i {
  color: var(--tr-ink);
}

.tr-card-col__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.9rem 0.75rem 1rem;
}

.tr-card-col__text {
  color: var(--tr-ink);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.tr-card-col--advice .tr-card-col__text b {
  color: var(--tr-yellow-deep);
}

.tr-card-col__text p:last-child {
  margin-bottom: 0;
}

.tr-card-col__photo {
  width: 72px;
  height: 72px;
  margin-top: 0.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.tr-card-col__name {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
}

.tr-card-col__role {
  margin: 0 0 0.5rem;
  color: var(--tr-grey);
  font-size: 0.75rem;
}

.tr-card-col--advice .tr-btn {
  margin-top: auto;
}

/* CTA bar */
.tr-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  background: var(--tr-blue);
}

.tr-cta__icon {
  color: var(--tr-yellow-deep);
  font-size: 1.5rem;
}

.tr-cta__body {
  flex: 1 1 auto;
}

.tr-cta__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.tr-cta__text {
  font-size: 0.875rem;
}

.tr-cta__text p:last-child {
  margin-bottom: 0;
}

/*
==========================================
Sidebar
==========================================
*/
.tr-sidebar__sticky {
  position: sticky;
  top: 6rem;
}

.tr-panel {
  padding: 2rem;
  border-radius: 8px;
  background: var(--tr-blue);
}

.tr-panel__title {
  margin: 0 0 1rem;
  color: var(--tr-ink);
  font-size: 1.375rem;
  font-weight: 800;
}

.tr-agenda {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.tr-agenda__item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  line-height: 1em;
}

.tr-agenda__item:first-child {
  padding-top: 0;
}

.tr-agenda__item:last-child {
  border-bottom: 0;
}

.tr-agenda__date {
  display: flex;
  flex: 0 0 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  padding: 0.25rem 0;
  border-radius: 4px;
  background: var(--tr-yellow);
  color: var(--tr-ink);
}

.tr-agenda__month {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.tr-agenda__day {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.15;
}

.tr-agenda__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tr-agenda__title {
  color: var(--tr-ink);
  font-size: 0.8125rem;
  font-weight: 700;
}

.tr-agenda__title a {
  color: inherit;
  text-decoration: none;
}

.tr-agenda__title a:hover {
  text-decoration: underline;
}

.tr-agenda__location {
  color: var(--tr-grey);
  font-size: 0.75rem;
}

.tr-agenda__empty {
  margin-bottom: 1.5rem;
  color: var(--tr-grey);
  font-size: 0.8125rem;
}

.tr-sidebar__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.tr-advisor {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.tr-advisor__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tr-advisor__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.tr-advisor__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tr-advisor__meta strong {
  color: var(--tr-ink);
  font-size: 0.875rem;
}

.tr-advisor__meta span {
  color: var(--tr-grey);
  font-size: 0.75rem;
}

/*
==========================================
Responsive
==========================================
*/
@media (max-width: 1199.98px) {
  .tr-hero__title {
    font-size: 2.75rem;
  }

  .tr-bar__usps li:nth-child(n + 3) {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .tr-hero__inner {
    flex-direction: column;
    padding: 2.5rem 1.25rem;
  }

  .tr-hero__right {
    align-items: stretch;
  }

  .tr-card {
    width: 100%;
  }

  .tr-facts {
    margin-top: 2rem;
  }

  .tr-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .tr-sidebar__sticky {
    position: static;
  }

  .tr-bar__usps {
    display: none;
  }

  .tr-tabs__inner {
    padding: 0 1.25rem;
  }

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

@media (max-width: 575.98px) {
  .tr-hero__title {
    font-size: 2rem;
  }

  .tr-hero__title-row {
    flex-direction: column;
  }

  .tr-hero__seal {
    width: 84px;
    height: 70px;
  }

  .tr-facts__item {
    flex: 1 1 45%;
    border-right: 0;
  }

  .tr-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .tr-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*
==========================================
Legacy page-builder content
==========================================
Shown when a page still uses the old `page_builder` blocks. Those were built
full-bleed, so they are normalised to sit inside the narrow content column.
*/
.tr-legacy .container,
.tr-legacy .container-fluid,
.tr-legacy .container-lg {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: 0;
  padding-left: 0;
}

/* Background blocks read as panels rather than full-width stripes. */
.tr-legacy .container-fluid.bg-blue,
.tr-legacy .container-fluid.bg-yellow,
.tr-legacy .container-fluid.bg-white,
.tr-legacy .container-fluid.bg-real-white,
.tr-legacy .container-fluid[class*="bg-gradient"],
.tr-legacy .container-fluid[class*="bg-top"],
.tr-legacy .container-fluid[class*="bg-bottom"] {
  margin-bottom: 1.25rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  border-radius: 8px;
}

/* The decorative grids and mosaics are sized for a full-width canvas. */
.tr-legacy .header-background-graphic,
.tr-legacy .grid-bottom,
.tr-legacy [class*="cta-text-grid"]::before,
.tr-legacy [class*="cta-text-grid"]::after {
  display: none;
}

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

.tr-legacy .row {
  --bs-gutter-x: 1.5rem;
}

/* Keep the legacy type scale in step with the new blocks. */
.tr-legacy h2 {
  font-size: 1.75rem;
  line-height: 1.2;
}

.tr-legacy h3 {
  font-size: 1.375rem;
  line-height: 1.25;
}

.tr-legacy h4,
.tr-legacy h5 {
  font-size: 1.0625rem;
  line-height: 1.35;
}

.tr-legacy p,
.tr-legacy li {
  font-size: 0.9375rem;
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  .tr-legacy .container-fluid[class*="bg-"] {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

/*
==========================================
Embeds inside the narrow column
==========================================
Legacy content carries fixed-width iframes (YouTube, maps) sized for a
full-width canvas; scale them to the column instead of overflowing it.
*/
.tr-prose iframe,
.tr-legacy iframe {
  display: block;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 8px;
}

.tr-prose iframe[height],
.tr-legacy iframe[height] {
  height: auto;
}

.tr-prose img,
.tr-prose video {
  max-width: 100%;
  height: auto;
}

.tr-prose table {
  width: 100%;
  border-collapse: collapse;
}

/* Wide legacy tables scroll rather than push the page sideways. */
.tr-legacy .table-responsive,
.tr-prose .table-responsive {
  overflow-x: auto;
}


h2 {
  font-size: 1.8rem;
  line-height: 2.5rem;
}


aside.tr-sidebar {
  position: sticky;
  top: 77px
}

/*
==========================================
Text with image
==========================================
Image left or right on desktop, stacked above the text on mobile.
*/
.tr-media {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.tr-media.bg-blue,
.tr-media.bg-real-white {
  padding: 1.75rem;
  border-radius: 8px;
}

.tr-media__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Forced aspect ratio: fill the box and crop from the centre. */
.tr-media__figure--crop img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tr-media__figure--4-3 {
  aspect-ratio: 4 / 3;
}

.tr-media__figure--3-2 {
  aspect-ratio: 3 / 2;
}

.tr-media__figure--16-9 {
  aspect-ratio: 16 / 9;
}

.tr-media__figure--1-1 {
  aspect-ratio: 1 / 1;
}

.tr-media__body> :last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .tr-media--half {
    grid-template-columns: 1fr 1fr;
  }

  .tr-media--smal {
    grid-template-columns: 1fr 2fr;
  }

  .tr-media--breed {
    grid-template-columns: 2fr 1fr;
  }

  /* Source order is image-then-text; swap the columns for "image right". */
  .tr-media--right .tr-media__figure {
    order: 2;
  }

  .tr-media--right.tr-media--smal {
    grid-template-columns: 2fr 1fr;
  }

  .tr-media--right.tr-media--breed {
    grid-template-columns: 1fr 2fr;
  }
}

/*
==========================================
Yellow line animation
==========================================
*/
.tr-line {
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.tr-line.bg-blue,
.tr-line.bg-real-white {
  padding: 1.5rem;
  border-radius: 8px;
}

.tr-line svg {
  display: block;
  width: 100%;
  height: auto;
}

.tr-line .animate-path {
  stroke: #F5FA00;
  stroke-width: 4;
  stroke-linecap: round;
  fill: transparent;
  transition: stroke-dashoffset 2s ease-in-out;
}

.tr-line .animate-path.animate {
  stroke-dashoffset: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  .tr-line .animate-path {
    transition: none;
  }
}

/* Inline links in the yellow advice card follow the design's accent. */
.tr-card-col--advice .tr-card-col__text a {
  color: #C7B400;
  font-weight: 700;
  text-decoration: none;
}

.tr-card-col--advice .tr-card-col__text a:hover,
.tr-card-col--advice .tr-card-col__text a:focus {
  text-decoration: underline;
}

/*
==========================================
Text with cards ("Jouw volgende stappen")
==========================================
Intro column on the left, cards on the right; stacked on smaller screens.
*/
.tr-steps {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.tr-steps.bg-blue,
.tr-steps.bg-real-white {
  padding: 1.75rem;
  border-radius: 8px;
}

.tr-steps__intro> :last-child {
  margin-bottom: 0;
}

.tr-steps__cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(var(--tr-steps, 2), minmax(0, 1fr));
}

.tr-step {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--tr-line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.tr-step__media {
  position: relative;
  aspect-ratio: 4 / 3;
}

.tr-step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tr-step__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--tr-yellow);
  color: var(--tr-ink);
  font-size: 0.95rem;
}

.tr-step__badge--image {
  overflow: hidden;
  padding: 0.2rem;
  background: var(--tr-yellow);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.tr-step__badge--image img {
  --size: calc(100% - 4px);
  width: var(--size);
  height: var(--size);
  object-fit: contain;
}

.tr-step__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
}

.tr-step__title {
  margin: 0;
  color: var(--tr-ink);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
}

.tr-step__accent {
  color: var(--tr-yellow-deep);
}

.tr-step__text {
  color: var(--tr-ink);
  font-size: 0.875rem;
  line-height: 1.5;
}

.tr-step__text p:last-child {
  margin-bottom: 0;
}

/* The button sits flush at the bottom whatever the text length. */
.tr-step__body .tr-btn {
  margin-top: auto;
}

.tr-btn--arrow::after {
  content: "\f30b";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5rem;
}

@media (min-width: 992px) {
  .tr-steps {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .tr-steps__cards {
    grid-template-columns: minmax(0, 1fr);
  }
}


/*
==========================================
Reviews: Google (plugin) and participant quotes
==========================================
The Google cards are rendered by the g-business-reviews-rating plugin, so the
rules below restyle its markup. They are scoped through two theme classes to
outrank the plugin's own stylesheet whatever order the two are loaded in.
*/
.tr-greviews,
.tr-quotes {
  margin-bottom: 2.5rem;
  font-family: var(--tr-font);
}

.tr-greviews.bg-blue,
.tr-greviews.bg-real-white,
.tr-quotes.bg-blue,
.tr-quotes.bg-real-white {
  padding: 1.75rem;
  border-radius: 8px;
}

/* Summary bar */
.tr-greviews__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.5rem;
  margin-bottom: 1.25rem;
  padding: 1.1rem 1.5rem;
  border-radius: 4px;
  background: var(--tr-blue);
}

.tr-greviews.bg-blue .tr-greviews__bar {
  background: #fff;
}

.tr-greviews__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}

.tr-greviews__number {
  color: var(--tr-ink);
  font-size: 1.5rem;
  font-weight: 800;
}

.tr-greviews__scale {
  color: var(--tr-grey);
  font-size: 0.75rem;
}

.tr-greviews__count {
  max-width: 14ch;
  margin: 0;
  color: var(--tr-ink);
  font-size: 0.8125rem;
  line-height: 1.35;
}

.tr-greviews__rating {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(17, 17, 17, 0.12);
}

.tr-greviews__caption {
  color: var(--tr-ink);
  font-size: 0.8125rem;
}

.tr-greviews__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
  color: var(--tr-ink);
  font-size: 0.8125rem;
}

/* Stars, also used anywhere else a rating is shown. Font Awesome is loaded
   site-wide, so the glyphs match the icons elsewhere on the page. */
.tr-stars {
  /* Font Awesome reserves 1.25em per icon; stars sit tighter in the design. */
  --fa-width: 1em;
  display: inline-flex;
  gap: 0.1rem;
  color: rgba(17, 17, 17, 0.22);
  font-size: 0.95rem;
}

.tr-stars__star.is-full,
.tr-stars__star.is-half {
  color: var(--tr-yellow-deep);
}

/* Plugin cards */
.tr-greviews .tr-greviews__list .gmbrr .listing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tr-greviews .tr-greviews__list .gmbrr.columns .listing > li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  overflow: hidden;
  flex: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--tr-line);
  border-radius: 4px;
  background: #fff;
  gap: 0;
}

/* The opening quote from the design. */
.tr-greviews .tr-greviews__list .gmbrr.columns .listing > li::before {
  content: "";
  grid-column: 1 / -1;
  padding: 1rem 1rem 0;
  color: var(--tr-yellow-deep);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 0.55;
  margin-top: 15px;
}

/* First span is the star row, last span holds the name: see the
   review_item_order in the block template. */
.tr-greviews .tr-greviews__list .gmbrr.columns .listing > li > .review-meta:first-of-type {
  grid-column: 1 / -1;
  padding: 0rem 1rem 0;
}

/* The plugin prints literal ★ characters. Hide those and draw the same number
   of Font Awesome stars from the rating-N class the plugin puts on the item,
   so every star on the page comes from one icon set. */
.tr-greviews .tr-greviews__list .gmbrr.columns .listing .rating {
  font-size: 0;
}

.tr-greviews .tr-greviews__list .gmbrr.columns .listing .rating::before {
  color: var(--tr-yellow-deep);
  font-family: "Font Awesome 7 Pro";
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tr-greviews .tr-greviews__list .gmbrr.columns .listing > li.rating-1 .rating::before {
  content: "\f005";
}

.tr-greviews .tr-greviews__list .gmbrr.columns .listing > li.rating-2 .rating::before {
  content: "\f005\f005";
}

.tr-greviews .tr-greviews__list .gmbrr.columns .listing > li.rating-3 .rating::before {
  content: "\f005\f005\f005";
}

.tr-greviews .tr-greviews__list .gmbrr.columns .listing > li.rating-4 .rating::before {
  content: "\f005\f005\f005\f005";
}

.tr-greviews .tr-greviews__list .gmbrr.columns .listing > li.rating-5 .rating::before {
  content: "\f005\f005\f005\f005\f005";
}

.tr-greviews .tr-greviews__list .gmbrr.columns .listing .text {
  grid-column: 1 / -1;
  padding: 0.65rem 1rem 1.1rem;
  color: var(--tr-ink);
  font-size: 0.875rem;
  line-height: 1.5;
}

.tr-greviews .tr-greviews__list .gmbrr .review-more-placeholder {
  color: var(--tr-yellow-deep);
  font-weight: 700;
  cursor: pointer;
}

/* Footer band: avatar in the first column, name in the second. */
.tr-greviews .tr-greviews__list .gmbrr.columns .listing .author-avatar,
.tr-greviews .tr-greviews__list .gmbrr.columns .listing > li > .review-meta:last-of-type {
  display: flex;
  align-items: center;
  margin: 0;
  border-top: 1px solid var(--tr-line);
  background: var(--tr-blue);
}

.tr-greviews .tr-greviews__list .gmbrr.columns .listing .author-avatar {
  grid-column: 1;
  padding: 0.7rem 0.6rem 0.7rem 1rem;
}

.tr-greviews .tr-greviews__list .gmbrr.columns .listing .author-avatar img {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
}

.tr-greviews .tr-greviews__list .gmbrr.columns .listing > li > .review-meta:last-of-type {
  grid-column: 2;
  padding: 0.7rem 1rem 0.7rem 0;
}

.tr-greviews .tr-greviews__list .gmbrr .author-name,
.tr-greviews .tr-greviews__list .gmbrr .author-name a {
  color: var(--tr-ink);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
}

/* Participant quotes */
.tr-quotes__grid {
  display: grid;
  grid-template-columns: repeat(var(--tr-quote-cols, 2), minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
}

.tr-quote {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0;
}

.tr-quote__text {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--tr-ink);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.tr-quote__text::before {
  content: "\201C";
  display: block;
  margin-bottom: 0.3rem;
  color: var(--tr-yellow-deep);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 0.55;
}

.tr-quote__text p:last-child {
  margin-bottom: 0;
}

.tr-quote__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.tr-quote__photo {
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
}

.tr-quote__photo--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tr-yellow);
  color: var(--tr-ink);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tr-quote__who {
  display: flex;
  flex-direction: column;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.tr-quote__name {
  color: var(--tr-ink);
  font-weight: 700;
}

.tr-quote__role {
  color: var(--tr-ink);
}

@media (max-width: 767.98px) {
  .tr-quotes__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tr-greviews__bar {
    padding: 1rem;
  }

  .tr-greviews__rating {
    padding-left: 0;
    border-left: 0;
  }

  .tr-greviews__brand {
    margin-left: 0;
  }
}


/*
==========================================
FAQ / accordion
==========================================
Native <details>, so it opens without JavaScript. The height transition only
runs in browsers that can animate ::details-content; elsewhere the answer
simply appears.
*/
.tr-faq {
  margin-bottom: 2.5rem;
  font-family: var(--tr-font);
}

.tr-faq.bg-blue,
.tr-faq.bg-real-white {
  padding: 1.75rem;
  border-radius: 8px;
}

.tr-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tr-faq__item {
  border: 1px solid var(--tr-line);
  border-radius: 6px;
  background: #fff;
}

.tr-faq__item[open] {
  border-color: var(--tr-yellow-deep);
}

.tr-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: var(--tr-ink);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

/* Safari draws its own triangle without this. */
.tr-faq__question::-webkit-details-marker {
  display: none;
}

.tr-faq__question:hover {
  color: var(--tr-yellow-deep);
}

.tr-faq__question:focus-visible {
  outline: 2px solid var(--tr-yellow-deep);
  outline-offset: -2px;
}

.tr-faq__chevron {
  --fa-width: 1em;
  flex: 0 0 auto;
  color: var(--tr-yellow-deep);
  font-size: 0.8125rem;
  transition: transform 0.2s ease;
}

.tr-faq__item[open] .tr-faq__chevron {
  transform: rotate(180deg);
}

.tr-faq__answer {
  padding: 0 1rem 1rem;
}

.tr-faq__answer .tr-prose {
  font-size: 0.875rem;
}

.tr-faq__answer .tr-prose > :last-child {
  margin-bottom: 0;
}

@supports (interpolate-size: allow-keywords) {
  .tr-faq__list {
    interpolate-size: allow-keywords;
  }

  .tr-faq__item::details-content {
    block-size: 0;
    overflow: hidden;
    transition: block-size 0.25s ease, content-visibility 0.25s allow-discrete;
  }

  .tr-faq__item[open]::details-content {
    block-size: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tr-faq__chevron,
  .tr-faq__item::details-content {
    transition: none;
  }
}


/*
==========================================
Icon + text columns
==========================================
Each item is its own small grid: the icon sits left of the heading, and the
paragraph lines up under the heading rather than under the icon.
*/
.tr-info {
  margin-bottom: 2.5rem;
  font-family: var(--tr-font);
}

.tr-info.bg-blue,
.tr-info.bg-real-white {
  padding: 1.75rem;
  border-radius: 8px;
}

.tr-info__grid {
  display: grid;
  grid-template-columns: repeat(var(--tr-info-cols, 2), minmax(0, 1fr));
  gap: 2rem 2.5rem;
}

.tr-info__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.4rem 0.75rem;
}

.tr-info__icon {
  --fa-width: 1em;
  grid-column: 1;
  color: var(--tr-ink);
  font-size: 1.25rem;
}

.tr-info__title {
  grid-column: 2;
  margin: 0;
  color: var(--tr-ink);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.25;
}

/* The text keeps the heading's indent, also when there is no icon. */
.tr-info__text {
  grid-column: 2;
  font-size: 0.9375rem;
}

.tr-info__text > :last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .tr-info__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
}

/*
li {
  line-height: 1.2em
}
  */

ul.resultaat li b,
ul.resultaat li strong {
  display: block
}

/* Fontawesome icons in the results list */
ul.resultaat li {
  padding-left: 1rem;
}

ul.resultaat li::marker {
  content: "\f00c";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
}

ul.resultaat li::marker,
ul.resultaat li b,
ul.resultaat li strong {
  color: var(--tr-yellow-deep);
}


#google-business-reviews-rating .author-avatar a{
  display: flex
}

#google-business-reviews-rating .author-avatar a img{
  margin: auto
}


#google-business-reviews-rating a.review-more-link{
  color: var(--tr-yellow-deep);
  text-decoration: none;
  font-weight: bold
}


.container{
	max-width: var(--tr-bar-max-width);
	  padding-left: 2rem ;
	padding-right: 2rem ;
}