/*
  Vavřinecká metlička – optimalizovaný hlavní CSS soubor
  Sloučeno z původního main.css. Duplicitní selektory byly spojeny podle pozdější platné hodnoty v kaskádě.
  Media queries jsou ponechány odděleně v sekci responsive.
*/

/* =========================================================
   variables/base
   ========================================================= */
:root {
  --vm-color-bg: #303030;
  --vm-color-bg-soft: #383838;
  --vm-color-surface: #3b3b3b;
  --vm-color-surface-light: #444444;
  --vm-color-text: #f4f4f4;
  --vm-color-copy: #e2e2e2;
  --vm-color-muted: #c7c7c7;
  --vm-color-muted-dark: #9f9f9f;
  --vm-color-border: rgba(255, 255, 255, 0.13);
  --vm-color-accent: #7ac943;
  --vm-color-accent-dark: #5ea832;
  --vm-color-accent-soft: rgba(122, 201, 67, 0.14);
  --vm-radius-small: 10px;
  --vm-radius-medium: 16px;
  --vm-radius-large: 26px;
  --vm-radius-pill: 999px;
  --vm-shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.24);
  --vm-shadow-card: 0 12px 30px rgba(0, 0, 0, 0.18);
  --vm-heading-weight: 600;
  --vm-page-title-size: clamp(2.2rem, 5vw, 4.2rem);
	--vm-container-wide: 1360px;
	--vm-container-page: 1360px;
	--vm-container-gutter: 48px;
	--vm-container-gutter-mobile: 24px;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/*body {
  color: var(--vm-color-text);
  background: var(--vm-color-bg);
}*/

body {
  color: var(--vm-color-text);
  background:
    linear-gradient(rgba(32, 32, 32, 0.72), rgba(32, 32, 32, 0.72)),
    url("../images/page-bg.png"),
    linear-gradient(135deg, #202020 0%, #303030 48%, #3a3a3a 100%);
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, 620px auto, cover;
  background-position: top left, top left, center;
  background-attachment: scroll, scroll, scroll;
}

a {
  color: var(--vm-color-accent);
}

a:hover {
  color: var(--vm-color-accent-dark);
}

::selection {
  color: #1f1f1f;
  background: var(--vm-color-accent);
}

.vm-section-header {
  margin-bottom: 28px;
}

.vm-section-kicker {
  margin: 0 0 8px 4px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vm-color-accent) !important;
}

.vm-section-title {
  margin-left: 8px;
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--vm-color-text);
}

.vm-empty-state {
  padding: 28px;
  border: 1px solid var(--vm-color-border);
  border-radius: var(--vm-radius-large);
  background: var(--vm-color-bg-soft);
  color: var(--vm-color-text);
}

.vm-empty-state p {
  margin: 0;
}

/* =========================================================
   layout
   ========================================================= */
/* =========================================================
   header/footer
   ========================================================= */
.vm-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(43, 43, 43, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-bar .vm-site-header {
  top: 32px;
}

.vm-site-header__inner {
  width: min(var(--vm-container-page), calc(100% - var(--vm-container-gutter)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.vm-site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--vm-color-text);
  text-decoration: none;
  white-space: nowrap;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.vm-site-header__logo {
  display: block;
  width: auto;
  height: clamp(34px, 4.2vw, 42px);
  max-width: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.vm-site-header__brand:hover {
  color: var(--vm-color-accent);
}

.vm-site-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 4px;
}

.vm-site-nav__list li {
  margin: 0;
  padding: 0;
}

.vm-site-nav__list a {
  display: inline-flex;
  align-items: center;
  border-radius: var(--vm-radius-pill);
  text-decoration: none;
  min-height: 40px;
  padding: 8px 13px;
  color: var(--vm-color-text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.vm-site-nav__list a:hover {
  color: #1f1f1f;
  background: var(--vm-color-accent);
}

.vm-site-nav__list .current-menu-item > a {
  color: #1f1f1f;
  background: var(--vm-color-accent);
}

.vm-site-nav__list .current_page_item > a {
  color: #1f1f1f;
  background: var(--vm-color-accent);
}

.vm-site-nav-toggle,
.vm-site-nav-overlay {
  display: none;
}

.vm-site-nav-toggle {
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--vm-radius-pill);
  color: var(--vm-color-text);
  background:
    radial-gradient(circle at top left, var(--vm-color-accent-soft), transparent 52%),
    rgba(36, 36, 36, 0.92);
  cursor: pointer;
}

.vm-site-nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.vm-site-nav-toggle:hover,
.vm-site-nav-toggle:focus-visible {
  color: #1f1f1f;
  background: var(--vm-color-accent);
}

.vm-site-nav-toggle[aria-expanded="true"] .vm-site-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vm-site-nav-toggle[aria-expanded="true"] .vm-site-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.vm-site-nav-toggle[aria-expanded="true"] .vm-site-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.vm-site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--vm-color-border);
  background: #292929;
}

.vm-site-footer__inner {
  width: min(var(--vm-container-page), calc(100% - var(--vm-container-gutter)));
  margin: 0 auto;
  display: grid;
  gap: 28px;
  padding: 34px 0 28px;
  color: var(--vm-color-muted);
}

.vm-site-footer__inner p {
  margin: 0;
}

.vm-site-footer__widgets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.vm-site-footer__column {
  min-width: 0;
}

.vm-footer-widget {
  color: var(--vm-color-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.vm-footer-widget + .vm-footer-widget {
  margin-top: 22px;
}

.vm-footer-widget__title {
  margin: 0 0 12px;
  color: var(--vm-color-text);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.vm-footer-widget a {
  color: var(--vm-color-text);
  font-weight: 700;
  text-decoration: none;
}

.vm-footer-widget a:hover {
  color: var(--vm-color-accent);
}

.vm-footer-widget ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-items: end;
}

.vm-site-footer__bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--vm-color-muted-dark);
  font-size: 0.92rem;
}

.vm-site-footer__bottom a {
  color: var(--vm-color-text);
  font-weight: 700;
  text-decoration: none;
}

.vm-site-footer__bottom a:hover {
  color: var(--vm-color-accent);
}

.vm-site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.vm-site-footer__nav a {
  color: var(--vm-color-text);
  font-weight: 700;
  text-decoration: none;
}

.vm-site-footer__nav a:hover {
  color: var(--vm-color-accent);
}

/* =========================================================
   buttons
   ========================================================= */
.vm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: var(--vm-radius-pill);
  font-size: 0.95rem;
  font-weight: 900;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.vm-button--primary {
  border: 1px solid var(--vm-color-accent);
  color: #1f1f1f;
  background: var(--vm-color-accent);
  box-shadow: 0 10px 28px rgba(122, 201, 67, 0.18);
}

.vm-button--primary:hover {
  border-color: var(--vm-color-accent-dark);
  background: var(--vm-color-accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.vm-button--secondary {
  border: 1px solid var(--vm-color-border);
  color: var(--vm-color-text);
  background: transparent;
}

.vm-button--secondary:hover {
  border-color: var(--vm-color-accent);
  color: var(--vm-color-accent);
  transform: translateY(-1px);
}

/* =========================================================
   homepage
   ========================================================= */
.vm-front-page {
  overflow-x: hidden;
  --vm-home-container: var(--vm-container-page);
  --vm-home-gutter: var(--vm-container-gutter);
}

.vm-hero {
  display: grid;
  margin: 38px auto 64px;
  margin-top: 36px;
  margin-bottom: 58px;
  width: min(var(--vm-container-wide), calc(100% - 48px));
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
  align-items: stretch;
  gap: 24px;
}

.vm-hero__content {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  box-shadow: var(--vm-shadow-soft);
  border: 1px solid var(--vm-color-border);
  background:
    radial-gradient(circle at 12% 18%, rgba(122, 201, 67, 0.20), transparent 28%),
    linear-gradient(135deg, rgba(20, 20, 20, 0.92), rgba(38, 38, 38, 0.78)),
    var(--vm-hero-main-image);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, cover;
  background-position: center center;
  border-radius: var(--vm-radius-large);
  justify-content: center;
  padding: clamp(34px, 4vw, 54px);
  min-height: 440px;
  background-clip: padding-box;
}

.vm-hero__content .vm-section-kicker {
  color: var(--vm-color-accent);
}

.vm-hero__title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.75rem, 4.35vw, 4.6rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.vm-hero__text {
  margin: 24px 0 0;
  color: var(--vm-color-copy);
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.65;
}

.vm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  max-width: 100%;
}

.vm-hero__panel {
  box-shadow: var(--vm-shadow-soft);
  align-items: stretch;
  min-height: 440px;
  position: relative;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--vm-color-border);
  border-radius: var(--vm-radius-large);
  background: #1f1f1f;
  background-clip: padding-box;
}

.vm-hero__panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: var(--vm-hero-side-image) center center / cover no-repeat;
}

.vm-hero__panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.32) 0%, rgba(12, 12, 12, 0.52) 42%, rgba(12, 12, 12, 0.96) 100%);
}

