



:root {

  --mm-gold:        #C4913F;
  --mm-gold-bg:     #FEF7EC;
  --mm-gold-soft:   #FFF8ED;
  --mm-gold-edge:   #D4A853;
  --mm-grey-bg:     #EDEDED;
  --mm-grey-border: #CFCFCF;
  --mm-accent:      #0A6E5B;
  --mm-card-line:   rgba(0, 0, 0, 0.08);
  --mm-card-bg:     #FFFFFF;
  --mm-ink-soft:    #5b6573;


  --mm-theme-primary:    var(--bloghash-primary,   #287fcc);
  --mm-theme-secondary:  var(--bloghash-secondary, #302D55);
  --mm-theme-accent:     #F43676;
}



.mm-events-main {
  padding: 24px 0 48px;
}



.mm-suggest-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 980;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px 12px 18px;
  background: var(--mm-theme-accent);
  color: #fff !important;
  font-family: "Be Vietnam Pro", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none !important;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(48, 45, 85, 0.25);
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.mm-suggest-fab__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.mm-suggest-fab:hover,
.mm-suggest-fab:focus {
  background: #d92765;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(48, 45, 85, 0.32);
  text-decoration: none !important;
}
@media (max-width: 600px) {

  .mm-suggest-fab { padding: 12px; gap: 0; }
  .mm-suggest-fab__label { display: none; }
}
@media print {
  .mm-suggest-fab { display: none; }
}


.mm-filter-wrap {
  background: var(--mm-theme-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  margin-bottom: 0;
}

.mm-filter {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 8px;
  align-items: stretch;
}

.mm-filter__field {
  display: flex;
}
.mm-filter__field input,
.mm-filter__field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
}
.mm-filter__field input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.mm-filter__field input:focus,
.mm-filter__field select:focus {
  outline: none;
  border-color: var(--mm-theme-accent);
  background: rgba(255, 255, 255, 0.14);
}
.mm-filter__field select option {
  background: var(--mm-theme-secondary);
  color: #fff;
}

.mm-filter__submit {
  padding: 11px 22px;
  background: var(--mm-theme-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .12s ease;
}
.mm-filter__submit:hover { background: #d92765; }

.mm-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.mm-filter__chips a {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  font-size: 1.3rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.mm-filter__chips a:hover {
  background: var(--mm-theme-accent);
  border-color: var(--mm-theme-accent);
  color: #fff;
}

@media (max-width: 880px) {
  .mm-filter {
    grid-template-columns: 1fr 1fr;
  }
  .mm-filter__field--search { grid-column: 1 / -1; }
  .mm-filter__submit       { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .mm-filter { grid-template-columns: 1fr; }
}


.mm-events-main .chips:first-of-type { display: none; }



.bloghash-breadcrumbs.breadcrumb {
  padding: 14px 0 4px;
  font-size: 1.4rem;
  color: var(--mm-ink-soft);
}
.bloghash-breadcrumbs.breadcrumb a {
  color: var(--mm-ink-soft);
  text-decoration: none;
}
.bloghash-breadcrumbs.breadcrumb a:hover {
  color: var(--mm-theme-accent);
  text-decoration: underline;
}
.bloghash-breadcrumbs.breadcrumb .sep {
  margin: 0 8px;
  color: var(--mm-grey-border);
}



.mm-page-hero {
  padding: 8px 0 28px;
  border-bottom: 1px solid var(--mm-card-line);
  margin-bottom: 28px;
}
.mm-page-hero h1 {
  margin-bottom: 12px;

}
.mm-page-hero .lead {
  font-size: 1.8rem;
  line-height: 1.55;
  color: var(--mm-ink-soft);
  max-width: 72ch;
  margin-bottom: 16px;
}
.mm-page-hero .updated {
  font-size: 1.3rem;
  color: var(--mm-ink-soft);
}
.mm-page-hero .updated strong {
  color: var(--mm-theme-secondary);
}



.mm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}
.mm-chips a {
  display: inline-block;
  padding: 7px 14px;
  background: var(--mm-card-bg);
  border: 1px solid var(--mm-card-line);
  border-radius: 999px;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--mm-theme-secondary);
  transition: border-color .12s ease, color .12s ease, background-color .12s ease;
}
.mm-chips a:hover,
.mm-chips a.active {
  background: var(--mm-theme-secondary);
  color: #fff;
  border-color: var(--mm-theme-secondary);
}



.mm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin: 18px 0 30px;
}

.mm-grid--featured {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


.mm-card,
.mm-card:link,
.mm-card:visited,
.mm-card:hover,
.mm-card:focus,
.mm-card *,
.mm-card *:link,
.mm-card *:visited,
.mm-card *:hover,
.mm-card *:focus {
  text-decoration: none !important;
  text-decoration-color: transparent !important;
}

.mm-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--mm-theme-secondary);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease;
  isolation: isolate;
}
.mm-card:hover,
.mm-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(48, 45, 85, 0.10);
}



.mm-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 180px;
  background-position: center;
  background-size: cover;
  background-color: #2b2750;

  background-image: linear-gradient(135deg, #302D55 0%, #287fcc 60%, #F43676 130%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-card:hover .mm-card__media { filter: brightness(1.05); }


.mm-card__icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60%;
  max-width: 140px;
  height: auto;
  color: #ffffff;
  opacity: .18;
  z-index: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .35s ease;
}
.mm-card:hover .mm-card__icon {
  opacity: .28;
  transform: scale(1.05);
}



.mm-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 10px 9px;
  background: rgba(48, 45, 85, 0.92);
  backdrop-filter: blur(2px);
  border-radius: 3px;
  color: #fff;
  font-family: "Be Vietnam Pro", Helvetica, Arial, sans-serif;
  line-height: 1;
}
.mm-card__badge-month {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
}
.mm-card__badge-arrow {
  margin: 0 4px;
  opacity: .55;
}
.mm-card__badge-days {
  font-size: 1.8rem;
  font-weight: 700;
}
.mm-card__badge-sep {
  margin: 0 4px;
  opacity: .55;
  font-weight: 400;
}



