.tooltiptext{display: none !important}

/* =========================================================
	Reizen + Blog cards — consolidated stylesheet
	Alle wijzigingen uit de vorige stappen samengevoegd.
	========================================================= */

/* ---------- Grid ---------- */
.rcard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
  gap: 30px;
  align-items: stretch;          /* cards strekken naar hoogste in de rij */
}

@media (max-width: 600px) {
  .rcard-grid { gap: 20px; }     /* alleen nog de gap-aanpassing op smal scherm */
}

/* ---------- Card ---------- */
.rcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;                  /* vul de grid-cel → gelijke hoogte per rij */
  min-width: 0;                  /* sta toe dat de inhoud krimpt i.p.v. uitrekt */
  max-width: 400px;
}

/* ---------- Media ---------- */
.rcard__media {
  position: relative;
  aspect-ratio: 3 / 2;
  flex: 0 0 auto;
}
.rcard__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.rcard__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  font-family: "Playfair Display"
}
.rcard__badge--status,
.rcard__badge--blog {
  background: #fff;
  color: #2a2a2a;
}
.rcard__badge--maatwerk {
  background: #1c1c1c;
  color: #fff;
}

.rcard__icons {
  position: absolute;
  top: 14px;
  right: 16px;
  display: flex;
  gap: 8px;

}

.tooltip {
  margin-left:4px;
}
.rcard__icons :is(a, span, img, svg, i) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  color: #9c7649;
  font-size: 15px;
}
.rcard__icons svg {
  width: 25px;
  height: 25px;
  margin-top: 5px;
  fill: #9c7649;
}

/* Verberg eventuele tekstlabels binnen de icon-output, behoud icon-glyphs */
.rcard__icons a { font-size: 0; }
.rcard__icons a :is(i, svg, img) { font-size: 15px; }

/* ---------- Body ---------- */
.rcard__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;                /* groeit → vertrek-blok + footer zakken naar onder */
  padding: 20px 22px 24px;
  min-width: 0;                  /* KRITIEK: laat geneste scrollers krimpen */
  font-family: 'Nunito';
  font-size: 13px;
  line-height: 21px;
}

.rcard__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.rcard__tag {
  padding: .5em 1em;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.1;
}
.rcard__tag--dark {
  background: rgb(91, 91, 91);
  color: #fff;
}
.rcard__tag--light {
  background: #fff;
  color: #9c7649;
  border: 1px solid #c9ad88;
}

.rcard__title {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.rcard__title a {
  color: #1f1f1f;
  text-decoration: none;
}
.rcard__title a:hover { text-decoration: underline; }

.rcard__excerpt {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* ---------- Vertrek / datums ---------- */
.rcard__departure {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: auto;              /* duwt vertrek-blok + footer naar onderen */
  margin-bottom: 8px;
  min-width: 0;
  padding-top: 1.2em;
}

.rcard__departure-label {
  flex: 1 1 auto;                /* vult de ruimte naast de dates-wrap */
  min-width: 0;
  font-size: 13px;
  color: #3a3a3a;
}
.rcard__departure-label em {
  display: block;
  font-style: italic;
  color: #6a6a6a;
  font-size: 14px;
  margin-top: 2px;
}

.rcard__dates-wrap {
  flex: 0 0 auto;                /* content-sized → wrap is precies breed genoeg
												voor 3 blokjes + pijl-knoppen, niet beperkt
												tot 50% van de departure-rij */
  min-width: 0;
  display: flex;
  align-items: flex-end;         /* datums kleven onderaan deze cel */

}

.rcard__dates-viewport.has-scroll {
  margin-right: -24px;
}

/* Viewport: vaste begrenzing + ruimte voor de pijlen.
	Dit is de laag die de breedte beperkt zodat .rcard__dates kan scrollen. */
/* Breedte van precies 3 datum-blokjes (3 × 58px + 2 × 10px gap = 194px).
	Aanpassen aan deze plek als de blok-breedte of gap verandert. */
:root {
  --rcard-dates-visible: calc(3 * 45px + 2 * 10px);
}

.rcard__dates-viewport {
  position: relative;
  min-width: 0;                  /* KRITIEK */
  display: flex;                 /* bevat de scroller → viewport krijgt hoogte,
												pijl-knoppen kunnen zich nu correct spannen */
  align-items: flex-end;
  margin-left: auto;             /* schuift de viewport naar rechts in de wrap
												(verving het oude float:right-gedrag) */
}
.rcard__dates-viewport.has-scroll {
  padding: 0 26px;               /* ruimte voor de pijl-knoppen */
}

/* De scroller zelf. Vaste max-breedte = 3 blokjes; bij meer blokjes overflow
	→ overflow-x:auto in .is-scroll levert de scroll + de JS de pijltjes. */
.rcard__dates {
  display: flex;
  gap: 10px;
  min-width: 0;
  max-width: var(--rcard-dates-visible);
  padding-bottom: 6px;          /* altijd gereserveerd → gelijke uitlijning
											  tussen wel/niet-scrollende kaarten */
}
.rcard__dates.is-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.rcard__dates.is-scroll::-webkit-scrollbar { height: 6px; }
.rcard__dates.is-scroll::-webkit-scrollbar-thumb {
  background: #c9ad88;
  border-radius: 3px;
}

.rcard__date {
  flex: 0 0 auto;                /* blokjes krimpen niet → forceren overflow */
  width: 45px;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
  background: #ededed;
  font-weight: 600;
}
.rcard__date-day {
  display: block;
  padding: 0;
  color: #2a2a2a;
}
.rcard__date-month {
  display: block;
  padding: 0;
  background: #9c7649;
  color: #fff;
  font-weight: 600;
}
.rcard__date-year {
  display: block;
  padding: 0;
  color: #2a2a2a;
}

/* ---------- Datum-navigatie pijltjes ---------- */
.rcard__date-nav {
  position: absolute;
  top: 0;
  bottom: 6px;                   /* lijnt uit met blokjes (scroll-padding) */
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  color: #9c7649;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: opacity .15s ease, color .15s ease;
}
.rcard__date-nav:hover { color: #855f37; }
.rcard__date-nav[hidden] { display: none; }

.rcard__date-nav--prev {
  left: 0;
  background: linear-gradient(90deg, #fff 38%, rgba(255,255,255,0));
}
.rcard__date-nav--next {
  right: 0;
  background: linear-gradient(270deg, #fff 38%, rgba(255,255,255,0));
}

/* ---------- Footer ---------- */
.rcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(164, 122, 75,.28)
  /* GEEN margin-top:auto — rcard__departure pakt de vrije ruimte al.
	  Twee auto-margins in dezelfde flex-kolom werkt niet. */
}
.rcard__footer--blog {
  justify-content: flex-end;
  margin-top: auto;              /* blogkaart heeft geen vertrek-blok → footer ankert hier */
}

.rcard__price {
  font-size: 13px;
  color: #111;
  font-weight: 400;
  line-height: 21px;
}

.rcard__price > span {
  text-wrap: nowrap;
  display: table-cell;
  vertical-align: middle;
}

.rcard__price strong {
  font-size: 20px;
  color: #111;
  font-weight: 800;
  display: inline-block;
  margin-left: 10px;
}

.rcard__btn {
  flex: 0 0 auto;
  padding: 6px 16px;
  background: #9c7649;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  font-family: "Nunito";
  text-transform: uppercase;
  text-decoration: none;
}
.rcard__btn:hover { background: #855f37; }