.vm-hero__panel-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3vw, 42px);
  box-sizing: border-box;
}

.vm-hero__panel-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: var(--vm-radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
  max-width: 100%;
  color: #1f1f1f;
  background: var(--vm-color-accent);
}

.vm-hero__panel-inner strong {
  display: block;
  color: #ffffff;
  max-width: 100%;
  font-size: clamp(2rem, 2.9vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.vm-hero__panel-inner p {
  margin: 14px 0 0;
  line-height: 1.65;
  font-size: 1rem;
  max-width: 100%;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.48);
}

.vm-hero__panel-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.vm-hero__panel-link:hover {
  color: inherit;
  transform: translateY(-2px);
  border-color: rgba(122, 201, 67, 0.42);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
}

.vm-hero__panel-link:hover .vm-hero__panel-label {
  background: var(--vm-color-accent-dark);
  color: #ffffff;
}

.vm-hero__panel-link:focus-visible {
  outline: 3px solid var(--vm-color-accent);
  outline-offset: 4px;
}

.vm-home-section {
  margin: 72px auto;
  width: min(var(--vm-container-wide), calc(100% - 48px));
}

.vm-home-section__header {
  margin-bottom: 24px;
}

.vm-home-about {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 0.65fr);
  gap: 36px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--vm-color-border);
  border-radius: var(--vm-radius-large);
  background: var(--vm-color-surface);
  box-shadow: var(--vm-shadow-card);
}

.vm-home-about .vm-section-kicker {
  color: var(--vm-color-accent);
  margin: 0 0 8px 4px;
  font-size: 0.95rem;
  font-weight: 700;
}

.vm-home-about__content {
  color: var(--vm-color-copy);
  font-size: 1.05rem;
  line-height: 1.75;
}

.vm-home-about__content > *:first-child {
  margin-top: 0;
}

.vm-home-about__content > *:last-child {
  margin-bottom: 0;
}

.vm-facebook-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--vm-radius-large);
  border: 1px solid var(--vm-color-border);
  color: var(--vm-color-text);
  background: radial-gradient(circle at top left, var(--vm-color-accent-soft), transparent 34%),
        linear-gradient(135deg, #292929, var(--vm-color-surface));
  box-shadow: var(--vm-shadow-card);
}

.vm-facebook-box .vm-section-title {
  color: var(--vm-color-text);
}

.vm-facebook-box .vm-section-kicker {
  color: var(--vm-color-accent);
  margin: 0 0 8px 4px;
  font-size: 0.95rem;
  font-weight: 700;
}

.vm-facebook-box p {
  max-width: 680px;
  margin: 14px 0 0;
  line-height: 1.65;
  color: var(--vm-color-copy);
}

.vm-facebook-box .vm-button--primary {
  flex-shrink: 0;
}

.vm-front-page .vm-hero,
.vm-front-page .vm-events-section,
.vm-front-page .vm-home-section {
  width: min(var(--vm-home-container), calc(100% - var(--vm-home-gutter)));
  max-width: var(--vm-home-container);
  margin-left: auto;
  margin-right: auto;
}

/* Homepage – nové pořadí a rozložení spodních sekcí */

.vm-home-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.vm-home-info-card {
  width: 100%;
  min-height: 360px;
  margin: 0;
  box-sizing: border-box;
}

.vm-home-info-grid .vm-home-about {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vm-home-info-grid .vm-home-about .vm-home-section__header {
  margin-bottom: 0;
}

.vm-home-info-grid .vm-home-about__content {
  max-width: 100%;
}

.vm-home-info-grid .vm-facebook-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.vm-home-emil {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  min-height: 420px;
  margin-top: 64px;
  margin-bottom: 64px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--vm-radius-large);
  background:
    radial-gradient(circle at 16% 22%, rgba(122, 201, 67, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(48, 48, 48, 0.78));
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.28);
}

.vm-home-emil::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background-image: url("../images/pomoc-emil.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.vm-home-emil::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 22%, rgba(122, 201, 67, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(18, 18, 18, 0.76), rgba(28, 28, 28, 0.88) 48%, rgba(28, 28, 28, 0.94));
}

.vm-home-emil__logo-panel {
  display: grid;
  place-items: center;
  min-height: 260px;
}