.mm-card__chip {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(48, 45, 85, 0.94);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  z-index: 2;
  line-height: 1;
}
.mm-card__chip-icon {
  width: 10px;
  height: 13px;
  flex-shrink: 0;
  opacity: .85;
}
.mm-card__chip--festa     { background: #C4913F; }
.mm-card__chip--festival  { background: #287fcc; }
.mm-card__chip--concert   { background: #302D55; }
.mm-card__chip--nightlife { background: #6f3d7d; }
.mm-card__chip--food      { background: #b5351e; }
.mm-card__chip--arts      { background: #2a5c5c; }
.mm-card__chip--family    { background: #5a8b3c; }
.mm-card__chip--sports    { background: #d4a853; color: #1a1a1a; }
.mm-card__chip--free      { background: #0A6E5B; }
.mm-card__chip--outdoor   { background: #3a6c2a; }
.mm-card__chip--attraction{ background: #5a3a8b; }
.mm-card__chip--wellness  { background: #4f8f96; }
.mm-card__chip--default   { background: rgba(0,0,0,.55); }


.mm-card__badge--ongoing { width: 80px; }
.mm-card__badge-ongoing {
  display: block;
  text-align: center;
  padding: 6px 4px 4px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
}
.mm-card__badge-sub {
  display: block;
  text-align: center;
  padding: 0 4px 7px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .04em;
}


.mm-card__book {
  position: absolute;
  top: 64px;
  left: 14px;
  background: var(--mm-accent);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 2;
}


.mm-card__stock {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: .08em;
  padding: 3px 7px;
  border-radius: 2px;
  text-transform: lowercase;
  font-weight: 500;
  z-index: 2;
}


.mm-card__featured,
.mm-card__free {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--mm-theme-accent);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}
.mm-card__free { background: var(--mm-accent); }
.mm-card__featured + .mm-card__free { top: 40px; }


.mm-card__body {
  padding: 20px 4px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}


.mm-card__source {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mm-ink-soft);
  opacity: .7;
}


.mm-card__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--mm-theme-secondary);
  margin: 2px 0 2px;
  letter-spacing: -.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mm-card:hover .mm-card__title { color: var(--mm-theme-accent); }


.mm-card__meta {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--mm-ink-soft);
}
.mm-card__pin,
.mm-card__cal {

  opacity: .55;
  font-size: 1.1rem;
}
.mm-card__loc {
  color: var(--mm-theme-secondary);
  font-weight: 500;
}


.mm-card__excerpt {
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--mm-ink-soft);
  margin: 6px 0 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.mm-card__footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.mm-card__price {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--mm-theme-secondary);
}
.mm-card__price.is-free { color: var(--mm-accent); }


.mm-card__cta {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--mm-theme-secondary) !important;
  padding: 0;
  border-radius: 0;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .15s ease, transform .15s ease;
}
.mm-card:hover .mm-card__cta {
  color: var(--mm-theme-accent) !important;
  transform: translateX(3px);
}


.mm-card--featured .mm-card__media { aspect-ratio: 3 / 2; }
.mm-card--featured .mm-card__title { font-size: 2.2rem; }



.mm-date-list {
  background: var(--mm-card-bg);
  border: 1px solid var(--mm-card-line);
  border-radius: 10px;
  overflow: hidden;
}
.mm-date-row {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--mm-card-line);
  align-items: center;
}
.mm-date-row:last-child { border-bottom: none; }
.mm-date-row:hover { background: #FAFAFC; }

.mm-date-row .mm-day {
  text-align: center;
  border-right: 1px solid var(--mm-card-line);
  padding-right: 16px;
}
.mm-date-row .mm-day .mm-day__num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--mm-theme-secondary);
  line-height: 1;
}
.mm-date-row .mm-day .mm-day__name {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--mm-ink-soft);
  letter-spacing: .06em;
  margin-top: 3px;
}

.mm-date-row .mm-row__title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.mm-date-row .mm-row__title a { text-decoration: none; color: var(--mm-theme-secondary); }
.mm-date-row .mm-row__title a:hover { color: var(--mm-theme-primary); }

.mm-date-row .mm-row__meta {
  font-size: 1.3rem;
  color: var(--mm-ink-soft);
  line-height: 1.5;
}

.mm-date-row .mm-row__price {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
  color: var(--mm-theme-secondary);
}
.mm-date-row .mm-row__price.is-free { color: var(--mm-accent); }

@media (max-width: 640px) {
  .mm-date-row {
    grid-template-columns: 60px 1fr;
    gap: 14px;
    padding: 14px 16px;
  }
  .mm-date-row .mm-row__price {
    grid-column: span 2;
    text-align: left;
  }
}




.mm-tldr {
  background: var(--mm-gold-bg);
  border-left: 4px solid var(--mm-gold);
  padding: 18px 22px;
  border-radius: 4px;
  margin: 18px 0 24px;
  font-size: 1.55rem;
}


.mm-callout {
  background: var(--mm-gold-soft);
  border-left: 4px solid var(--mm-gold-edge);
  padding: 16px 20px;
  margin: 18px 0;
  font-size: 1.55rem;
  border-radius: 4px;
}


.mm-jump {
  background: var(--mm-grey-bg);
  border: 1px solid var(--mm-grey-border);
  padding: 14px 18px;
  border-radius: 6px;
  margin: 14px 0 20px;
  font-size: 1.45rem;
}
.mm-jump strong { color: var(--mm-theme-secondary); }


.mm-sponsor {
  background: var(--mm-gold-bg);
  border-left: 4px solid var(--mm-gold);
  padding: 22px 26px;
  border-radius: 6px;
  margin: 22px 0;
}
.mm-sponsor h3 { font-size: 2rem; margin-bottom: 6px; }
.mm-sponsor p  { font-size: 1.55rem; color: var(--mm-ink-soft); margin-bottom: 12px; }
.mm-sponsor .btn {
  display: inline-block;
  background: var(--mm-theme-secondary);
  color: #fff;
  padding: 9px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
}
.mm-sponsor .btn:hover { background: var(--mm-theme-primary); color: #fff; }




.mm-editorial {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--mm-theme-secondary);
  border-top: 1px solid var(--mm-card-line);
  border-bottom: 1px solid var(--mm-card-line);
  padding: 18px 0;
  margin: 22px 0;
  font-style: italic;
}
.mm-editorial::before {
  content: "Our take —";
  display: block;
  font-family: "Be Vietnam Pro", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mm-theme-accent);
  margin-bottom: 6px;
}



.mm-events-main details {
  background: var(--mm-card-bg);
  border: 1px solid var(--mm-card-line);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.mm-events-main details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.65rem;
  list-style: none;
  color: var(--mm-theme-secondary);
}
.mm-events-main details summary::-webkit-details-marker { display: none; }
.mm-events-main details summary::after {
  content: "+";
  float: right;
  color: var(--mm-theme-accent);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}
.mm-events-main details[open] summary::after { content: "−"; }
.mm-events-main details p {
  margin-top: 10px;
  color: var(--mm-ink-soft);
  font-size: 1.55rem;
}



.mm-section { padding: 6px 0 26px; }
.mm-section > h2 { margin-bottom: 4px; }
.mm-section > .mm-sub {
  color: var(--mm-ink-soft);
  font-size: 1.55rem;
  margin-bottom: 14px;
}



.mm-event-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 18px 0 30px;
  align-items: stretch;
}
.mm-event-hero .mm-event-hero__img {
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
  background-color: #eee;
  border-radius: 10px;
}
.mm-event-hero .mm-event-hero__body h1 {
  margin-bottom: 14px;
}
.mm-event-hero .mm-event-hero__meta {
  font-size: 1.55rem;
  color: var(--mm-ink-soft);
  margin-bottom: 16px;
  line-height: 1.75;
}
.mm-event-hero .mm-event-hero__cta {
  display: inline-block;
  background: var(--mm-theme-accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
}
.mm-event-hero .mm-event-hero__cta:hover { background: #d92765; color: #fff; }

.hero-image {
  width: 100%;
  margin: 18px 0 28px;
  background-position: center;
  background-size: cover;
  background-color: transparent;
}
.hero-image--photo {
  background: transparent;
}
.mm-events-main .hero-image img {
  display: block;
  width: 100%;
  max-width: 900px;
  max-height: 480px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 8px;
  background: #f1f1f1;
}
.mm-events-main .hero-image figcaption {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .mm-event-hero { grid-template-columns: 1fr; }
}





.bloghash-search-simple {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--mm-card-line);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 12px 28px rgba(48, 45, 85, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .14s ease, transform .14s ease, visibility 0s linear .14s;
  z-index: 999;
}
.bloghash-search-simple.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .14s ease, transform .14s ease, visibility 0s linear 0s;
}
.bloghash-search-simple .bloghash-search-form > div {
  display: flex;
  gap: 6px;
  align-items: center;
}
.bloghash-search-simple input[type="search"] {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--mm-card-line);
  border-radius: 6px;
  font-size: 1.5rem;
  font-family: inherit;
}
.bloghash-search-simple input[type="search"]:focus {
  outline: none;
  border-color: var(--mm-theme-accent);
}
.bloghash-search-simple button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--mm-theme-secondary);
}
.bloghash-search-simple button:hover { color: var(--mm-theme-accent); }


