.dossier-head {
  margin-top: 5.5rem;
}

.dossier-archive-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.dossier-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20vh;
  background-color: var(--od-black);
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 24px;
  transition: all 0.2s ease 0s;
  padding: 0;
}

.dossier-header:hover {
  border-radius: 36px !important;
  padding: 10px;
}

@media (max-width: 768px){
  .dossier-header {
    margin-bottom: 1rem;
  }
}
.dossier-header-has-image {
  background-size: cover;
  background-position: center;
}

.dossier-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.dossier-header-info {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 5rem;
  text-align: left;
}

.dossier-badge {
    margin: 0 !important;
}

.dossier-header-name {
  margin: 0.3rem 0 0.3rem 0;
  line-height: 1;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color-on-picture);
}

.dossier-header-description {
  margin: 0 0;
  font-size: 1.1rem;
  color: var(--text-color-on-picture);
}


.post-card-tags {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .post-card-tags {
  margin-bottom: 1rem;
  }
}

.post-card-image-wrap-tags {
  width: 220px;
  aspect-ratio: 1.618 / 1 !important;
  position: relative;
  display: block;
  flex-shrink: 0;
}

.post-card-image-wrap-tags img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: all 0.2s ease;
}
.post-card-image-wrap-tags img:hover {
  border-radius: 12px;
}

.post-card-categories {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.post-card-content h2 {
    margin: 0;
}

.post-card-content h2 a{
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--text-color-comm);
  transition: color 0.2s ease 0s;
}

.post-card-content h2 a:hover {
  color: var(--color-accent);
}

.post-date {
  margin: 0;
  opacity: 0.7;
  font-size: 0.95rem;
  color: var(--text-color-dates)
}

/* MOBILE */
@media (max-width: 768px) {
  .dossier-archive-wrap {
    grid-template-columns: auto;
    gap: 10px;
  }
  .post-card-tags {
    flex-direction: column;
    gap: 10px;
  }
  .post-card-image-wrap-tags {
    width: 100%;
    height: 26vh;
  }
  .dossier-head, .dossier-archive-wrap {
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .dossier-card {
    margin-bottom: 10px;
  }
}

/* INTERVIEW LIJSTTREKKERS 2026 */
.lijsttrekkersgesprekken-header {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  background: var(--off-white);
  padding: 1rem;
  border-radius: 6px;
  transition: all 0.2s ease 0s;
}

.lijsttrekkersgesprekken-header:hover {
  border-radius: 12px;
  padding: 1.5rem;
}

.lijsttrekkersgesprekken-omschrijving {
  margin-top: 0;
  font-size: 1rem;
  color: var(--text-color-comm);
}

.interviews-list {
  margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.interview-item-image img{
  width: 100%;
  height: auto;
  border-radius: 6px;
  aspect-ratio: 1.618 / 1 !important;
  object-fit: cover;
  transition: all 0.2s ease 0s;
}

.interview-item-titel {
  margin: 0.5rem 0 0.5rem 0;
  font-size: 1.1rem;
  color: var(--text-color-comm);
  transition: all 0.2s ease 0s;
}

.interview-item-titel:hover {
  color: var(--color-accent);
}

.interview-item-date {
  margin: 0;
  opacity: 0.7;
  font-size: 1rem;
  color: var(--text-color-dates);
}

.interview-item-date:hover {
  color: var(--text-color-dates) !important;
}

/* Stack to 2 cols on tablet, 1 on mobile */
@media (max-width: 768px) {
    .interviews-list {
        grid-template-columns: repeat(1, 100%);
    }
}

.partijlijst-container {
  margin-top: 0.5rem;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.partijlijst-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.partij-card img {
  max-width: 100%;
  height: auto;
  max-height: 65px;
}

.pvv img{
  width: 200px !important;
  max-height: 300px !important;
  margin-top: -35px;
  margin-bottom: -30px;
}

@media (max-width: 768px) {
  .partijlijst-container {
    max-width: 100%;
  }
  .interview-item-image img{
    height: 26vh !important;
    width: 100% !important;
  }
}

.partij-card {
    transition: all 0.2s ease;
}

.partijlijst-container:hover .partij-card {
    filter: blur(3px);
    opacity: 0.6;
    transition: all 0.2s ease;
}

.partijlijst-container .partij-card:hover {
    filter: blur(0);
    opacity: 1;
    transition: all 0.2s ease;
}

.partij-card img:hover {
    border-radius: 0px !important;
}