/* Rabble events widget styles — adapted from the production embed.
   Palette: cream #f2efe7 / black #1c1d1e. Sentence case, kerning 0. */

.rabble-events,
.rabble-events * {
  box-sizing: border-box;
  min-width: 0;
}

.rabble-events {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 0 40px;
  color: #1c1d1e;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  overflow-x: clip;
  overflow-y: visible;
  background: #e9ddc9;
}

.rabble-events__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.rabble-events__header,
.rabble-events__controls-shell,
.rabble-events__toolbar-shell,
.rabble-events__section,
.rabble-events__status,
.rabble-events__empty {
  padding-left: 0;
  padding-right: 0;
}

.rabble-events__controls-shell,
.rabble-events__toolbar-shell,
.rabble-events__section,
.rabble-events__status,
.rabble-events__empty {
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.rabble-events__controls-shell {
  margin-top: 12px;
  display: block;
  margin-bottom: 18px;
  overflow: visible;
}

.rabble-events__header {
  margin-bottom: 24px;
}

.rabble-events__title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
  color: #1c1d1e;
}

.rabble-events__intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: inherit;
  opacity: 0.72;
  max-width: 760px;
}

.rabble-events__controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: visible;
  box-sizing: border-box;
}

.rabble-events__search-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
}

.rabble-events__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: currentColor;
  opacity: 0.5;
  pointer-events: none;
}

.rabble-events__input {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
  height: 48px;
  min-height: 48px;
  border: 1px solid rgba(28, 29, 30, 0.25);
  box-shadow: none;
  border-radius: 0;
  padding: 0 14px 0 40px;
  background: rgba(33,28,23,0.04);
  color: inherit;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1;
  outline: none;
}

.rabble-events__input:focus {
  background: rgba(33,28,23,0.06);
  border-color: rgba(28, 29, 30, 0.4);
}

.rabble-events__input::placeholder {
  color: currentColor;
  opacity: 0.45;
}

.rabble-chip {
  appearance: none;
  border: 1px solid rgba(28, 29, 30, 0.25);
  background: rgba(33,28,23,0.03);
  color: inherit;
  height: 44px;
  min-height: 44px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.2;
  cursor: pointer;
  transition: 0.18s ease;
  border-radius: 0;
  white-space: nowrap;
}

.rabble-chip:hover {
  background: rgba(28, 29, 30, 0.08);
  border-color: rgba(28, 29, 30, 0.35);
}

.rabble-chip.is-active {
  background: #1c1d1e;
  color: #f2efe7;
  border-color: #1c1d1e;
}

.rabble-chip__count {
  margin-left: 6px;
  opacity: 0.78;
}

/* A time filter with no matching events is dimmed and not clickable */
.rabble-chip.is-empty {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.rabble-events__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}

.rabble-events__venues {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid rgba(28, 29, 30, 0.1);
  padding-top: 12px;
  margin-top: 4px;
}

.rabble-events__venue-label {
  font-size: 0.78rem;
  letter-spacing: 0;
  font-weight: 600;
  color: inherit;
  opacity: 0.5;
  width: 100%;
  display: block;
  margin-bottom: 4px;
}

.rabble-events__toolbar-shell {
  display: block;
  margin-bottom: 20px;
}

.rabble-events__toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.rabble-events__toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.rabble-events__count {
  font-size: 0.9rem;
  color: inherit;
  opacity: 0.72;
}

.rabble-events__clear,
.js-add-all-calendar {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-height: 44px;
  border: 1px solid rgba(28, 29, 30, 0.25);
  background: rgba(33,28,23,0.03);
  color: inherit;
  padding: 0 14px;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  transition: 0.18s ease;
  border-radius: 0;
  text-decoration: none;
}

.rabble-link-action {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  opacity: 0.72;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  transition: 0.18s ease;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.rabble-events__clear:hover,
.js-add-all-calendar:hover {
  background: #1c1d1e;
  color: #f2efe7;
  border-color: #1c1d1e;
}

.rabble-link-action:hover {
  opacity: 1;
}

.rabble-events__status {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(28, 29, 30, 0.04);
  font-size: 0.96rem;
  border-radius: 0;
  color: inherit;
  border: 1px solid rgba(28, 29, 30, 0.12);
}

.rabble-events__empty {
  padding-top: 18px;
  padding-bottom: 18px;
  border: 1px solid rgba(28, 29, 30, 0.12);
  background: rgba(28, 29, 30, 0.02);
}

.rabble-events__empty-title {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.25;
  color: inherit;
}

.rabble-events__empty-copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: inherit;
  opacity: 0.72;
}