@media (max-width: 960px) {
  .bloghash-primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--mm-card-line);
    box-shadow: 0 14px 28px rgba(48, 45, 85, 0.14);
    z-index: 100;
  }
  body.mm-nav-open .bloghash-primary-nav { display: block; }
  body.mm-nav-open .bloghash-primary-nav ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
  }
  body.mm-nav-open .bloghash-primary-nav li {
    border-bottom: 1px solid var(--mm-card-line);
  }
  body.mm-nav-open .bloghash-primary-nav li:last-child { border-bottom: none; }
  body.mm-nav-open .bloghash-primary-nav a {
    display: block;
    padding: 14px 22px;
    font-size: 1.7rem;
    color: var(--mm-theme-secondary);
  }
  body.mm-nav-open .bloghash-primary-nav .current-menu-item > a {
    color: var(--mm-theme-accent);
    font-weight: 600;
  }
}



.mm-section--subscribe { padding: 36px 0 30px; }
.mm-subscribe {
  background: var(--mm-theme-secondary);
  color: #fff;
  padding: 30px 36px;
  border-radius: 14px;
  margin: 30px 0;
}
.mm-subscribe h2 {
  color: #fff !important;
  font-size: 2.4rem;
  margin: 0 0 6px;
  letter-spacing: -.005em;
}
.mm-subscribe__lead {
  color: rgba(255,255,255,.78);
  font-size: 1.55rem;
  margin: 0 0 18px;
}
.mm-subscribe__email {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.mm-subscribe__email input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1.5rem;
}
.mm-subscribe__email input::placeholder { color: rgba(255,255,255,.5); }
.mm-subscribe__email input:focus {
  outline: none; background: rgba(255,255,255,.14);
  border-color: var(--mm-theme-accent);
}
.mm-subscribe__email button {
  background: var(--mm-theme-accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1.45rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .15s ease;
}
.mm-subscribe__email button:hover { background: #d92765; }

.mm-subscribe__cats {
  border: none;
  padding: 0;
  margin: 8px 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.mm-subscribe__cats legend {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.78);
  margin-bottom: 8px;
  width: 100%;
  padding: 0;
}
.mm-subscribe__cats label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  color: rgba(255,255,255,.92);
  cursor: pointer;
  padding: 4px 0;
}
.mm-subscribe__cats input[type="checkbox"] {
  accent-color: var(--mm-theme-accent);
  width: 16px;
  height: 16px;
}
.mm-subscribe__legal {
  font-size: 1.15rem;
  color: rgba(255,255,255,.55);
  margin: 4px 0 0;
}


.mm-map {
  width: 100%;
  height: 360px;
  border-radius: 10px;
  margin: 14px 0 32px;
  background: #e8e6f1;
  border: 1px solid var(--mm-card-line);
  overflow: hidden;
}
.mm-map .leaflet-control-attribution {
  font-size: 1.05rem;
  background: rgba(255,255,255,.85);
}
@media (max-width: 640px) {
  .mm-map { height: 280px; }
}


.mm-similar__title {
  margin-top: 36px !important;
  padding-top: 24px;
  border-top: 1px solid var(--mm-card-line);
}
.mm-similar {
  margin: 16px 0 32px;
}


.mm-submit-form {
  background: #fff;
  padding: 28px 32px;
  border-radius: 12px;
  border: 1px solid var(--mm-card-line);
  max-width: 720px;
  margin: 24px 0 48px;
}
.mm-field { margin-bottom: 18px; }
.mm-field label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--mm-theme-secondary);
  margin-bottom: 6px;
}
.mm-field label .req { color: var(--mm-theme-accent); }
.mm-field input,
.mm-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--mm-card-line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1.55rem;
  color: var(--mm-theme-secondary);
  background: #fff;
  transition: border-color .12s ease;
}
.mm-field input:focus,
.mm-field textarea:focus {
  outline: none;
  border-color: var(--mm-theme-accent);
}
.mm-field textarea { resize: vertical; min-height: 140px; }
.mm-field__hint {
  font-size: 1.25rem;
  color: var(--mm-ink-soft);
  margin: 6px 0 0;
}
.mm-field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .mm-field--row { grid-template-columns: 1fr; }
}
.mm-submit-btn {
  background: var(--mm-theme-accent);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background-color .15s ease, transform .15s ease;
}
.mm-submit-btn:hover { background: #d92765; transform: translateY(-1px); }



.is-free  { color: var(--mm-accent); }
.mm-mt-sm { margin-top: 12px; }
.mm-mt    { margin-top: 22px; }
.mm-mt-lg { margin-top: 40px; }





.mm-events-main section { padding: 6px 0 26px; }
.mm-events-main section > .container { padding: 0; }


section.hero {
  padding: 8px 0 28px;
  border-bottom: 1px solid var(--mm-card-line);
  margin-bottom: 18px;
}
section.hero .container > h1 { margin-bottom: 12px; }


.mm-events-main p.lead {
  font-size: 1.8rem;
  line-height: 1.55;
  color: var(--mm-ink-soft);
  max-width: 72ch;
  margin-bottom: 14px;
}


.mm-events-main p.updated {
  font-size: 1.3rem;
  color: var(--mm-ink-soft);
  margin-bottom: 14px;
}
.mm-events-main p.updated strong { color: var(--mm-theme-secondary); }


.mm-events-main p.sub,
.mm-events-main .mm-sub {
  color: var(--mm-ink-soft);
  font-size: 1.55rem;
  margin-bottom: 14px;
}


.mm-events-main p.empty {
  font-size: 1.6rem;
  color: var(--mm-ink-soft);
  padding: 18px 0;
}


.mm-events-main .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 14px;
}
.mm-events-main .chips a {
  display: inline-block;
  padding: 7px 14px;
  background: var(--mm-card-bg);
  border: 1px solid var(--mm-card-line);
  border-radius: 999px;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--mm-theme-secondary);
  transition: border-color .12s, color .12s, background-color .12s;
}
.mm-events-main .chips a:hover,
.mm-events-main .chips a.active {
  background: var(--mm-theme-secondary);
  color: #fff;
  border-color: var(--mm-theme-secondary);
}