.vm-home-emil__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vm-home-emil__logo {
  display: block;
  width: min(320px, 90%);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.36));
}

.vm-home-emil__content {
  max-width: 760px;
}

.vm-home-emil .vm-section-kicker {
  color: var(--vm-color-accent);
}

.vm-home-emil .vm-section-title {
  max-width: 620px;
  margin-left: 0;
  color: var(--vm-color-text);
  font-size: clamp(2rem, 3.3vw, 3.3rem);
}

.vm-home-emil p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--vm-color-copy);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
}

/* =========================================================
   event cards
   ========================================================= */
.vm-upcoming-events {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.vm-upcoming-events__side {
  display: grid;
  grid-auto-rows: minmax(0, 1fr);
  gap: 18px;
}

.vm-upcoming-events__side .vm-event-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.vm-upcoming-events__side .vm-event-card__media {
  aspect-ratio: auto;
  height: clamp(118px, 10vw, 150px);
  min-height: 0;
}

.vm-upcoming-events__side .vm-event-card__content {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 16px 18px 18px;
}

.vm-upcoming-events__side .vm-event-card__meta {
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.vm-upcoming-events__side .vm-event-card__title {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.vm-upcoming-events__side .vm-event-card__text {
  display: -webkit-box;
  margin-bottom: 12px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.94rem;
  line-height: 1.45;
}

.vm-upcoming-events__side .vm-event-card__link {
  margin-top: auto;
}

.vm-upcoming-events__side .vm-event-card__date-badge {
  top: 12px;
  left: 12px;
  min-width: 74px;
  padding: 8px 10px;
}

.vm-upcoming-events__side .vm-event-card__date-day {
  font-size: 1.12rem;
}

.vm-upcoming-events__side .vm-event-card__date-month {
  font-size: 0.7rem;
}

.vm-upcoming-events__main .vm-event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vm-upcoming-events__main .vm-event-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vm-upcoming-events__main .vm-event-card__text {
  margin-bottom: 18px;
}

.vm-upcoming-events__main .vm-event-card__link {
  margin-top: auto;
}

.vm-upcoming-events .vm-event-card__link,
.vm-events-grid .vm-event-card__link,
.vm-events-featured-archive .vm-event-card__link,
.vm-galleries-section .vm-event-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: var(--vm-radius-pill);
  color: #1f1f1f;
  background: var(--vm-color-accent);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.vm-galleries-section .vm-event-card__link {
  margin-top: 24px;
}

.vm-upcoming-events .vm-event-card__link:hover,
.vm-events-grid .vm-event-card__link:hover,
.vm-events-featured-archive .vm-event-card__link:hover,
.vm-galleries-section .vm-event-card__link:hover {
  color: #1f1f1f;
  background: #8ee052;
  text-decoration: none;
  transform: translateY(-1px);
}

.vm-event-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--vm-radius-large);
  background:
    radial-gradient(circle at top left, var(--vm-color-accent-soft), transparent 34%),
    linear-gradient(145deg, rgba(58, 58, 58, 0.78), rgba(31, 31, 31, 0.70)),
    rgba(42, 42, 42, 0.58);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px) saturate(116%);
  -webkit-backdrop-filter: blur(16px) saturate(116%);
}

.vm-event-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: var(--vm-color-bg-soft);
  text-decoration: none;
}

.vm-event-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.35s ease;
}

.vm-event-card:hover .vm-event-card__image {
  transform: scale(1.035);
}

.vm-event-card--featured .vm-event-card__image {
  min-height: 0;
}

.vm-event-card--featured .vm-event-card__placeholder {
  min-height: 0;
}

.vm-event-card--compact {
  display: block;
  border-radius: var(--vm-radius-medium);
}

.vm-event-card--compact .vm-event-card__media {
  min-height: 0;
}

.vm-event-card--compact .vm-event-card__image {
  min-height: 0;
}

.vm-event-card--compact .vm-event-card__placeholder {
  min-height: 0;
}

.vm-event-card__placeholder {
  display: grid;
  aspect-ratio: 2 / 1;
  min-height: 0;
  place-items: center;
  padding: 24px;
  color: var(--vm-color-accent-dark);
  font-weight: 700;
  text-align: center;
  background:
    radial-gradient(circle at top left, var(--vm-color-accent-soft), transparent 36%),
    linear-gradient(135deg, rgba(34, 34, 34, 0.96), rgba(49, 49, 49, 0.9));
}

.vm-event-card--placeholder {
  border-style: dashed;
  background:
    radial-gradient(circle at top left, var(--vm-color-accent-soft), transparent 36%),
    linear-gradient(145deg, rgba(58, 58, 58, 0.72), rgba(31, 31, 31, 0.68)),
    rgba(42, 42, 42, 0.56);
}

.vm-event-card--placeholder .vm-event-card__media {
  background:
    radial-gradient(circle at 20% 20%, rgba(122, 201, 67, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(30, 30, 30, 0.92), rgba(43, 43, 43, 0.76));
}

.vm-event-card--placeholder .vm-event-card__placeholder {
  color: var(--vm-color-accent);
  background: transparent;
}

.vm-event-card--placeholder .vm-event-card__title {
  color: var(--vm-color-text);
}

.vm-event-card--placeholder .vm-event-card__text {
  margin-bottom: 0;
}

.vm-event-card__date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  gap: 3px;
  min-width: 86px;
  padding: 10px 12px;
  border-radius: 16px;
  color: #ffffff;
  background: rgba(31, 31, 31, 0.86);
  text-align: center;
  backdrop-filter: blur(8px);
}

.vm-event-card__date-day {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.vm-event-card__date-month {
  font-size: 0.78rem;
  font-weight: 600;
}

.vm-event-card__past-ribbon {
  display: none;
}

.vm-event-card__content {
  padding: 22px;
}

.vm-event-card--featured .vm-event-card__content {
  padding: 28px;
}

.vm-event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--vm-color-muted);
}

.vm-event-card__meta span {
  display: inline-flex;
  align-items: center;
}

.vm-event-card__meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 12px;
  border-radius: 999px;
  background: var(--vm-color-accent);
}

.vm-event-card__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.18;
  color: var(--vm-color-text);
}

.vm-event-card--featured .vm-event-card__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.vm-event-card__title a {
  text-decoration: none;
  color: var(--vm-color-text);
}

.vm-event-card__title a:hover {
  color: var(--vm-color-accent);
}

.vm-event-card__text {
  margin: 0 0 18px;
  line-height: 1.6;
  color: var(--vm-color-copy);
}

.vm-event-card__link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  color: var(--vm-color-accent);
}