.rabble-events__more {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.rabble-events__section {
  display: block;
  width: 100%;
  margin-top: 28px;
}

.rabble-events__section:first-child {
  margin-top: 0;
}

.rabble-events__section-title {
  margin: 0 0 16px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  color: inherit;
}

.rabble-events__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.rabble-event {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid rgba(28, 29, 30, 0.12);
  background: rgba(33,28,23,0.03);
  overflow: hidden;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.rabble-event:hover {
  border-color: rgba(28, 29, 30, 0.2);
  background: rgba(33,28,23,0.05);
}

.rabble-event--no-image {
  grid-template-columns: 1fr;
}

.rabble-events__section--featured .rabble-event {
  border-color: rgba(28, 29, 30, 0.18);
  background: rgba(33,28,23,0.05);
}

.rabble-events__section--featured .rabble-event:hover {
  border-color: rgba(28, 29, 30, 0.28);
  background: rgba(33,28,23,0.06);
}

.rabble-event__thumb,
.rabble-event__thumb-link {
  overflow: hidden;
}

.rabble-event__thumb {
  position: relative;
  background: #1c1d1e;
  aspect-ratio: 4 / 5;
  height: 100%;
}

.rabble-event__thumb.is-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  color: rgba(242, 239, 231, 0.55);
  font-size: 0.76rem;
  letter-spacing: 0;
  border-right: 1px solid rgba(28, 29, 30, 0.12);
}

.rabble-event__thumb.is-fallback::before {
  content: "No image";
}

.rabble-event__thumb-link {
  display: block;
  width: 100%;
  height: 100%;
}

.rabble-event__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.rabble-event__date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1c1d1e;
  color: #f2efe7;
  min-width: 82px;
  text-align: center;
  padding: 12px 10px;
  line-height: 1;
  z-index: 3;
  border-radius: 0;
  display: block;
}

.rabble-event__date-badge .m {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.rabble-event__date-badge .d {
  display: block;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0;
}

.rabble-event__free-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  backdrop-filter: blur(3px);
}

.rabble-event__free-badge.is-free {
  background: #2f6b3d;
  border-color: #2f6b3d;
  color: #fff;
}

.rabble-event__free-badge.is-ticketed {
  background: #b32025;
  border-color: #b32025;
  color: #fff;
}

.rabble-event__free-badge.is-door {
  background: #d17a22;
  border-color: #d17a22;
  color: #fff;
}

.rabble-event__content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.rabble-events__section--featured .rabble-event__content {
  padding: 26px;
}

.rabble-event__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.rabble-event__venue-tag {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 26px;
  padding: 0;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0;
  border: 0;
  background: transparent;
  font-weight: 600;
  color: #1c1d1e;
}

.rabble-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 5px 8px;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0px;
  border: 1px solid rgba(28, 29, 30, 0.18);
  background: rgba(28, 29, 30, 0.08);
  color: inherit;
}

.rabble-pill.is-featured {
  background: #b80f0a;
  border-color: #b80f0a;
  color: #fff;
}

.rabble-pill.is-live {
  background: #f2c100;
  border-color: #f2c100;
  color: #000;
}

.rabble-pill.is-residency {
  background: #c7a11e;
  border-color: #c7a11e;
  color: #000;
}

.rabble-pill.is-happy {
  background: #4b4b4b;
  border-color: #4b4b4b;
  color: #d9d9d9;
}

.rabble-pill.is-comedy {
  background: #df822d;
  border-color: #df822d;
  color: #fff;
}

.rabble-pill.is-food {
  background: #0f56a8;
  border-color: #0f56a8;
  color: #d7e6ff;
}

.rabble-pill.is-dj {
  background: #5a3286;
  border-color: #5a3286;
  color: #d9d9d9;
}

.rabble-pill.is-theme {
  background: #6a3d96;
  border-color: #6a3d96;
  color: #d9c2ff;
}

.rabble-pill.is-community {
  background: #117a45;
  border-color: #117a45;
  color: #fff;
}

.rabble-pill.is-lgbt {
  background: #d42da0;
  border-color: #d42da0;
  color: #fff;
}