.mm-events-main .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin: 14px 0 24px;
}
.mm-events-main .grid.featured {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


.mm-events-main .sponsor {
  background: var(--mm-gold-bg);
  border-left: 4px solid var(--mm-gold);
  padding: 22px 26px;
  border-radius: 6px;
  margin: 20px 0;
}
.mm-events-main .sponsor h3 { font-size: 2rem; margin-bottom: 6px; }
.mm-events-main .sponsor p  { font-size: 1.55rem; color: var(--mm-ink-soft); margin-bottom: 12px; }
.mm-events-main .sponsor .btn {
  display: inline-block;
  background: var(--mm-theme-secondary);
  color: #fff;
  padding: 9px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
}
.mm-events-main .sponsor .btn:hover {
  background: var(--mm-theme-primary);
  color: #fff;
}


.mm-events-main .browse {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin: 10px 0 24px;
}
.mm-events-main .browse a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--mm-card-bg);
  border: 1px solid var(--mm-card-line);
  border-radius: 6px;
  text-decoration: none;
  color: var(--mm-theme-secondary);
  font-weight: 500;
  font-size: 1.5rem;
}
.mm-events-main .browse a:hover {
  border-color: var(--mm-theme-secondary);
  color: var(--mm-theme-primary);
}
.mm-events-main .browse a small {
  font-size: 1.2rem;
  color: var(--mm-ink-soft);
  font-weight: 400;
}