.vm-event-card__link:hover {
  text-decoration: underline;
}

/* =========================================================
   events archive
   ========================================================= */
.vm-events-section {
  margin: 64px auto;
  width: min(var(--vm-container-wide), calc(100% - 48px));
}

.vm-events-archive {
  width: min(var(--vm-container-page), calc(100% - var(--vm-container-gutter)));
  margin: 64px auto;
}

.vm-events-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.vm-events-filter__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--vm-color-border);
  border-radius: 999px;
  color: var(--vm-color-text);
  background: var(--vm-color-surface);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.vm-events-filter__link:hover {
  border-color: var(--vm-color-accent);
  color: var(--vm-color-accent-dark);
}

.vm-events-filter__link.is-active {
  border-color: var(--vm-color-accent-dark);
  color: #ffffff;
  background: var(--vm-color-accent-dark);
}

.vm-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.vm-events-archive .vm-event-card__past-ribbon {
  position: absolute;
  top: 28px;
  right: -52px;
  z-index: 2;
  display: block;
  width: 210px;
  padding: 8px 12px;
  color: #ffffff;
  background: #c62828;
  box-shadow: 0 12px 28px rgba(105, 16, 16, 0.24);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(38deg);
}

.vm-events-archive .vm-event-card__title {
  font-weight: 900;
}

.vm-events-archive .vm-event-card__text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.94rem;
  line-height: 1.45;
}

.vm-events-grid .vm-event-card--compact {
  display: block;
}

.vm-events-grid .vm-event-card--compact .vm-event-card__image {
  min-height: 230px;
}

.vm-events-grid .vm-event-card--compact .vm-event-card__placeholder {
  min-height: 230px;
}

.vm-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.vm-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--vm-color-border);
  border-radius: 12px;
  color: var(--vm-color-text);
  background: var(--vm-color-surface);
  font-weight: 700;
  text-decoration: none;
}

.vm-pagination .page-numbers.current {
  border-color: var(--vm-color-accent-dark);
  color: #ffffff;
  background: var(--vm-color-accent-dark);
}

.vm-pagination a.page-numbers:hover {
  border-color: var(--vm-color-accent);
  color: var(--vm-color-accent-dark);
}

.vm-events-featured-archive {
  margin-bottom: 28px;
}

.vm-events-featured-archive .vm-event-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: stretch;
}

.vm-events-featured-archive .vm-event-card--featured .vm-event-card__media {
  min-height: 100%;
}

.vm-events-featured-archive .vm-event-card--featured .vm-event-card__image {
  min-height: 360px;
}

.vm-events-featured-archive .vm-event-card--featured .vm-event-card__placeholder {
  min-height: 360px;
}

.vm-events-featured-archive .vm-event-card--featured .vm-event-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================================================
   event detail
   ========================================================= */
.vm-event-detail {
  width: min(var(--vm-container-page), calc(100% - var(--vm-container-gutter)));
  margin: 48px auto 72px;
}

.vm-event-detail__article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--vm-radius-large);
  background:
    linear-gradient(145deg, rgba(61, 61, 61, 0.74), rgba(34, 34, 34, 0.68)),
    rgba(45, 45, 45, 0.56);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.vm-event-detail__hero {
  overflow: hidden;
  aspect-ratio: 2 / 1;
  border-radius: var(--vm-radius-medium);
  background: var(--vm-color-bg-soft);
}

.vm-event-detail__hero--mobile {
  display: none;
}

.vm-event-detail__image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.vm-event-detail__layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  gap: clamp(24px, 3.4vw, 40px);
  padding: 0 clamp(22px, 3.4vw, 40px) clamp(22px, 3.4vw, 40px);
}

.vm-event-detail__intro {
  display: grid;
  justify-items: center;
  padding: clamp(28px, 4vw, 48px) clamp(22px, 3.4vw, 40px) clamp(22px, 3vw, 34px);
  text-align: center;
}

.vm-event-detail__header {
  align-self: start;
}

.vm-event-detail__title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--vm-color-text);
}

.vm-event-detail__main {
  display: grid;
  gap: clamp(22px, 3vw, 32px);
  min-width: 0;
}

.vm-event-detail__meta {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.vm-event-detail__meta-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--vm-color-border);
  border-radius: 16px;
  background: #242424;
  text-align: center;
}

.vm-event-detail__meta-label {
  color: var(--vm-color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-event-detail__meta-value {
  color: var(--vm-color-text);
  font-size: 1.18rem;
  font-weight: 700;
}

.vm-event-detail__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 28px;
  margin: 0 auto 24px;
  color: var(--vm-color-accent);
  font-size: 0.86rem;
  line-height: 1;
  opacity: 0.9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.vm-event-detail__actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  max-width: 100%;
}

.vm-event-detail__actions .vm-button {
  width: 70%;
}

.vm-event-detail__charity {
  display: grid;
  gap: 10px;
}

.vm-event-detail__charity--mobile {
  display: none;
}

.vm-event-detail__charity-kicker {
  margin: 0;
  color: var(--vm-color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.vm-event-detail__charity-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: end;
  min-height: 150px;
  aspect-ratio: 2 / 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--vm-radius-medium);
  color: #ffffff;
  text-decoration: none;
  background: #1f1f1f;
  background-clip: padding-box;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.vm-event-detail__charity-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--vm-charity-image) center center / cover no-repeat;
}

.vm-event-detail__charity-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72)),
    rgba(0, 0, 0, 0.22);
  transition: background 0.2s ease;
}

.vm-event-detail__charity-link span {
  display: block;
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.vm-event-detail__charity-link:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.vm-event-detail__charity-link:hover::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.62)),
    rgba(0, 0, 0, 0.14);
}

.vm-event-detail__content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--vm-color-copy);
}

.vm-event-detail__content > *:first-child {
  margin-top: 0;
}

.vm-event-detail__content > *:last-child {
  margin-bottom: 0;
}

.vm-event-detail__content p {
  margin: 0 0 1.2em;
}

.vm-event-detail__content h2 {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.15;
}

.vm-event-detail__content h3 {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.15;
}

.vm-event-detail__content h4 {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.15;
}

.vm-event-detail__back {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.vm-event-detail__back .vm-button {
  border-color: var(--vm-color-accent);
  color: var(--vm-color-accent);
  background: #242424;
}

.vm-event-detail__back .vm-button:hover {
  color: #1f1f1f;
  background: var(--vm-color-accent);
}

/* Homepage – sponzoři jako velký ohraničený panel */

.vm-home-sponsors {
  display: grid;
  gap: 30px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--vm-radius-large);
  background:
    radial-gradient(circle at top left, var(--vm-color-accent-soft), transparent 34%),
    linear-gradient(145deg, rgba(58, 58, 58, 0.78), rgba(31, 31, 31, 0.70)),
    rgba(42, 42, 42, 0.58);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px) saturate(116%);
  -webkit-backdrop-filter: blur(16px) saturate(116%);
}