.rabble-pill.is-karaoke {
  background: #73a3eb;
  border-color: #73a3eb;
  color: #000;
}

.rabble-event__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0;
  color: #1c1d1e;
  font-weight: 600;
}

.rabble-events__section--featured .rabble-event__title {
  font-size: clamp(1.68rem, 2.15vw, 2.25rem);
}

.rabble-events__section--weekly .rabble-event__title,
.rabble-events__section--daily .rabble-event__title {
  font-size: 1.38rem;
  line-height: 1;
}

.rabble-event__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  height: 100%;
}

.rabble-event__meta {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.76;
  line-height: 1.45;
  color: inherit;
}

.rabble-event__meta-urgency {
  color: #1c1d1e;
  font-weight: 600;
  opacity: 1;
}

.rabble-event__desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.8;
  color: inherit;
}

.rabble-event__footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
  justify-content: space-between;
  align-items: flex-end;
}

.rabble-event__footer-right .rabble-link-action {
  order: 1;
}

.rabble-event__footer-right .rabble-btn {
  order: 2;
  margin-left: auto;
}

.rabble-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  min-height: 54px;
  padding: 0 24px;
  text-decoration: none;
  font: inherit;
  font-size: 0.98rem;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: 0.18s ease;
  border-radius: 0;
  white-space: nowrap;
  color: inherit;
  background: transparent;
}

.rabble-btn--primary {
  color: #fff;
  border-color: transparent;
}

.rabble-btn:hover {
  opacity: 0.88;
}

.rabble-events__section--weekly .rabble-events__grid,
.rabble-events__section--daily .rabble-events__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.rabble-events__section--weekly .rabble-event,
.rabble-events__section--daily .rabble-event {
  grid-template-columns: 1fr;
}

.rabble-events__section--weekly .rabble-event__thumb,
.rabble-events__section--daily .rabble-event__thumb {
  aspect-ratio: 4 / 5;
  height: auto;
}

.rabble-events__section--weekly .rabble-event__content,
.rabble-events__section--daily .rabble-event__content {
  padding: 18px;
}

.rabble-events__section--weekly .rabble-event__meta,
.rabble-events__section--daily .rabble-event__meta {
  font-size: 0.84rem;
  line-height: 1.35;
}

