body {
  background: var(--color-bg-000);
  font-family: "Inter Light";
}

.spotzi-link-green {
    margin-top: 20px;
}

.json-content__container p {
    color: var(--color-text-000);
    font-family: "Inter Light";
    margin-bottom: 1rem;
}

.json-content__container li {
    color: var(--color-text-000);
}

.json-content__container li::marker {
    color: var(--color-primary);
}

.json-content__breadcrumbs {
    max-width: 800px;
    margin: 1.5rem auto 1.5rem auto;
    padding-top: 50px;
}

.json-content__container {
    max-width: 800px;
    margin: 1.5rem auto 1.5rem auto;
}

.json-content__container h1, h2, h3, h4, h5, strong {
    color: var(--color-text-000);
    font-family: "Inter Bold";
}

.json-content__container h1 {
    font-size: 2.5rem;
}

.json-content__container h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.json-content__container h3 {
    font-size: 1.2rem;
}

.json-content__container h4 {
    font-size: 1rem;
}

.json-content__inner-content {
  display: grid;
  grid-template-columns: 6fr 2fr;
  width: 80vw;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

/* BEGIN MOBILE RESPONSIVENESS */
@media (max-width: 480px) {

.json-content__container {
    margin: 1.5rem;
}

.json-content__breadcrumbs {
    margin: 1.5rem;
}

.info-grid-report {
    grid-template-columns: repeat(1, 1fr);
}

}

@media (min-width: 480px) and (max-width: 800px) {

.json-content__container {
    margin: 1.5rem;
}

.info-grid-report {
    grid-template-columns: repeat(1, 1fr);
}

}

@media (min-width: 800px) {
.json-content__container {
    margin: 1.5rem auto 1.5rem auto;
}

.json-content__breadcrumbs {
    margin: 1.5rem auto 1.5rem auto;
}

.info-grid-report {
    grid-template-columns: repeat(2, 1fr);
}

}


.introduction_text {
    color: var(--color-text-000);
    font-family: "Inter Light";
    line-height: 2rem;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.audience-detections {
    color: var(--color-primary);
    font-family: "Inter Bold";
    font-size: 2rem;
}

.info-card-report-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* tekst naar onderkant */
  padding: 16px;
  color: white;
  overflow: hidden; /* voorkomt dat overlay buiten de kaart komt */
  border-radius: 10px;
}

/* Overlay */
.info-card-report-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* donkere transparante laag */
  z-index: 0;
}

/* Tekst boven overlay */
.info-text-image {
  position: relative;
  z-index: 1;
}


.info-card-report h3,
.info-card-report p {
  background: transparent; /* geen witte achtergrond */
}

.info-grid-report {
    display: grid;
    gap: 20px;
}

.info-grid-report-1-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

.info-card-report {
    background: var(--color-bg-100);
    padding: 20px;
    border-radius: 10px;
}

.info-card-report-title {
    min-height: 3rem;
    font-size: 1rem;
    font-family: "Inter Bold";
    text-transform: uppercase;
    color: var(--color-text-000);
}

.info-card-report table {
    width: 100%;
    padding: 10px;
    border-collapse: collapse;
    color: var(--color-text-000);
}

.info-card-report table td, .info-card-report table th {
    padding: 12px 0;
    font-family: "Inter Light";
    text-align: left;
    font-size:0.9rem;
}

.info-card-report table td:last-child, .info-card-report table th:last-child {
  text-align: right;
}

.info-card-report table tr:not(:last-child) {
    border-bottom: 1px solid white;
}

.info-card-report table th {
    font-size: 0.7em;
    color: var(--color-text-900);
    text-transform: uppercase;
    font-family: "Inter Bold";
}

.info-card-report p, .info-card-report ul {
    line-height: 1.5;
}

.emphasize-text {
    font-family: "Inter Bold";
}

.json-content__meta {
    border-bottom: 1px solid rgba(38, 38, 70, 0.1);
    padding-bottom: 8px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-transform: uppercase;
}

.json-content__meta-item {
    color: var(--color-text-000);
    font-size: .8rem;
    margin-right: 8px;
    padding-top: 2px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .9;
    margin-bottom: 16px;
}

.json-content__meta-icon {
    height: 20px;
    width: 20px;
    margin-right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.json-content__meta-icon svg {
    fill: var(--color-primary); 
}

.json-content__container q {
    margin: 3rem 0 3rem 0;
    padding-left: 1rem;
    line-height: 1.3;
    font-size: 1.6rem;
    border-left: 1px solid #ddd;
    display: block;
    font-family: "Zinnebeeld", Arial, Verdana, sans-serif;
    font-style: italic;
    color: var(--color-primary);
}

.json-block-image__container {
    margin-bottom: 2rem;
}