.vm-home-sponsors-combined {
  gap: clamp(24px, 3vw, 32px);
}

.vm-home-sponsors__group {
  display: grid;
  gap: 18px;
}

.vm-home-sponsors-combined .vm-home-section__header {
  text-align: center;
}

.vm-home-sponsors-combined .vm-section-kicker,
.vm-home-sponsors-combined .vm-section-title {
  margin-left: 0;
}

.vm-home-sponsors .vm-home-section__header {
  margin-bottom: 0;
}

.vm-sponsors-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
}

.vm-sponsor-card {
  width: 100%;
  min-width: 0;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--vm-color-border);
  border-radius: var(--vm-radius-medium);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.vm-sponsor-card__link {
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.vm-sponsor-card__logo {
  display: block;
  width: auto;
  max-width: min(260px, 94%);
  max-height: 118px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.vm-sponsor-card:hover .vm-sponsor-card__logo {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* =========================================================
   galleries
   ========================================================= */
.vm-galleries-section {
  width: min(var(--vm-container-page), calc(100% - var(--vm-container-gutter)));
  margin: 64px auto 72px;
}

.vm-gallery-detail {
  width: min(var(--vm-container-page), calc(100% - var(--vm-container-gutter)));
  margin: 64px auto 72px;
}

.vm-galleries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.vm-galleries-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.vm-gallery-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--vm-radius-large);
  background:
    radial-gradient(circle at top left, var(--vm-color-accent-soft), transparent 34%),
    linear-gradient(145deg, rgba(58, 58, 58, 0.78), rgba(31, 31, 31, 0.70)),
    rgba(42, 42, 42, 0.58);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px) saturate(116%);
  -webkit-backdrop-filter: blur(16px) saturate(116%);
}

.vm-gallery-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: var(--vm-color-bg-soft);
  text-decoration: none;
}

.vm-gallery-card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.35s ease;
}

.vm-gallery-card__placeholder {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--vm-color-accent-dark);
  font-weight: 800;
  text-align: center;
  background:
    radial-gradient(circle at top left, var(--vm-color-accent-soft), transparent 36%),
    linear-gradient(135deg, rgba(34, 34, 34, 0.96), rgba(49, 49, 49, 0.9));
}

.vm-gallery-card:hover .vm-gallery-card__image {
  transform: scale(1.035);
}

.vm-gallery-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 22px;
}

.vm-gallery-card__date {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--vm-color-accent);
}

.vm-gallery-card__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.18;
  color: var(--vm-color-text);
}

.vm-gallery-card__title a {
  text-decoration: none;
  color: var(--vm-color-text);
}

.vm-gallery-card__title a:hover {
  color: var(--vm-color-accent);
}

.vm-gallery-card__text {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--vm-color-copy);
}

.vm-gallery-card__link {
  gap: 6px;
  white-space: nowrap;
}

.vm-galleries-section .vm-gallery-card__link {
  margin-top: auto;
}

.vm-gallery-card__content > :nth-last-child(2) {
  margin-bottom: 25px;
}

.vm-gallery-card__link span {
  display: inline-block;
}

.vm-gallery-detail__article {
  display: grid;
  gap: 34px;
}

.vm-gallery-detail__header {
  max-width: 840px;
}

.vm-gallery-detail__title {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.04;
  color: var(--vm-color-text);
}

.vm-gallery-detail__date {
  margin: 0 0 22px;
  font-weight: 800;
  color: var(--vm-color-accent);
}

.vm-gallery-detail__intro {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--vm-color-copy);
}

.vm-gallery-detail__intro > *:first-child {
  margin-top: 0;
}

.vm-gallery-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vm-gallery-detail__item {
  display: block;
  overflow: hidden;
  border-radius: var(--vm-radius-medium);
  background: var(--vm-color-bg-soft);
  aspect-ratio: 4 / 3;
}

.vm-gallery-detail__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.vm-gallery-detail__item:hover .vm-gallery-detail__image {
  transform: scale(1.04);
}

.vm-gallery-detail__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 8px;
}

.vm-gallery-detail__back {
  flex: 0 0 auto;
}

.vm-gallery-detail__zonerama {
  gap: 0.28em;
  margin-left: auto;
  min-width: min(100%, 560px);
  padding-inline: 30px;
  white-space: nowrap;
}

.vm-gallery-detail__zonerama span {
  display: inline;
}

/* =========================================================
   contact
   ========================================================= */
.vm-contact {
  display: grid;
  gap: 32px;
}

.vm-contact__intro {
  max-width: 820px;
}

.vm-contact__title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--vm-color-text);
}

.vm-contact__text {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--vm-color-copy);
}

.vm-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vm-contact-card {
  display: grid;
  grid-template-columns: clamp(68px, 20%, 116px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(16px, 2.6vw, 26px);
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--vm-color-border);
  border-radius: var(--vm-radius-large);
  background:
    radial-gradient(circle at top left, var(--vm-color-accent-soft), transparent 34%),
    linear-gradient(145deg, rgba(58, 58, 58, 0.78), rgba(31, 31, 31, 0.70)),
    rgba(42, 42, 42, 0.58);
  box-shadow: var(--vm-shadow-card);
}

.vm-contact-card__icon {
  grid-row: 1 / span 3;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  color: rgba(255, 255, 255, 0.92);
}

.vm-contact-card__icon svg {
  width: min(100%, 94px);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

.vm-contact-card__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vm-color-accent);
}

.vm-contact-card__value {
  color: var(--vm-color-text);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  word-break: break-word;
}

.vm-contact-card a.vm-contact-card__value:hover {
  color: var(--vm-color-accent-dark);
  text-decoration: underline;
}

.vm-contact-card__hint {
  margin: 0;
  line-height: 1.65;
  color: var(--vm-color-copy);
}

.vm-contact__note {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--vm-radius-large);
  border: 1px solid var(--vm-color-border);
  color: var(--vm-color-text);
  background:
    radial-gradient(circle at top left, rgba(118, 210, 66, 0.34), transparent 36%),
    linear-gradient(145deg, rgba(19, 19, 19, 0.78), rgba(24, 24, 24, 0.86)),
    url("../images/bg-fotogalerie-carousel.png") center / cover no-repeat;
  box-shadow: var(--vm-shadow-card);
  overflow: hidden;
}

.vm-contact__note h3 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--vm-color-text);
}

