.edix-agenda {
  --edix-burgundy: #ac0033;
  --edix-widget-bg: #33383a;
  --edix-widget-image: none;
  --edix-overlay: .5;
  --edix-heading-color: #fff;
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  width: 100%;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border-radius: 8px;
  color: #25252a;
  background-color: var(--edix-widget-bg);
  background-image: linear-gradient(rgba(15, 17, 18, var(--edix-overlay)), rgba(15, 17, 18, var(--edix-overlay))), var(--edix-widget-image);
  background-position: center;
  background-size: cover;
  font-family: inherit;
}
.edix-agenda *, .edix-agenda *::before, .edix-agenda *::after { box-sizing: border-box; }
.edix-agenda--no-background { padding: 0; overflow: visible; background-image: none; }
.edix-agenda__heading {
  position: relative;
  z-index: 1;
  margin: 0 0 26px;
  color: var(--edix-heading-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.edix-agenda--no-background .edix-agenda__heading { color: #25252a; }
.edix-agenda__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 38px);
}
.edix-agenda__card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 350px;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  color: #25252a;
  text-decoration: none !important;
  box-shadow: 0 12px 35px rgba(0,0,0,.13);
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.edix-agenda__card--linked:hover,
.edix-agenda__card--linked:focus-visible { color: #25252a; transform: translateY(-6px); box-shadow: 0 18px 42px rgba(0,0,0,.22); }
.edix-agenda__card--linked:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.edix-agenda__visual { position: relative; height: 190px; overflow: hidden; background: #dedede; }
.edix-agenda__visual::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(to bottom, transparent, #fff 90%); pointer-events: none; }
.edix-agenda__image { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .35s ease, transform .35s ease; }
.edix-agenda__card--linked:hover .edix-agenda__image { filter: grayscale(25%); transform: scale(1.035); }
.edix-agenda__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #747a7c, #d8d9d9); }
.edix-agenda__date-badge { position: absolute; z-index: 2; top: 0; left: 0; display: flex; align-items: center; min-height: 76px; padding: 8px 12px; border-radius: 0 0 7px 0; background: #fff; color: var(--edix-burgundy); }
.edix-agenda__date-part { display: flex; min-width: 38px; flex-direction: column; align-items: center; }
.edix-agenda__month { font-family: Georgia, "Times New Roman", serif; font-size: 11px; line-height: 1; text-transform: uppercase; }
.edix-agenda__day { font-family: Georgia, "Times New Roman", serif; font-size: 37px; line-height: 1.05; }
.edix-agenda__date-separator { margin: 11px 1px 0; font-size: 12px; }
.edix-agenda__content { position: relative; display: flex; min-height: 160px; padding: 16px 24px 25px; flex: 1; flex-direction: column; }
.edix-agenda__date-line { display: none; margin-bottom: 5px; color: var(--edix-burgundy); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.edix-agenda__title { margin: 0 0 5px; color: #25252a; font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 600; line-height: 1.2; }
.edix-agenda__description { margin: 3px 0 12px; color: #626267; font-size: 13px; line-height: 1.45; }
.edix-agenda__location { display: inline-flex; width: fit-content; max-width: 100%; margin-top: auto; padding: 6px 10px; border-radius: 12px; background: #f1f1f2; color: #38383e; align-items: flex-start; gap: 7px; font-size: 12px; line-height: 1.25; }
.edix-agenda__location span:last-child { min-width: 0; overflow: visible; overflow-wrap: anywhere; text-overflow: clip; white-space: normal; }
.edix-agenda__pin { position: relative; width: 10px; height: 10px; border: 3px solid #34343b; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); flex: 0 0 auto; }
.edix-agenda__pin::after { content: ""; position: absolute; width: 2px; height: 2px; top: 1px; left: 1px; border-radius: 50%; background: #fff; }
.edix-agenda__arrow { position: absolute; right: 18px; bottom: 22px; color: var(--edix-burgundy); font-size: 20px; opacity: 0; transform: translateX(-5px); transition: opacity .2s ease, transform .2s ease; }
.edix-agenda__card--linked:hover .edix-agenda__arrow { opacity: 1; transform: translateX(0); }
.edix-agenda__card--linked .edix-agenda__location { max-width: calc(100% - 28px); }
.edix-agenda__empty { position: relative; z-index: 1; margin: 0; padding: 20px; border-radius: 6px; background: rgba(255,255,255,.94); color: #333; }

.edix-agenda--compact .edix-agenda__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.edix-agenda--compact .edix-agenda__card { min-height: 180px; display: grid; grid-template-columns: minmax(145px, 38%) 1fr; }
.edix-agenda--compact .edix-agenda__visual { height: 100%; min-height: 180px; }
.edix-agenda--compact .edix-agenda__visual::after { inset: 0; background: linear-gradient(to right, transparent 45%, #fff 100%); }
.edix-agenda--compact .edix-agenda__content { min-height: 180px; padding: 25px 24px; }
.edix-agenda--compact .edix-agenda__date-badge { min-height: 66px; padding: 7px 9px; }
.edix-agenda--compact .edix-agenda__day { font-size: 31px; }

.edix-agenda--zijbalk { padding: 25px; }
.edix-agenda--zijbalk .edix-agenda__heading { margin-bottom: 18px; font-size: 25px; }
.edix-agenda--zijbalk .edix-agenda__grid { grid-template-columns: 1fr; gap: 12px; }
.edix-agenda--zijbalk .edix-agenda__card { min-height: 108px; display: grid; grid-template-columns: 108px 1fr; box-shadow: 0 7px 20px rgba(0,0,0,.1); }
.edix-agenda--zijbalk .edix-agenda__visual { height: 100%; min-height: 108px; }
.edix-agenda--zijbalk .edix-agenda__visual::after { display: none; }
.edix-agenda--zijbalk .edix-agenda__date-badge { top: 7px; left: 7px; min-height: 48px; padding: 5px 6px; border-radius: 5px; }
.edix-agenda--zijbalk .edix-agenda__date-part { min-width: 25px; }
.edix-agenda--zijbalk .edix-agenda__month { font-size: 8px; }
.edix-agenda--zijbalk .edix-agenda__day { font-size: 22px; }
.edix-agenda--zijbalk .edix-agenda__date-separator { margin-top: 7px; }
.edix-agenda--zijbalk .edix-agenda__content { min-height: 108px; padding: 15px 16px; justify-content: center; }
.edix-agenda--zijbalk .edix-agenda__date-line { display: block; }
.edix-agenda--zijbalk .edix-agenda__title { font-size: 17px; }
.edix-agenda--zijbalk .edix-agenda__description { display: none; }
.edix-agenda--zijbalk .edix-agenda__location { margin-top: 7px; font-size: 11px; }

@media (max-width: 1080px) {
  .edix-agenda__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .edix-agenda { padding: 24px 18px; border-radius: 6px; }
  .edix-agenda--no-background { padding: 0; }
  .edix-agenda__grid, .edix-agenda--compact .edix-agenda__grid { grid-template-columns: 1fr; gap: 15px; }
  .edix-agenda__card, .edix-agenda--compact .edix-agenda__card { min-height: 135px; display: grid; grid-template-columns: 125px 1fr; }
  .edix-agenda__visual, .edix-agenda--compact .edix-agenda__visual { height: 100%; min-height: 135px; }
  .edix-agenda__visual::after, .edix-agenda--compact .edix-agenda__visual::after { display: none; }
  .edix-agenda__date-badge, .edix-agenda--compact .edix-agenda__date-badge { top: 7px; left: 7px; min-height: 50px; padding: 5px 7px; border-radius: 5px; }
  .edix-agenda__date-part { min-width: 27px; }
  .edix-agenda__month { font-size: 8px; }
  .edix-agenda__day, .edix-agenda--compact .edix-agenda__day { font-size: 24px; }
  .edix-agenda__date-separator { margin-top: 7px; }
  .edix-agenda__content, .edix-agenda--compact .edix-agenda__content { min-height: 135px; padding: 17px 16px; }
  .edix-agenda__date-line { display: block; }
  .edix-agenda__title { font-size: 17px; }
  .edix-agenda__description { display: none; }
  .edix-agenda__location { margin-top: 7px; font-size: 11px; }
}
@media (max-width: 410px) {
  .edix-agenda__card, .edix-agenda--compact .edix-agenda__card, .edix-agenda--zijbalk .edix-agenda__card { grid-template-columns: 96px 1fr; }
  .edix-agenda__content, .edix-agenda--compact .edix-agenda__content { padding: 14px 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .edix-agenda__card, .edix-agenda__image, .edix-agenda__arrow { transition: none; }
}