.rabble-events__section--weekly .rabble-event__desc,
.rabble-events__section--daily .rabble-event__desc {
  font-size: 0.86rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rabble-events__section--weekly .rabble-event__date-badge,
.rabble-events__section--daily .rabble-event__date-badge {
  min-width: 64px;
  padding: 10px 8px;
  top: 10px;
  left: 10px;
}

.rabble-events__section--weekly .rabble-event__date-badge .m,
.rabble-events__section--daily .rabble-event__date-badge .m {
  font-size: 0.52rem;
  margin-bottom: 4px;
}

.rabble-events__section--weekly .rabble-event__date-badge .d,
.rabble-events__section--daily .rabble-event__date-badge .d {
  font-size: 1.18rem;
}

.rabble-events__section--weekly .rabble-btn,
.rabble-events__section--daily .rabble-btn {
  height: 44px;
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.88rem;
}

@keyframes rabble-shimmer {
  0% { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.re-sk {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  border: 1px solid rgba(28, 29, 30, 0.12);
  overflow: hidden;
  background: rgba(33,28,23,0.03);
}

.re-sk__thumb {
  min-height: 340px;
  background: linear-gradient(90deg, rgba(28, 29, 30, 0.04) 0, rgba(28, 29, 30, 0.1) 150px, rgba(28, 29, 30, 0.04) 300px);
  background-size: 600px 100%;
  animation: rabble-shimmer 1.5s infinite linear;
}

.re-sk__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.re-sk__line {
  height: 12px;
  background: linear-gradient(90deg, rgba(28, 29, 30, 0.04) 0, rgba(28, 29, 30, 0.1) 150px, rgba(28, 29, 30, 0.04) 300px);
  background-size: 600px 100%;
  animation: rabble-shimmer 1.5s infinite linear;
}

@media (max-width: 1080px) {
  .rabble-event,
  .re-sk {
    grid-template-columns: 260px 1fr;
  }

  .rabble-events__section--weekly .rabble-events__grid,
  .rabble-events__section--daily .rabble-events__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rabble-events__section--weekly .rabble-event,
  .rabble-events__section--daily .rabble-event {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .rabble-events__controls {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .rabble-events {
    padding: 14px 0 24px;
  }

  .rabble-events__controls-shell {
    margin-top: 10px;
    overflow: hidden;
  }

  .rabble-events__inner {
    padding: 0 14px;
  }

  .rabble-events__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .rabble-events__controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .rabble-events__search-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .rabble-events__quick {
    justify-content: flex-start;
    width: 100%;
  }

  .rabble-events__venues {
    justify-content: flex-start;
    width: 100%;
  }

  .rabble-events__grid,
  .rabble-events__section--weekly .rabble-events__grid,
  .rabble-events__section--daily .rabble-events__grid {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .rabble-event,
  .rabble-event--no-image,
  .re-sk {
    grid-template-columns: 1fr;
  }

  .rabble-events__section--weekly .rabble-event,
  .rabble-events__section--daily .rabble-event {
    grid-template-columns: 50% minmax(0, 1fr);
    align-items: stretch;
  }

  .rabble-event__thumb,
  .re-sk__thumb {
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .rabble-events__section--weekly .rabble-event__thumb,
  .rabble-events__section--daily .rabble-event__thumb {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
  }

  .rabble-events__section--weekly .rabble-event__thumb-link,
  .rabble-events__section--daily .rabble-event__thumb-link {
    display: block;
    width: 100%;
    height: 100%;
  }

  .rabble-events__section--weekly .rabble-event__thumb img,
  .rabble-events__section--daily .rabble-event__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .rabble-event__content,
  .re-sk__body {
    padding: 16px;
    gap: 10px;
  }

  .rabble-events__section--weekly .rabble-event__content,
  .rabble-events__section--daily .rabble-event__content {
    padding: 10px 0 0 12px;
    gap: 8px;
  }

  .rabble-event__title {
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0;
    color: #1c1d1e;
  }

  .rabble-events__section--weekly .rabble-event__title,
  .rabble-events__section--daily .rabble-event__title {
    font-size: 1.25rem;
    color: #1c1d1e;
  }

  .rabble-events__section--featured .rabble-event__title {
    color: #1c1d1e;
  }

  .rabble-event__venue-tag {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 4px;
  }

  .rabble-event__meta {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .rabble-events__section--weekly .rabble-event__meta,
  .rabble-events__section--daily .rabble-event__meta {
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .rabble-event__desc {
    font-size: 0.82rem;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.86;
  }

  .rabble-events__section--weekly .rabble-event__desc,
  .rabble-events__section--daily .rabble-event__desc {
    font-size: 0.76rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.84;
  }

  .rabble-event__footer-right,
  .rabble-events__section--featured .rabble-event__footer-right {
    gap: 8px;
    padding-top: 2px;
    justify-content: flex-start;
  }

  .rabble-events__section--weekly .rabble-event__footer-right,
  .rabble-events__section--daily .rabble-event__footer-right {
    gap: 8px;
    padding-top: 6px;
    padding-right: 8px;
    padding-bottom: 8px;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .rabble-events__section--weekly .rabble-link-action,
  .rabble-events__section--daily .rabble-link-action {
    display: none;
  }

  .rabble-events__section--weekly .rabble-btn,
  .rabble-events__section--daily .rabble-btn {
    height: 44px;
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.8rem;
    margin-left: auto;
    order: 2;
  }

  .rabble-btn,
  .rabble-link-action,
  .js-add-all-calendar,
  .rabble-events__clear {
    min-height: 44px;
    height: 44px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .rabble-event__date-badge {
    top: 8px;
    left: 8px;
    min-width: 58px;
    padding: 7px 7px;
  }

  .rabble-event__date-badge .m {
    font-size: 0.52rem;
    margin-bottom: 2px;
  }

  .rabble-event__date-badge .d {
    font-size: 0.92rem;
  }

  .rabble-events__section--weekly .rabble-event__date-badge,
  .rabble-events__section--daily .rabble-event__date-badge {
    top: 6px;
    left: 6px;
    min-width: 58px;
    padding: 7px 6px;
  }

  .rabble-events__section--weekly .rabble-event__date-badge .m,
  .rabble-events__section--daily .rabble-event__date-badge .m {
    font-size: 0.44rem;
    margin-bottom: 2px;
  }

  .rabble-events__section--weekly .rabble-event__date-badge .d,
  .rabble-events__section--daily .rabble-event__date-badge .d {
    font-size: 1rem;
  }

  .rabble-event__free-badge {
    display: inline-flex;
    right: 8px;
    bottom: 8px;
    min-height: 24px;
    padding: 5px 8px;
    font-size: 0.62rem;
  }
}

@media (max-width: 420px) {
  .rabble-event__footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .rabble-event__footer-right .rabble-link-action {
    grid-column: 1 / -1;
  }

  .rabble-btn {
    width: 100%;
  }

  .rabble-events__section--weekly .rabble-btn,
  .rabble-events__section--daily .rabble-btn {
    width: auto;
    justify-self: end;
  }
}

.rabble-events__input:focus-visible,
.rabble-chip:focus-visible,
.rabble-events__clear:focus-visible,
.rabble-link-action:focus-visible,
.rabble-btn:focus-visible,
.rabble-event__thumb-link:focus-visible,
.rabble-event__title a:focus-visible,
.rabble-event__venue-tag:focus-visible {
  outline: 2px solid #1c1d1e;
  outline-offset: 2px;
}

script[type="application/ld+json"] {
  display: none;
}

/* ============================================================
   Style guide alignment — black + cream, Inter, hard edges.
   Overrides the widget's legacy multi-colour system so the
   events grid matches the Rabble Hospitality Group brand.
   ============================================================ */
.rabble-events { color: #1c1d1e; }

/* Cards: cleaner border + image zoom on hover */
.rabble-event,
.rabble-events__section--featured .rabble-event {
  border-color: rgba(28, 29, 30, 0.15);
  background: rgba(28, 29, 30, 0.02);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.rabble-event:hover,
.rabble-events__section--featured .rabble-event:hover {
  border-color: rgba(28, 29, 30, 0.4);
  background: rgba(28, 29, 30, 0.05);
}
.rabble-event__thumb { overflow: hidden; }
.rabble-event__thumb img { transition: transform 0.6s ease; }
.rabble-event:hover .rabble-event__thumb img { transform: scale(1.05); }

/* Date badge: venue-coloured background (set inline), cream text for contrast */
.rabble-event__date-badge {
  color: #e9ddc9 !important;
}

/* Venue tag uses the venue's brand colour (set inline); section titles in ink */
.rabble-events__section-title { color: #1c1d1e; opacity: 0.55; }

/* Monochrome type pills (drop the rainbow) */
.rabble-pill,
.rabble-pill.is-featured,
.rabble-pill.is-live,
.rabble-pill.is-residency,
.rabble-pill.is-happy,
.rabble-pill.is-comedy,
.rabble-pill.is-food,
.rabble-pill.is-dj,
.rabble-pill.is-theme,
.rabble-pill.is-community,
.rabble-pill.is-lgbt,
.rabble-pill.is-karaoke {
  background: transparent !important;
  border: 1px solid rgba(28, 29, 30, 0.4) !important;
  color: #1c1d1e !important;
}

/* Entry badge: ink chip on the image */
.rabble-event__free-badge,
.rabble-event__free-badge.is-free,
.rabble-event__free-badge.is-ticketed,
.rabble-event__free-badge.is-door {
  background: #1c1d1e !important;
  border-color: #1c1d1e !important;
  color: #e9ddc9 !important;
  backdrop-filter: none;
}

/* Primary buttons: ink fill, invert on hover */
.rabble-btn--primary {
  background: #1c1d1e !important;
  border-color: #1c1d1e !important;
  color: #e9ddc9 !important;
}
.rabble-btn--primary:hover {
  background: #e9ddc9 !important;
  color: #1c1d1e !important;
}

/* Filter chips */
.rabble-chip.is-active {
  background: #1c1d1e;
  color: #e9ddc9;
  border-color: #1c1d1e;
}

/* Focus rings on brand */
.rabble-events__input:focus-visible,
.rabble-chip:focus-visible,
.rabble-events__clear:focus-visible,
.rabble-link-action:focus-visible,
.rabble-btn:focus-visible,
.rabble-event__thumb-link:focus-visible,
.rabble-event__title a:focus-visible,
.rabble-event__venue-tag:focus-visible {
  outline: 2px solid #1c1d1e;
  outline-offset: 2px;
}