.vm-contact__note p {
  max-width: 780px;
  margin: 0;
  line-height: 1.75;
  color: var(--vm-color-copy);
}

.vm-contact__note .vm-section-kicker {
  color: var(--vm-color-accent);
}

.vm-contact__emil {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* =========================================================
   pages/404
   ========================================================= */
.vm-page {
  width: min(var(--vm-container-page), calc(100% - var(--vm-container-gutter)));
  max-width: var(--vm-container-page);
  margin: 56px auto 72px;
  box-sizing: border-box;
}


.vm-page__article {
  display: grid;
  gap: 32px;
}

.vm-page__header {
  max-width: 840px;
}

.vm-page__title {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--vm-color-text);
}

.vm-page__content {
  color: var(--vm-color-text);
}

.vm-page__content > *:first-child {
  margin-top: 0;
}

.vm-page__content > *:last-child {
  margin-bottom: 0;
}

.vm-page__content p {
  line-height: 1.75;
  color: var(--vm-color-copy);
}

.vm-error-page {
  width: min(var(--vm-container-page), calc(100% - var(--vm-container-gutter)));
  max-width: var(--vm-container-page);
  min-height: 56vh;
  margin: 56px auto 72px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

.vm-error-page__box {
  width: min(760px, 100%);
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--vm-color-border);
  border-radius: var(--vm-radius-large);
  text-align: center;
  background: var(--vm-color-surface);
  box-shadow: var(--vm-shadow-card);
}

.vm-error-page__title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--vm-color-text);
}

.vm-error-page__text {
  max-width: 560px;
  margin: 20px auto 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--vm-color-muted);
}

.vm-error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  max-width: 100%;
}

/* =========================================================
   responsive
   ========================================================= */