.mm-events-main .seo-block {
  background: var(--mm-card-bg);
  border: 1px solid var(--mm-card-line);
  border-radius: 10px;
  padding: 26px 30px;
  margin: 20px 0 12px;
}
.mm-events-main .seo-block h2 { margin-bottom: 12px; }
.mm-events-main .seo-block p {
  margin-bottom: 12px;
  color: var(--mm-ink-soft);
  font-size: 1.55rem;
  line-height: 1.7;
}
.mm-events-main .seo-block p:last-child { margin-bottom: 0; }
.mm-events-main .seo-block a { color: var(--mm-theme-primary); }
.mm-events-main .seo-block a:hover { color: var(--mm-theme-accent); }


.mm-cal-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  background: var(--mm-card-bg, #fff);
  border: 1px solid var(--mm-card-line, #e5e5e5);
  border-radius: 999px;
  padding: 6px 10px;
}
.mm-cal-nav__btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.45rem;
  text-decoration: none;
  color: var(--mm-theme-primary);
  background: transparent;
}
.mm-cal-nav__btn:hover {
  background: rgba(0,0,0,.05);
}
.mm-cal-nav__label {
  font-weight: 700;
  font-size: 1.55rem;
  padding: 0 6px;
}

.mm-cal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .mm-cal-layout { grid-template-columns: 1fr; }
}