@media (max-width: 900px) {
  .vm-upcoming-events {
    grid-template-columns: 1fr;
  }

  .vm-event-card--compact {
    display: block;
  }

  .vm-hero {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .vm-home-about {
    grid-template-columns: 1fr;
  }

  .vm-hero__content {
    min-height: auto;
  }

  .vm-hero__panel {
    min-height: auto;
  }

  .vm-hero__panel-inner {
    padding: 28px;
    min-height: 260px;
    justify-content: flex-start;
  }

  .vm-sponsors-placeholder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vm-facebook-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .vm-hero__panel-inner strong {
    max-width: 100%;
  }

  .vm-hero__panel-inner p {
    max-width: 100%;
  }

	.vm-sponsors-grid {
	  grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vm-sponsor-card__logo {
	  max-width: min(200px, 90%);
	  max-height: 96px;
	}
}

@media (max-width: 640px) {
  .vm-events-section {
    margin: 42px auto;
   width: min(100% - var(--vm-container-gutter-mobile), var(--vm-container-page));
  }

  .vm-event-card--compact {
    display: block;
  }

  .vm-event-card--featured .vm-event-card__image {
    min-height: 240px;
  }

  .vm-event-card--featured .vm-event-card__placeholder {
    min-height: 240px;
  }

  .vm-event-card--compact .vm-event-card__image {
    min-height: 240px;
  }

  .vm-event-card--compact .vm-event-card__placeholder {
    min-height: 240px;
  }

  .vm-event-card__content {
    padding: 20px;
  }

  .vm-event-card--featured .vm-event-card__content {
    padding: 20px;
  }

  .vm-event-card__meta {
    display: grid;
    gap: 5px;
  }

  .vm-event-card__meta span:not(:last-child)::after {
    display: none;
  }

  .vm-upcoming-events .vm-event-card__meta,
  .vm-events-archive .vm-event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .vm-upcoming-events .vm-event-card__meta span:not(:last-child)::after,
  .vm-events-archive .vm-event-card__meta span:not(:last-child)::after {
    display: inline-block;
  }

  .vm-events-archive {
    width: min(100% - var(--vm-container-gutter-mobile), var(--vm-container-page));
    margin: 42px auto;
  }

  .vm-events-grid {
    grid-template-columns: 1fr;
  }

  .vm-events-filter {
    gap: 8px;
  }

  .vm-events-filter__link {
    flex: 1 1 auto;
  }

  .vm-event-detail {
    width: min(100% - var(--vm-container-gutter-mobile), var(--vm-container-page));
	margin: 32px auto 48px;
  }

  .vm-event-detail__image {
    max-height: 360px;
  }

  .vm-hero {
    margin: 24px auto 46px;
    width: min(100% - var(--vm-container-gutter-mobile), var(--vm-container-page));
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 46px;
  }

  .vm-home-section {
    margin: 48px auto;
    width: min(100% - var(--vm-container-gutter-mobile), var(--vm-container-page));
  }

  .vm-hero__actions {
    flex-direction: column;
    margin-top: 24px;
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .vm-hero__actions .vm-button {
    width: 100%;
  }

  .vm-sponsors-placeholder {
    grid-template-columns: 1fr;
  }

  .vm-galleries-section {
    width: min(100% - var(--vm-container-gutter-mobile), var(--vm-container-page));
    margin: 42px auto 56px;
  }

  .vm-gallery-detail {
    width: min(100% - var(--vm-container-gutter-mobile), var(--vm-container-page));
    margin: 42px auto 56px;
  }

  .vm-galleries-grid {
    grid-template-columns: 1fr;
  }

  .vm-gallery-detail__grid {
    grid-template-columns: 1fr;
  }

  .vm-gallery-detail__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .vm-gallery-detail__back {
    order: 2;
  }

  .vm-gallery-detail__zonerama {
    order: 1;
    margin-left: 0;
  }

  .vm-gallery-detail__zonerama span {
    display: block;
  }

  .vm-gallery-detail__zonerama {
    flex-direction: column;
    gap: 3px;
    line-height: 1.2;
    white-space: normal;
  }

  .vm-gallery-card__image {
    min-height: 0;
  }

  .vm-gallery-card__placeholder {
    min-height: 0;
  }

  .vm-gallery-card__link {
    gap: 5px;
    padding: 9px 13px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .vm-page {
    width: min(100% - var(--vm-container-gutter-mobile), var(--vm-container-page));
    margin: 40px auto 56px;
  }

  .vm-error-page {
    width: min(100% - var(--vm-container-gutter-mobile), var(--vm-container-page));
    margin: 40px auto 56px;
  }

  .vm-error-page__actions {
    flex-direction: column;
  }

  .vm-error-page__actions .vm-button {
    width: 100%;
  }

  .vm-hero__content {
    padding: 28px 22px;
  }

  .vm-hero__title {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1;
  }

  .vm-hero__text {
    margin-top: 18px;
    font-size: 1rem;
  }

  .vm-front-page .vm-hero__panel {
    display: none;
  }

  .vm-hero__panel-inner {
    min-height: auto;
    padding: 24px 22px;
  }

  .vm-hero__panel-inner strong {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .vm-front-page {
    --vm-home-gutter: 24px;
  }

.vm-sponsors-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 22px;
}

.vm-sponsor-card__logo {
  max-width: 150px;
  max-height: 76px;
}

  .vm-front-page .vm-hero,
  .vm-front-page .vm-events-section,
  .vm-front-page .vm-home-section {
    width: min(100% - var(--vm-container-gutter-mobile), var(--vm-container-page));
  }
}

@media (max-width: 980px) {
  .vm-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vm-galleries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vm-gallery-detail__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .vm-events-featured-archive .vm-event-card--featured {
    grid-template-columns: 1fr;
  }

  .vm-events-featured-archive .vm-event-card--featured .vm-event-card__image {
    min-height: 260px;
  }

  .vm-events-featured-archive .vm-event-card--featured .vm-event-card__placeholder {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .vm-event-detail__hero--mobile {
    display: block;
    margin: 0 clamp(22px, 3.4vw, 40px) clamp(22px, 3vw, 34px);
  }

  .vm-event-detail__main > .vm-event-detail__hero {
    display: none;
  }

  .vm-event-detail__layout {
    grid-template-columns: 1fr;
  }

  .vm-event-detail__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vm-event-detail__meta-item:nth-child(n + 3) {
    grid-column: 1 / -1;
  }

  .vm-event-detail__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .vm-event-detail__actions .vm-button {
    width: 100%;
  }

  .vm-event-detail__actions .vm-button:only-child {
    grid-column: 1 / -1;
  }

  .vm-event-detail__divider--charity,
  .vm-event-detail__charity--desktop {
    display: none;
  }

  .vm-event-detail__charity--mobile {
    display: grid;
  }

  .vm-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
.vm-sponsors-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.vm-sponsor-card__logo {
  max-width: min(220px, 90%);
  max-height: 100px;
}
}

@media (max-width: 782px) {
  .admin-bar .vm-site-header {
    top: 46px;
  }
}

@media (max-width: 900px) {
  body.vm-menu-open {
    overflow: hidden;
  }

  .vm-site-header__inner {
    min-height: 66px;
    align-items: center;
    flex-direction: row;
    gap: 16px;
  }

  .vm-site-nav-toggle {
    display: inline-flex;
    margin-left: auto;
    position: relative;
    z-index: 80;
  }

  .vm-site-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 65;
    display: block;
    border: 0;
    background: rgba(0, 0, 0, 0.54);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  .vm-menu-open .vm-site-nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .vm-site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 70;
    width: min(82vw, 360px);
    height: 100vh;
    padding: 92px 22px 28px;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    background:
      radial-gradient(circle at top left, var(--vm-color-accent-soft), transparent 34%),
      linear-gradient(145deg, rgba(58, 58, 58, 0.86), rgba(24, 24, 24, 0.92)),
      rgba(36, 36, 36, 0.92);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px) saturate(116%);
    -webkit-backdrop-filter: blur(18px) saturate(116%);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .admin-bar .vm-site-nav {
    padding-top: 120px;
  }

  .vm-menu-open .vm-site-nav {
    transform: translateX(0);
  }

  .vm-site-nav__list {
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }

  .vm-site-nav__list a {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 1.02rem;
  }

}

@media (max-width: 720px) {
  .vm-site-footer__inner {
    padding: 24px 0;
  }

  .vm-site-footer__widgets {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .vm-contact__grid {
    grid-template-columns: 1fr;
  }

  .vm-contact-card {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 16px;
    padding: 20px;
  }

  .vm-contact-card__icon {
    min-height: 86px;
  }
}

/* homepage safety */
.vm-home-about,
.vm-facebook-box {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* unified page containers */
.vm-page,
.vm-error-page,
.vm-events-archive,
.vm-contact,
.vm-event-detail,
.vm-galleries-section,
.vm-gallery-detail {
  width: min(var(--vm-container-page), calc(100% - var(--vm-container-gutter)));
  max-width: var(--vm-container-page);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (max-width: 980px) {
  .vm-home-info-grid {
    grid-template-columns: 1fr;
  }

  .vm-home-info-card {
    min-height: auto;
  }

  .vm-sponsors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vm-sponsor-card {
    min-height: 130px;
  }

  .vm-sponsor-card__logo {
    max-width: min(240px, 94%);
    max-height: 105px;
  }
}

@media (max-width: 560px) {
  .vm-sponsors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vm-home-sponsors {
    padding: 24px;
  }

  .vm-home-sponsors-combined {
    gap: 24px;
  }

  .vm-home-sponsors__group {
    gap: 16px;
  }

  .vm-sponsor-card {
    min-height: 120px;
  }

  .vm-sponsor-card__logo {
    max-width: min(250px, 94%);
    max-height: 100px;
  }
}

/* Homepage – sponzoři: bílé logo plochy */

.vm-sponsor-card {
  min-height: 170px;
  flex: 0 1 calc((100% - 90px) / 6);
  padding: 28px;
  border: 0;
  border-radius: var(--vm-radius-medium);
  background: #ffffff;
  box-shadow: none;
}

.vm-sponsor-card__link {
  width: 100%;
  height: 100%;
}

.vm-sponsor-card__logo {
  display: block;
  width: auto;
  max-width: min(300px, 96%);
  max-height: 135px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.vm-sponsor-card:hover .vm-sponsor-card__logo {
  opacity: 1;
  transform: scale(1.03);
}

.vm-partners-grid {
  grid-template-columns: none;
}

.vm-partners-grid .vm-sponsor-card {
  flex-basis: calc((100% - 36px) / 3);
}

@media (max-width: 980px) {
  .vm-sponsor-card {
    min-height: 155px;
    padding: 24px;
  }

  .vm-sponsor-card__logo {
    max-width: min(280px, 96%);
    max-height: 120px;
  }
}

@media (max-width: 560px) {
  .vm-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vm-sponsor-card {
    min-height: 140px;
    padding: 22px;
  }

  .vm-sponsor-card__logo {
    max-width: min(260px, 96%);
    max-height: 110px;
  }
}

.vm-sponsors-grid:not(.vm-partners-grid) {
  grid-template-columns: none;
}

.vm-partners-grid {
  grid-template-columns: none;
}

@media (max-width: 980px) {
  .vm-sponsors-grid:not(.vm-partners-grid) {
    gap: 20px;
  }

  .vm-sponsors-grid:not(.vm-partners-grid) .vm-sponsor-card {
    flex-basis: calc((100% - 40px) / 3);
  }
}

@media (max-width: 560px) {
  .vm-sponsors-grid:not(.vm-partners-grid) {
    gap: 12px;
  }

  .vm-sponsors-grid:not(.vm-partners-grid) .vm-sponsor-card {
    flex-basis: calc((100% - 24px) / 3);
  }

  .vm-sponsors-grid:not(.vm-partners-grid) .vm-sponsor-card {
    min-height: 96px;
    padding: 12px;
  }

  .vm-sponsors-grid:not(.vm-partners-grid) .vm-sponsor-card__logo {
    max-width: min(130px, 96%);
    max-height: 72px;
  }

  .vm-partners-grid {
    grid-template-columns: none;
    gap: 12px;
  }

  .vm-partners-grid .vm-sponsor-card {
    flex-basis: calc((100% - 12px) / 2);
  }
}

/* Homepage – O nás + Facebook sjednocené panely */

.vm-home-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.vm-home-info-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--vm-color-border);
  border-radius: var(--vm-radius-large);
  color: var(--vm-color-text);
  background:
    radial-gradient(circle at top left, var(--vm-color-accent-soft), transparent 34%),
    linear-gradient(135deg, rgba(28, 28, 28, 0.92), rgba(45, 45, 45, 0.86));
  box-shadow: var(--vm-shadow-card);
}

.vm-home-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.vm-home-info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 18%, rgba(122, 201, 67, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(18, 18, 18, 0.88), rgba(48, 48, 48, 0.78));
}

.vm-home-info-card--about::before {
  background-image: url("../images/about-bg.jpg");
}

.vm-home-info-card--facebook::before {
  background-image: url("../images/facebook-bg.jpg");
}

.vm-home-info-card .vm-section-kicker {
  color: var(--vm-color-accent);
}

.vm-home-info-card .vm-section-title {
  max-width: 620px;
  color: var(--vm-color-text);
  font-size: clamp(2rem, 3.3vw, 3.3rem);
   margin-left: 0;
}

.vm-home-info-card p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--vm-color-copy);
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 400;
}

.vm-home-info-card .vm-button {
  width: fit-content;
}

.vm-home-about {
  grid-template-columns: none;
}

.vm-home-about__content {
  max-width: 680px;
}

.vm-facebook-box {
  align-items: flex-start;
}

@media (max-width: 900px) {
  .vm-home-info-grid {
    grid-template-columns: 1fr;
  }

  .vm-home-info-card {
    min-height: 360px;
  }

  .vm-home-emil {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .vm-home-emil__logo-panel {
    min-height: 180px;
  }

  .vm-home-emil__logo {
    width: min(260px, 82%);
  }
}

@media (max-width: 640px) {
  .vm-home-info-card {
    min-height: 320px;
    padding: 28px 22px;
  }

  .vm-home-emil {
    padding: 28px 22px;
  }

  .vm-home-emil p {
    font-size: 1.05rem;
  }

  .vm-home-info-card p {
    font-size: 1.05rem;
  }

  .vm-home-info-card .vm-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .vm-page,
  .vm-error-page,
  .vm-events-archive,
  .vm-events-section,
  .vm-event-detail,
  .vm-galleries-section,
  .vm-gallery-detail,
  .vm-contact {
    width: min(100% - var(--vm-container-gutter-mobile), var(--vm-container-page));
  }
}

/* vnitřní shortcode sekce uvnitř běžné stránky nemají znovu odečítat gutter */
.vm-page .vm-events-archive,
.vm-page .vm-galleries-section,
.vm-page .vm-contact {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Akce – horní řádek s nadpisem a filtry */
.vm-events-archive__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.vm-events-archive__top .vm-section-header {
  margin-bottom: 0;
}

.vm-events-archive__top .vm-section-title {
  font-size: var(--vm-page-title-size);
}

.vm-events-archive__top .vm-events-filter {
  flex-shrink: 0;
  justify-content: flex-end;
  gap: 8px;
  margin: 0 0 8px;
}

.vm-events-archive__top .vm-events-filter__link {
  min-height: 36px;
  padding: 7px 15px;
  font-size: 0.86rem;
}

@media (max-width: 760px) {
  .vm-events-archive__top {
    display: block;
    margin-bottom: 24px;
  }

  .vm-events-archive__top .vm-section-header {
    margin-bottom: 18px;
  }

  .vm-events-archive__top .vm-events-filter {
    justify-content: flex-start;
    margin: 0;
  }

  .vm-events-archive__top .vm-events-filter__link {
    flex: 1 1 auto;
  }
}

/* Titulní fotografie akcí a fotogalerií drží poměr 1500:750 */
.vm-event-card__media,
.vm-gallery-card__media,
.vm-event-detail__hero {
  aspect-ratio: 2 / 1;
  min-height: 0 !important;
}

.vm-event-card__media,
.vm-gallery-card__media {
  align-self: start;
}

.vm-event-card__image,
.vm-gallery-card__image,
.vm-event-detail__image {
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center center;
}

.vm-event-card__placeholder,
.vm-gallery-card__placeholder {
  aspect-ratio: 2 / 1;
  min-height: 0 !important;
}

.vm-upcoming-events__side .vm-event-card__media,
.vm-upcoming-events__side .vm-event-card__placeholder {
  aspect-ratio: auto;
}

/* =========================================================
   shared heading weight
   ========================================================= */
.vm-section-title,
.vm-hero__title,
.vm-event-card__title,
.vm-event-card--featured .vm-event-card__title,
.vm-event-card--placeholder .vm-event-card__title,
.vm-events-archive .vm-event-card__title,
.vm-gallery-card__title,
.vm-event-detail__title,
.vm-gallery-detail__title,
.vm-contact__title,
.vm-contact__note h3,
.vm-page__title,
.vm-error-page__title,
.vm-event-detail__content h2,
.vm-event-detail__content h3,
.vm-event-detail__content h4,
.vm-facebook-box .vm-section-title,
.vm-home-emil .vm-section-title,
.vm-home-info-card .vm-section-title,
.vm-home-sponsors-combined .vm-section-title,
.vm-events-archive__top .vm-section-title {
  font-weight: var(--vm-heading-weight);
}

.vm-events-archive__top .vm-section-title,
.vm-galleries-section > .vm-section-header .vm-section-title,
.vm-event-detail__title,
.vm-gallery-detail__title,
.vm-contact__title,
.vm-page__title,
.vm-error-page__title {
  font-size: var(--vm-page-title-size);
}

.vm-upcoming-events .vm-event-card__title,
.vm-hero__panel-inner strong {
  font-weight: 800;
}