.mm-cal-grid-wrap {
  background: var(--mm-card-bg, #fff);
  border: 1px solid var(--mm-card-line, #e5e5e5);
  border-radius: 14px;
  padding: 14px;
}
.mm-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.mm-cal-head {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #888;
  text-align: center;
  padding: 6px 0;
}
.mm-cal-head--we { color: var(--mm-theme-accent, #c4913f); }

.mm-cal-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 78px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #ececec;
  background: #fafafa;
  color: #222;
  text-decoration: none;
  transition: background-color .12s ease, transform .12s ease;
}
.mm-cal-cell:hover { background: #f1f1f1; }
.mm-cal-cell--blank { background: transparent; border-color: transparent; }
.mm-cal-cell--has {
  background: #fff;
  border-color: #d6d6d6;
}
.mm-cal-cell--has:hover { transform: translateY(-1px); }
.mm-cal-cell--today {
  outline: 2px solid var(--mm-theme-accent, #c4913f);
  outline-offset: 1px;
}
.mm-cal-cell__num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}
.mm-cal-cell__count {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--mm-theme-primary, #1a1a1a);
  color: #fff;
  padding: 1px 7px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}
.mm-cal-cell__dots {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-top: 6px;
}
.mm-cal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #999;
}
.mm-cal-dot--festas,
.mm-cal-dot--festa     { background: #C4913F; }
.mm-cal-dot--concerts  { background: #2A6F97; }
.mm-cal-dot--festivals { background: #B3446C; }
.mm-cal-dot--family    { background: #4F9D55; }
.mm-cal-dot--food,
.mm-cal-dot--food-and-wine,
.mm-cal-dot--food-wine { background: #D26F1E; }
.mm-cal-dot--nightlife { background: #6A4C93; }
.mm-cal-dot--arts      { background: #8E5A7B; }
.mm-cal-dot--free      { background: #2E7D32; }
.mm-cal-dot--outdoor   { background: #517B58; }
.mm-cal-dot--sports    { background: #1976D2; }
.mm-cal-dot--wellness  { background: #5F9EA0; }

.mm-cal-map-wrap {
  position: sticky;
  top: 90px;
  background: var(--mm-card-bg, #fff);
  border: 1px solid var(--mm-card-line, #e5e5e5);
  border-radius: 14px;
  padding: 12px;
}
.mm-cal-map {
  width: 100%;
  height: 460px;
  border-radius: 10px;
  background: #f1f4f6;
}
.mm-cal-map__legend {
  margin: 8px 0 0;
  font-size: 1.2rem;
  color: #777;
}

.mm-cal-day { margin: 28px 0 8px; }
.mm-cal-day__h {
  font-size: 1.9rem;
  margin: 18px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e5e5e5;
}
.mm-cal-day__wd {
  font-size: 1.4rem;
  font-weight: 500;
  color: #777;
  margin-left: 8px;
}


.mm-cal-days-bar {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.mm-cal-days-bar h2 {
  transition: opacity .15s ease;
}
.mm-cal-days-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff8ed;
  border: 1px solid var(--mm-theme-accent, #c4913f);
  font-size: 1.35rem;
  color: var(--mm-theme-primary, #1a1a1a);
}
.mm-cal-days-filter strong { color: var(--mm-theme-accent, #c4913f); }
.mm-cal-days-clear {
  color: var(--mm-theme-accent, #c4913f);
  font-weight: 700;
  text-decoration: none;
}
.mm-cal-days-clear:hover { text-decoration: underline; }


.mm-cal-cell--selected {
  background: var(--mm-theme-accent, #c4913f) !important;
  border-color: var(--mm-theme-accent, #c4913f) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.mm-cal-cell--selected .mm-cal-cell__num,
.mm-cal-cell--selected .mm-cal-cell__count {
  color: #fff !important;
}
.mm-cal-cell--selected .mm-cal-cell__count {
  background: rgba(0,0,0,0.18) !important;
}


.meta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px 24px;
  margin: 18px 0 22px;
  padding: 16px 18px;
  background: var(--mm-card-bg, #fff);
  border: 1px solid var(--mm-card-line, #e5e5e5);
  border-radius: 12px;
}
.meta-row .item { display: flex; flex-direction: column; min-width: 0; }
.meta-row .label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #888;
  font-weight: 600;
  margin-bottom: 4px;
}
.meta-row .value {
  font-size: 1.55rem;
  font-weight: 600;
  color: #222;
  line-height: 1.35;
  word-break: break-word;
}
.meta-row .value.free { color: #2E7D32; }
.meta-row .value a {
  color: var(--mm-theme-primary, #1a1a1a);
  text-decoration: underline;
}
.meta-row .value a:hover { color: var(--mm-theme-accent, #c4913f); }


.mm-cal-dot--festivals-music     { background: #B3446C; }
.mm-cal-dot--festivals-classical { background: #6A4C93; }
.mm-cal-dot--festivals-dance     { background: #D26F1E; }
.mm-cal-dot--festivals-cultural  { background: #5A7D5F; }


.mm-footer-months {
  background: #1f1f23;
  color: #e9e9ec;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 1.4rem;
}
.mm-footer-months__label {
  display: inline-block;
  margin-right: 12px;
  color: #b6b6bb;
  font-weight: 600;
}
.mm-footer-months__list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  vertical-align: middle;
}
.mm-footer-months__list a {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #e9e9ec;
  text-decoration: none;
  transition: background-color .12s ease, color .12s ease;
  white-space: nowrap;
}
.mm-footer-months__list a:hover,
.mm-footer-months__list a:focus {
  background: var(--mm-theme-accent, #c4913f);
  color: #1f1f23;
}
.mm-footer-months__cal {
  background: var(--mm-theme-accent, #c4913f) !important;
  color: #1f1f23 !important;
  font-weight: 700;
}
@media (max-width: 720px) {
  .mm-footer-months__label { display: block; margin-bottom: 8px; }
  .mm-footer-months__list { display: flex; }
}


.mm-qa-totals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  padding: 0;
  margin: 12px 0 24px;
}
.mm-qa-totals li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mm-qa-totals strong { font-size: 1.7rem; }
.mm-qa-totals .mm-qa-lab { color: #777; font-size: 1.3rem; }

.mm-qa-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .03em;
  background: #ddd;
  color: #222;
  margin: 1px 2px;
}
.mm-qa-pill--org    { background: #c4913f; color: #fff; }
.mm-qa-pill--orgurl { background: #b3446c; color: #fff; }
.mm-qa-pill--venue  { background: #6a4c93; color: #fff; }
.mm-qa-pill--short  { background: #d26f1e; color: #fff; }
.mm-qa-pill--thin   { background: #d26f1e; color: #fff; }
.mm-qa-pill--stock  { background: #5f9ea0; color: #fff; }
.mm-qa-pill--allcap { background: #444; color: #fff; }
.mm-qa-pill--tom    { background: #c0392b; color: #fff; }
.mm-qa-pill--plac   { background: #c0392b; color: #fff; }
.mm-qa-pill--note   { background: #999; color: #fff; }

.mm-qa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
}
.mm-qa-table th,
.mm-qa-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #ececec;
  vertical-align: top;
  text-align: left;
}
.mm-qa-table th {
  background: #f7f7f7;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: .04em;
}
.mm-qa-row--clean { background: #f3faf3; }
.mm-qa-row--dirty:hover { background: #fff7ed; }
.mm-qa-table code {
  background: #f0f0f0;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 1.15rem;
}


.browse--regions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.mm-region-card {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--mm-card-line, #e5e5e5);
  background: var(--mm-card-bg, #fff);
  color: inherit;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
  position: relative;
  overflow: hidden;
}
.mm-region-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.mm-region-card__name {
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.mm-region-card__towns {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.45;
  margin-bottom: 12px;
}
.mm-region-card__count {
  margin-top: auto;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mm-theme-accent, #c4913f);
}
.mm-region-card--north  { border-top: 4px solid #2A6F97; }
.mm-region-card--south  { border-top: 4px solid #D26F1E; }
.mm-region-card--east   { border-top: 4px solid #B3446C; }
.mm-region-card--west   { border-top: 4px solid #6A4C93; }
.mm-region-card--gozo   { border-top: 4px solid #5A7D5F; }


.mm-region-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.mm-region-nav a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--mm-card-bg, #fff);
  border: 1px solid var(--mm-card-line, #e5e5e5);
  color: var(--mm-theme-primary, #1a1a1a);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
}
.mm-region-nav a.active {
  background: var(--mm-theme-accent, #c4913f);
  color: #fff;
  border-color: transparent;
}


.mm-submit-map {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  border: 1px solid var(--mm-card-line, #e5e5e5);
  background: #f1f4f6;
  margin-top: 4px;
}
.mm-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--mm-theme-accent, #c4913f);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}
.mm-link-btn:hover { color: var(--mm-theme-primary, #1a1a1a); }
.mm-map-coords {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.2rem;
  color: #666;
}
.mm-field .opt {
  font-weight: 400;
  color: #888;
  font-size: 1.2rem;
}


.mm-suggest-cta-section { margin: 36px 0 48px; }
.mm-suggest-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 1fr);
  gap: 32px;
  align-items: center;
  padding: 32px 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f1f23 0%, #2a2a30 100%);
  color: #f3f3f5;
  box-shadow: 0 6px 22px rgba(0,0,0,.08);
}
.mm-suggest-cta__copy h2 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 2.2rem;
  line-height: 1.18;
}
.mm-suggest-cta__copy p {
  color: #d8d8dc;
  font-size: 1.5rem;
  line-height: 1.55;
  margin: 0 0 14px;
}
.mm-suggest-cta__points {
  margin: 0;
  padding: 0 0 0 18px;
  color: #c8c8cc;
  font-size: 1.35rem;
}
.mm-suggest-cta__points li { margin: 6px 0; }

.mm-suggest-cta__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}
.mm-suggest-cta__btn {
  display: inline-block;
  padding: 16px 24px;
  text-align: center;
  background: var(--mm-theme-accent, #c4913f);
  color: #1f1f23;
  font-weight: 800;
  font-size: 1.65rem;
  text-decoration: none;
  border-radius: 12px;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 4px 14px rgba(196, 145, 63, .35);
}
.mm-suggest-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(196, 145, 63, .45);
  color: #1f1f23;
}
.mm-suggest-cta__hint {
  text-align: center;
  color: #b6b6bb;
  font-size: 1.2rem;
  margin: 0;
}

@media (max-width: 720px) {
  .mm-suggest-cta {
    grid-template-columns: 1fr;
    padding: 22px 22px;
    gap: 18px;
  }
  .mm-suggest-cta__copy h2 { font-size: 1.9rem; }
}


@media (max-width: 720px) {

  .meta-row {
    grid-template-columns: 1fr;
    gap: 10px 0;
    padding: 12px 14px;
  }
  .meta-row .value { font-size: 1.45rem; }


  .mm-region-card { padding: 14px 16px; }
  .mm-region-card__name  { font-size: 1.55rem; }
  .mm-region-card__towns { font-size: 1.2rem; margin-bottom: 8px; }


  .mm-cal-map-wrap {
    position: static;
    margin-top: 14px;
  }
  .mm-cal-map { height: 320px; }
}

@media (max-width: 600px) {

  .mm-cal-grid { gap: 4px; }
  .mm-cal-cell {
    min-height: 56px;
    padding: 5px 4px;
  }
  .mm-cal-cell__num { font-size: 1.15rem; }
  .mm-cal-cell__count {
    top: 3px; right: 4px;
    font-size: 0.95rem;
    padding: 0px 5px;
    min-width: 16px;
  }

  .mm-cal-cell__dots { display: none; }
  .mm-cal-head { font-size: 1.05rem; padding: 4px 0; }


  .mm-qa-table th, .mm-qa-table td { padding: 6px 6px; font-size: 1.15rem; }


  .mm-submit-map { height: 260px; }


  .mm-footer-months__list a { padding: 7px 12px; }
}

@media (max-width: 480px) {

  .mm-region-card__count { font-size: 1.05rem; }

  .mm-page-hero h1 { font-size: 2.2rem; line-height: 1.18; }
  .mm-page-hero .lead { font-size: 1.45rem; }

  .mm-cal-nav { padding: 4px 6px; gap: 6px; }
  .mm-cal-nav__btn { padding: 5px 10px; font-size: 1.25rem; }
  .mm-cal-nav__label { font-size: 1.35rem; }

  .meta-row { padding: 10px 12px; }
}

@media (max-width: 380px) {

  .mm-cal-cell { min-height: 48px; padding: 4px 3px; }
  .mm-cal-cell__num { font-size: 1.05rem; }

  .mm-suggest-fab__label { display: none; }

  .mm-footer-months__label { display: none; }
}


html, body { overflow-x: hidden; }
.mm-events-main img,
.mm-events-main iframe { max-width: 100%; height: auto; }





/* Weather widget — sits inside the dark filter bar, to the RIGHT of the
   three chip rows. Flex container so widget + chips share the row cleanly. */
.mm-filter__chiprow {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 4px;
}
.mm-filter__chipcol {
  flex: 1 1 auto;
  min-width: 0;
}

.mm-weather {
  flex: 0 0 240px;
  align-self: stretch;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  line-height: 1.3;
}
.mm-weather__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.mm-weather__title {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  /* Cap the title to one line so it doesn't push the row taller */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}
.mm-weather__now {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.85);
}
.mm-weather__now-icon svg,
.mm-weather__day-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  color: #f5c46a;
}
.mm-weather__now-temp {
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}
.mm-weather__days {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mm-weather__day {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
}
.mm-weather__day:last-child { border-bottom: 0; }
.mm-weather__day-name {
  color: rgba(255, 255, 255, 0.80);
  font-weight: 500;
}
.mm-weather__day-temps {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #fff;
}
.mm-weather__day-temps small {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92em;
}
.mm-weather__day-rain {
  font-size: 0.92em;
  color: #9cc4f0;
  padding: 0 5px;
  background: rgba(54,118,178,0.20);
  border-radius: 3px;
  font-variant-numeric: tabular-nums;
}
.mm-weather__credit {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.42);
  text-align: right;
}
.mm-weather__credit a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: underline;
}

@media (max-width: 760px) {
  /* On narrow screens, stack: chips first (full width), weather below. */
  .mm-filter__chiprow { flex-direction: column; }
  .mm-weather { flex: 1 1 auto; width: 100%; }
}

/* ------------------------------------------------------------------ */
/*  Month nav strip on /events/month/<name>/ (and category/town pages */
/*  if they ever grow one) -- render as button chips, not plain text. */
/* ------------------------------------------------------------------ */
.month-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.month-nav a {
  display: inline-block;
  padding: 6px 14px;
  background: #f6f4ee;
  color: #463320;
  border: 1px solid #d8cbab;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.3;
  transition: background-color 120ms ease, border-color 120ms ease;
}
.month-nav a:hover {
  background: #FFF8ED;
  border-color: #C4913F;
  color: #463320;
}
.month-nav a.active {
  background: #C4913F;
  border-color: #C4913F;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 480px) {
  .month-nav a { padding: 5px 10px; font-size: 1.15rem; }
}

/* ------------------------------------------------------------------ */
/*  Need-to-know fallback list on thin event pages                     */
/* ------------------------------------------------------------------ */
.mm-need-to-know {
  list-style: none;
  margin: 8px 0 24px;
  padding: 0;
}
.mm-need-to-know li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px dotted #ddd;
  line-height: 1.5;
}
.mm-need-to-know li:last-child { border-bottom: 0; }
.mm-need-to-know li::before {
  content: "›";
  position: absolute;
  left: 8px;
  top: 8px;
  color: #C4913F;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1;
}
.mm-need-to-know a { color: #C4913F; }

/* ------------------------------------------------------------------ */
/*  Inline image credit caption under hero photos                       */
/* ------------------------------------------------------------------ */
.hero-image__credit {
  margin: 6px 0 0;
  padding: 4px 8px;
  font-size: 1.05rem;
  color: #6b5934;
  font-style: italic;
  background: rgba(255, 248, 237, 0.7);
  border-left: 3px solid #C4913F;
}

/* ------------------------------------------------------------------ */
/*  Three-row filter chip layout (time / tags / months)                */
/* ------------------------------------------------------------------ */
.mm-filter__chips {
  align-items: center;
  margin-top: 8px;
  padding: 4px 0;
}
.mm-filter__chips + .mm-filter__chips {
  border-top: 1px dotted rgba(255,255,255,0.08);
}
.mm-filter__chips-label {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 56px;
}
/* Time row — solid accent on hover to signal these change *what* you see */
.mm-filter__chips--time a:hover {
  background: var(--mm-theme-accent);
  border-color: var(--mm-theme-accent);
}
/* Tags row — slight outline so it reads as a category badge */
.mm-filter__chips--tags a {
  background: rgba(196,145,63,0.10);
  border-color: rgba(196,145,63,0.45);
}
.mm-filter__chips--tags a:hover {
  background: #C4913F;
  border-color: #C4913F;
  color: #fff;
}
/* Months row — neutral, less visually dominant */
.mm-filter__chips--months a {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  font-weight: 500;
}

@media (max-width: 640px) {
  .mm-filter__chips-label {
    display: block;
    margin: 4px 0 4px;
    min-width: 0;
  }
}

/* ------------------------------------------------------------------ */
/*  Multi-link block (Tickets / Facebook / Website / Map / etc.)        */
/* ------------------------------------------------------------------ */
.mm-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 24px;
}
.mm-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #d8cbab;
  border-radius: 8px;
  background: #fff;
  color: #463320;
  font-size: 1.3rem;
  text-decoration: none;
  transition: background-color 120ms ease, border-color 120ms ease, transform 80ms ease;
}
.mm-link:hover {
  border-color: #C4913F;
  background: #FFF8ED;
}
.mm-link:active { transform: translateY(1px); }
.mm-link__label { font-weight: 500; }
.mm-link__arrow { color: #C4913F; font-weight: 700; }

/* Tickets — primary visual weight */
.mm-link--tickets {
  background: #C4913F;
  border-color: #C4913F;
  color: #fff;
}
.mm-link--tickets .mm-link__arrow { color: #fff; }
.mm-link--tickets:hover {
  background: #a87a30;
  border-color: #a87a30;
}

/* Social (Facebook etc.) — distinct so visitors know it's a social link */
.mm-link--social { border-color: #4267B2; }
.mm-link--social .mm-link__arrow { color: #4267B2; }
.mm-link--social:hover { background: #eef2fa; border-color: #4267B2; }

/* Map — subtle, deprioritised */
.mm-link--map      { border-color: #bcd2c2; }
.mm-link--map .mm-link__arrow { color: #4a8c69; }
.mm-link--map:hover { background: #eef7f1; }
