:root {
  --v2-red: #bd2429;
  --v2-red-dark: #8f171c;
  --v2-ink: #1a201e;
  --v2-paper: #f5f0e6;
  --v2-white: #fffdf8;
  --v2-mist: var(--v2-paper);
  --v2-muted: #68625d;
  --v2-line: rgba(26,32,30,.18);
  --v2-max: 1320px;
  --v2-serif: Georgia, 'Times New Roman', serif;
  --v2-sans: Inter, 'Helvetica Neue', Arial, sans-serif;
}

/* Výtvarný odbor: filtrovaná obrazová dokumentácia */
.v2-visual-gallery {
  grid-column: 1 / -1;
  margin-top: 1.4rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(39, 34, 30, 0.13);
  border-radius: 0;
  background: var(--v2-white);
  color: var(--v2-ink);
  box-shadow: 0 18px 45px rgba(39, 34, 30, 0.06);
}

.v2-visual-gallery--standalone {
  width: min(calc(100% - 4rem), var(--v2-max));
  margin: 0 auto clamp(4.5rem, 7vw, 7rem);
}

#galeria .v2-gallery__content {
  padding-bottom: 2rem;
}

.v2-visual-gallery__intro {
  max-width: 760px;
  margin-bottom: 1rem;
}

.v2-visual-gallery__intro .v2-kicker {
  margin-bottom: .45rem;
}

.v2-visual-gallery__intro > p:last-child {
  margin: 0;
  color: var(--v2-muted);
  font-size: .9rem;
}

.v2-visual-gallery__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.v2-visual-gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.v2-visual-gallery__filter {
  min-height: 2.55rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(39, 34, 30, 0.18);
  border-radius: 0;
  background: #fffdf9;
  color: var(--v2-ink);
  font: inherit;
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.v2-visual-gallery__filter:hover,
.v2-visual-gallery__filter:focus-visible {
  border-color: var(--v2-red);
  color: var(--v2-red);
  transform: translateY(-1px);
}

.v2-visual-gallery__filter.is-active {
  border-color: var(--v2-red);
  background: var(--v2-red);
  color: #fff;
}

.v2-visual-gallery__status {
  flex: 0 0 auto;
  margin: 0 0 0.72rem;
  color: var(--v2-muted);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.v2-visual-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.v2-visual-gallery__grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(39, 34, 30, 0.1);
  border-radius: 0;
  background: var(--v2-paper);
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.v2-visual-gallery__grid figure[hidden] {
  display: none !important;
}

.v2-visual-gallery__grid figure:hover,
.v2-visual-gallery__grid figure:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(39, 34, 30, 0.13);
}

.v2-visual-gallery__grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 280ms ease;
}

.v2-visual-gallery__grid figure:hover img {
  transform: scale(1.025);
}

.v2-visual-gallery__grid figcaption {
  min-height: 3.9rem;
  padding: 0.75rem 0.85rem 0.8rem;
  background: #fffdf9;
  color: var(--v2-ink);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.38;
}

@media (max-width: 900px) {
  .v2-visual-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .v2-visual-gallery--standalone {
    width: calc(100% - 2.4rem);
    margin-bottom: 4.5rem;
  }

  .v2-visual-gallery__toolbar {
    display: block;
  }

  .v2-visual-gallery__filters {
    flex-wrap: nowrap;
    margin-inline: -0.25rem;
    padding: 0.15rem 0.25rem 0.45rem;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .v2-visual-gallery__filter {
    flex: 0 0 auto;
  }

  .v2-visual-gallery__status {
    margin: 0.25rem 0 0;
  }

  .v2-visual-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.9rem;
    gap: 0.55rem;
  }

  .v2-visual-gallery__grid figcaption {
    min-height: 4.4rem;
    padding: 0.65rem;
    font-size: 0.72rem;
  }
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body { max-width: 100%; margin: 0; overflow-x: clip; background: var(--v2-paper); color: var(--v2-ink); font-family: var(--v2-sans); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 100; padding: .7rem 1rem; background: var(--v2-ink); color: white; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.v2-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid var(--v2-line); background: rgba(255,253,248,.95); backdrop-filter: blur(16px); }
.v2-header__inner { max-width: var(--v2-max); min-height: 104px; margin: 0 auto; padding: .7rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.v2-brand { display: flex; flex: 0 0 auto; align-items: center; gap: 1rem; text-decoration: none; }
.v2-brand img { width: 76px; height: 76px; object-fit: contain; }
.v2-brand span { display: grid; line-height: 1.05; }
.v2-brand strong { font-family: var(--v2-serif); font-size: 1.03rem; font-weight: 600; letter-spacing: -.01em; }
.v2-brand small { margin-top: .45rem; color: var(--v2-muted); font-size: .62rem; letter-spacing: .115em; text-transform: uppercase; }
.v2-navigation { display: flex; align-items: center; justify-content: flex-end; gap: clamp(.75rem,1.65vw,1.4rem); }
.v2-navigation a { max-width: 132px; font-size: .7rem; font-weight: 750; line-height: 1.2; letter-spacing: .055em; text-decoration: none; text-transform: uppercase; }
.v2-navigation a:hover, .v2-navigation a:focus-visible, .v2-navigation .is-accent { color: var(--v2-red); }
.v2-menu-toggle { display: none; margin-left: auto; padding: .75rem; border: 0; background: transparent; }
.v2-menu-toggle i { display: block; width: 28px; height: 2px; margin: 5px 0; background: var(--v2-ink); }

.v2-kicker { margin: 0 0 1.2rem; color: var(--v2-red); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--v2-serif); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.v2-hero { max-width: var(--v2-max); min-height: calc(100vh - 104px); margin: 0 auto; padding: clamp(3.5rem,6vw,6.5rem) 2rem 5rem; display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: clamp(3rem,6vw,6rem); }
.v2-hero__copy h1 { max-width: 820px; margin-bottom: 2.5rem; font-size: clamp(2.8rem,4.65vw,5.5rem); }
.v2-hero__copy h1 em { color: var(--v2-red); font-weight: 400; }
.v2-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.4rem; }
.v2-button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: .85rem 1.35rem; border: 1px solid currentColor; font-size: .76rem; font-weight: 800; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; transition: .2s ease; }
.v2-button--solid { border-color: var(--v2-red); background: var(--v2-red); color: white; }
.v2-button--solid:hover { border-color: var(--v2-red-dark); background: var(--v2-red-dark); transform: translateY(-2px); }
.v2-button--text { min-height: auto; padding: .45rem 0; border-width: 0 0 1px; }
.v2-button--text:hover { color: var(--v2-red); }
.v2-button--text span { margin-left: .6rem; }
.v2-hero__photo { position: relative; min-height: 660px; overflow: hidden; background: var(--v2-mist); }
.v2-hero__photo > img, .v2-hero__photo > .wp-block-cover__image-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 63% center; }
.v2-hero__photo.is-placeholder { display: flex; padding: 2rem; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,.85); text-align: center; }
.v2-hero__photo.is-placeholder::before, .v2-hero__photo.is-placeholder::after { content: ''; position: absolute; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.v2-hero__photo.is-placeholder::before { width: 430px; height: 430px; top: -100px; right: -160px; }
.v2-hero__photo.is-placeholder::after { width: 300px; height: 300px; bottom: -80px; left: -120px; }
.v2-hero__photo.is-placeholder > span { position: relative; z-index: 1; font-family: var(--v2-serif); font-size: 2rem; font-style: italic; }
.v2-hero__photo small { position: relative; z-index: 1; margin-top: .6rem; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.v2-photo-note { position: absolute; right: 1rem; bottom: 1rem; z-index: 2; max-width: calc(100% - 2rem); padding: .55rem .7rem; background: rgba(26,32,30,.82); color: white; font-size: .58rem; font-weight: 750; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; backdrop-filter: blur(8px); }

.v2-section { position: relative; max-width: var(--v2-max); margin: 0 auto; padding: clamp(5rem,9vw,9rem) 2rem; }
.v2-section-label { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2.5rem; }
.v2-section-label > span { color: rgba(26,32,30,.36); font-size: .68rem; letter-spacing: .15em; }
.v2-section-label .v2-kicker { margin: 0; }
.v2-about { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3rem 8vw; }
.v2-about > .v2-section-label { grid-column: 1 / -1; }
.v2-about__headline h2 { margin-bottom: 1.3rem; color: var(--v2-red); font-family: var(--v2-sans); font-size: .78rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.v2-about__headline p { margin-bottom: 0; font-family: var(--v2-serif); font-size: clamp(2.5rem,4.3vw,4.8rem); letter-spacing: -.035em; line-height: 1.02; }
.v2-about__body { align-self: end; }
.v2-about__body .is-lead { font-size: 1.35rem; line-height: 1.5; }
.v2-about__body strong { color: var(--v2-red); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.v2-about blockquote { grid-column: 1 / -1; max-width: 1050px; margin: 3rem 0 0 auto; padding-left: 2rem; border-left: 3px solid var(--v2-red); font-family: var(--v2-serif); font-size: clamp(2.3rem,4.1vw,4.7rem); font-style: italic; letter-spacing: -.03em; line-height: 1.05; text-transform: uppercase; }

.v2-departments { padding: clamp(5rem,9vw,9rem) max(2rem,calc((100vw - var(--v2-max))/2 + 2rem)); background: var(--v2-ink); color: var(--v2-white); }
.v2-departments__inner { max-width: var(--v2-max); margin: 0 auto; }
.v2-section-label--light > span { color: rgba(255,255,255,.4); }
.v2-section-label--light .v2-kicker { color: var(--v2-red); }
.v2-departments h2 { max-width: 900px; margin-bottom: 4rem; font-size: clamp(2.8rem,5vw,5.3rem); }
.v2-department-list { border-top: 1px solid rgba(255,255,255,.18); }
.v2-department-list article { display: grid; grid-template-columns: 52px minmax(220px,320px) 1fr 54px; align-items: center; gap: clamp(1.4rem,3vw,2.8rem); padding: 2.5rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.v2-department-list article > span { color: var(--v2-red); font-size: .72rem; letter-spacing: .15em; }
.v2-department__photo { position: relative; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: var(--v2-ink); }
.v2-department__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.v2-department-list article:hover .v2-department__photo img { transform: scale(1.025); }
.v2-department__photo figcaption { position: absolute; left: .65rem; bottom: .65rem; padding: .38rem .52rem; background: rgba(26,32,30,.78); color: rgba(255,255,255,.88); font-size: .52rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(6px); }
.v2-department-list h3 { margin: 0 0 .55rem; font-family: var(--v2-serif); font-size: clamp(2rem,3.4vw,3.8rem); font-weight: 400; }
.v2-department-list p { max-width: 720px; margin: 0; color: rgba(255,255,255,.64); }
.v2-department-list article > a { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; color: white; font-size: 1.35rem; text-decoration: none; }
.v2-department-list article > a:hover { border-color: var(--v2-red); background: var(--v2-red); }

.v2-study { display: grid; grid-template-columns: .42fr 1fr .8fr; align-items: start; gap: 3rem 6vw; }
.v2-study h2, .v2-ensemble h2 { margin-bottom: 1.3rem; font-size: clamp(2.9rem,5vw,5.2rem); }
.v2-study .is-lead { max-width: 620px; font-size: 1.3rem; }
.v2-study__contact { display: flex; padding-top: 1.6rem; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
.v2-phone { font-family: var(--v2-serif); font-size: 2rem; text-decoration: none; border-bottom: 1px solid currentColor; }
.v2-study__contact small { color: var(--v2-muted); }

.v2-gallery { position: relative; min-height: 650px; overflow: hidden; color: white; }
.v2-gallery > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.v2-gallery__shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(18,25,24,.84) 0%,rgba(18,25,24,.48) 55%,rgba(18,25,24,.25) 100%); }
.v2-gallery__content { position: relative; z-index: 1; max-width: var(--v2-max); margin: 0 auto; padding: clamp(5rem,10vw,9rem) 2rem; }
.v2-gallery__content .v2-kicker { color: white; }
.v2-gallery__content h2 { max-width: 850px; margin-bottom: 1.6rem; font-size: clamp(3rem,5vw,5.4rem); }
.v2-gallery__content > p:not(.v2-kicker) { max-width: 550px; font-size: 1.2rem; }
.v2-gallery__content > span { display: inline-block; margin-top: 2rem; padding: .5rem .8rem; border: 1px solid rgba(255,255,255,.65); font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; }

.v2-ensemble { display: grid; grid-template-columns: .42fr 1fr .8fr; gap: 3rem 6vw; }
.v2-ensemble__title > p { max-width: 650px; font-size: 1.2rem; }
.v2-ensemble__photo { position: relative; grid-column: 2 / -1; aspect-ratio: 16 / 8.2; margin: .5rem 0 0; overflow: hidden; background: var(--v2-mist); }
.v2-ensemble__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.v2-ensemble__photo figcaption { position: absolute; right: 1rem; bottom: 1rem; max-width: calc(100% - 2rem); padding: .55rem .7rem; background: rgba(26,32,30,.82); color: white; font-size: .55rem; font-weight: 750; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; backdrop-filter: blur(8px); }
.v2-ensemble__card { grid-column: 2 / -1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 1.5rem; padding: 2.6rem; border: 1px solid var(--v2-line); background: var(--v2-white); }
.v2-ensemble__card span { font-family: var(--v2-serif); font-size: clamp(1.8rem,3vw,3rem); }
.v2-ensemble__card b { color: var(--v2-red); font-size: 2rem; font-weight: 400; }

.v2-support { padding: clamp(4.5rem,8vw,7rem) max(2rem,calc((100vw - var(--v2-max))/2 + 2rem)); display: flex; align-items: end; justify-content: space-between; gap: 3rem; background: var(--v2-red); color: white; }
.v2-support .v2-kicker { color: white; }
.v2-support h2 { max-width: 920px; margin: 0; font-size: clamp(2.8rem,4.8vw,5rem); }
.v2-button--light { flex: 0 0 auto; color: white; }
.v2-button--light:hover { background: white; color: var(--v2-red); }
.v2-admin-links { max-width: var(--v2-max); margin: 0 auto; padding: 4rem 2rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.v2-admin-links > a { display: grid; grid-template-columns: 1fr auto; gap: .7rem 2rem; padding: 2rem; border: 1px solid var(--v2-line); text-decoration: none; }
.v2-admin-links > a + a { border-left: 0; }
.v2-admin-links span { font-family: var(--v2-serif); font-size: 2.1rem; }
.v2-admin-links i { grid-column: 1; color: var(--v2-muted); font-size: .74rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.v2-admin-links b { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--v2-red); font-size: 1.4rem; font-weight: 400; }
.v2-simple-row { max-width: var(--v2-max); margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: .42fr 1fr .8fr; align-items: baseline; gap: 2rem 6vw; border-bottom: 1px solid var(--v2-line); }
.v2-simple-row .v2-kicker { margin: 0; }
.v2-simple-row h2 { margin: 0; font-size: clamp(2.8rem,4.5vw,4.8rem); }
.v2-simple-row p:last-child { margin: 0; }

.v2-footer { padding: clamp(5rem,9vw,8rem) max(2rem,calc((100vw - var(--v2-max))/2 + 2rem)) 1.5rem; background: var(--v2-ink); color: white; }
.v2-footer__lead { display: flex; align-items: end; justify-content: space-between; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,.18); }
.v2-footer__lead .v2-kicker { color: var(--v2-red); }
.v2-footer__lead h2 { max-width: 850px; margin: 0; font-size: clamp(3rem,5vw,5.4rem); text-transform: uppercase; }
.v2-footer__lead > a { flex: 0 0 auto; color: white; font-size: 1.25rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.5); }
.v2-footer__grid { display: grid; grid-template-columns: 1.25fr 1fr .9fr .65fr; gap: 3rem; padding: 4rem 0; }
.v2-footer__grid h3 { margin-bottom: 1.2rem; color: var(--v2-red); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.v2-footer__grid p, .v2-footer__grid a { color: rgba(255,255,255,.68); }
.v2-footer__grid nav, .v2-footer__grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.v2-footer__grid a { margin-bottom: .4rem; text-decoration: none; }
.v2-footer__grid a:hover { color: white; }
.v2-social { display: flex; gap: .55rem; margin-top: 1.2rem; }
.v2-social a { display: grid; min-width: 38px; height: 38px; margin: 0; padding: 0 .55rem; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: white; font-size: .72rem; }
.v2-footer__bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.46); font-size: .7rem; letter-spacing: .05em; }
.v2-footer__bottom a { color: white; text-decoration: none; }

@media (max-width: 1100px) {
  .v2-menu-toggle { display: block; }
  .v2-navigation { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: 1.5rem 2rem 2rem; flex-direction: column; align-items: flex-start; background: var(--v2-white); border-bottom: 1px solid var(--v2-line); }
  .v2-navigation.is-open { display: flex; }
  .v2-navigation a { max-width: none; width: 100%; padding: .35rem 0; font-size: .86rem; }
  .v2-hero { grid-template-columns: 1.08fr .92fr; }
  .v2-hero__photo { min-height: 570px; }
  .v2-department-list article { grid-template-columns: 44px minmax(190px,250px) 1fr 50px; }
  .v2-study, .v2-ensemble { grid-template-columns: .32fr 1fr; }
  .v2-study__contact { grid-column: 2; }
  .v2-ensemble__card { grid-column: 2; }
  .v2-footer__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .v2-header__inner { min-height: 82px; padding: .45rem 1.2rem; }
  .v2-brand { gap: .7rem; }
  .v2-brand img { width: 58px; height: 58px; }
  .v2-brand strong { font-size: .82rem; }
  .v2-brand small { font-size: .53rem; }
  .v2-hero { min-height: auto; padding: 1.2rem 1.2rem 5rem; grid-template-columns: 1fr; gap: 3rem; }
  .v2-hero__photo { min-height: 420px; order: -1; }
  .v2-hero__copy h1 { font-size: clamp(2.55rem,11.8vw,4rem); }
  .v2-section { padding: 5rem 1.2rem; }
  .v2-about, .v2-study, .v2-ensemble { grid-template-columns: 1fr; }
  .v2-about > .v2-section-label { grid-column: auto; }
  .v2-about blockquote { grid-column: auto; margin-top: 1rem; }
  .v2-departments { padding: 5rem 1.2rem; }
  .v2-department-list article { grid-template-columns: 38px 1fr; gap: 1rem; align-items: start; }
  .v2-department__photo { grid-column: 2; width: 100%; }
  .v2-department-list article > div { grid-column: 2; }
  .v2-department-list article > a { grid-column: 2; }
  .v2-study__contact, .v2-ensemble__photo, .v2-ensemble__card { grid-column: auto; }
  .v2-gallery { min-height: 650px; }
  .v2-gallery__content { padding: 5rem 1.2rem; }
  .v2-ensemble__card { padding: 2rem; flex-direction: column; align-items: flex-start; }
  .v2-support { align-items: flex-start; flex-direction: column; padding: 5rem 1.2rem; }
  .v2-admin-links { grid-template-columns: 1fr; padding: 3rem 1.2rem 0; }
  .v2-admin-links > a + a { border-left: 1px solid var(--v2-line); border-top: 0; }
  .v2-simple-row { padding: 3.5rem 1.2rem; grid-template-columns: 1fr; align-items: start; gap: 1rem; }
  .v2-footer { padding: 5rem 1.2rem 1.5rem; }
  .v2-footer__lead { align-items: flex-start; flex-direction: column; }
  .v2-footer__grid { grid-template-columns: 1fr; }
  .v2-footer__bottom { flex-direction: column; gap: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* WordPress block-theme mapping: the same classes power the standalone preview. */
.wp-site-blocks { padding: 0; }
.wp-site-blocks > *, .v2-main > * { margin-block-start: 0; }
.wp-block-group.v2-header { padding: 0; }
.v2-brand .wp-block-image { margin: 0; flex: 0 0 auto; }
.v2-brand__name, .v2-brand__address { margin: 0; line-height: 1.05; }
.v2-brand__name { font-family: var(--v2-serif); font-size: 1.03rem; font-weight: 600; letter-spacing: -.01em; }
.v2-brand__name a { text-decoration: none; }
.v2-brand__address { margin-top: .45rem; color: var(--v2-muted); font-size: .62rem; letter-spacing: .115em; text-transform: uppercase; }
.wp-block-navigation.v2-navigation .wp-block-navigation-item__content { line-height: 1.2; text-decoration: none; }
.wp-block-navigation.v2-navigation .is-accent > .wp-block-navigation-item__content { color: var(--v2-red); }
.wp-block-group.v2-main { padding: 0; }
.wp-block-group.v2-hero { grid-template-columns: 1.18fr .82fr; }
.v2-hero__copy h1 em { color: var(--v2-red); font-weight: 400; }
.wp-block-group.v2-hero__photo.is-placeholder { display: flex; }
.v2-hero__photo.is-placeholder .has-x-large-font-size { position: relative; z-index: 1; margin: 0; font-family: var(--v2-serif); font-size: 2rem !important; font-style: italic; }
.v2-hero__photo.is-placeholder .has-small-font-size { position: relative; z-index: 1; margin-top: .6rem; font-size: .66rem !important; letter-spacing: .14em; text-transform: uppercase; }
.v2-section-label > p:first-child { margin: 0; color: rgba(26,32,30,.36); font-size: .68rem; letter-spacing: .15em; }
.v2-section-label--light > p:first-child { color: rgba(255,255,255,.4); }
.v2-about .wp-block-quote { grid-column: 1 / -1; max-width: 1050px; margin: 3rem 0 0 auto; padding-left: 2rem; border-left: 3px solid var(--v2-red); }
.v2-about .wp-block-quote p { margin: 0; }
.wp-block-group.v2-departments { padding-left: max(2rem,calc((100vw - var(--v2-max))/2 + 2rem)); padding-right: max(2rem,calc((100vw - var(--v2-max))/2 + 2rem)); }
.v2-department-list article { grid-template-columns: 52px minmax(220px,320px) 1fr 54px !important; }
.v2-department-list article > p:first-child { color: var(--v2-red); font-size: .72rem; letter-spacing: .15em; }
.v2-department-list article > p:last-child a { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; color: white; font-size: 1.35rem; text-decoration: none; }
.v2-department-list article > p:last-child a:hover { border-color: var(--v2-red); background: var(--v2-red); }
.v2-study__contact .wp-block-buttons { margin-bottom: 0; }
.v2-phone { margin: 0; }
.v2-phone a { text-decoration: none; }
.wp-block-cover.v2-gallery { padding: 0; }
.v2-gallery .wp-block-cover__background { background: linear-gradient(90deg,rgba(18,25,24,.84) 0%,rgba(18,25,24,.48) 55%,rgba(18,25,24,.25) 100%) !important; opacity: 1 !important; }
.v2-gallery .wp-block-cover__inner-container { width: 100%; }
.v2-gallery__content { margin-left: auto !important; margin-right: auto !important; }
.v2-gallery__badge { display: inline-block; width: auto; margin-top: 2rem; padding: .5rem .8rem; border: 1px solid rgba(255,255,255,.65); font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; }
.v2-ensemble__card > p { margin: 0; font-family: var(--v2-serif); font-size: clamp(1.8rem,3vw,3rem); }
.v2-ensemble__card > p:nth-child(2) { color: var(--v2-red); font-size: 2rem; }
.wp-block-group.v2-support { display: block; padding-left: max(2rem,calc((100vw - var(--v2-max))/2 + 2rem)); padding-right: max(2rem,calc((100vw - var(--v2-max))/2 + 2rem)); }
.v2-support > .wp-block-group { gap: 3rem; }
.v2-support .is-style-outline .wp-block-button__link { color: white; border-color: white; }
.wp-block-columns.v2-admin-links { gap: 1px; }
.v2-admin-card { height: 100%; padding: 2rem; border: 1px solid var(--v2-line); }
.v2-admin-card h3 { margin: 0; font-family: var(--v2-serif); font-size: 2.1rem; font-weight: 400; }
.v2-admin-card h3 a { text-decoration: none; }
.v2-admin-card p { margin: .7rem 0 0; color: var(--v2-muted); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.wp-block-group.v2-simple-row { grid-template-columns: .42fr 1fr .8fr !important; }
.wp-block-group.v2-footer { padding-left: max(2rem,calc((100vw - var(--v2-max))/2 + 2rem)); padding-right: max(2rem,calc((100vw - var(--v2-max))/2 + 2rem)); }
.v2-footer__lead h2 { text-transform: uppercase; }
.v2-footer__email a { color: white; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.5); }
.v2-footer__grid h3 { font-family: var(--v2-sans); }
.v2-footer__grid .wp-block-navigation { gap: .4rem; align-items: flex-start; }
.v2-footer__grid .wp-block-navigation-item__content { color: rgba(255,255,255,.68); }
.v2-footer__bottom p { margin: 0; }

@media (max-width: 1100px) {
  .wp-block-navigation.v2-navigation { display: flex; position: relative; padding: 0; border: 0; background: transparent; }
  .wp-block-group.v2-hero { grid-template-columns: 1.08fr .92fr; }
  .v2-department-list article { grid-template-columns: 44px minmax(190px,250px) 1fr 50px !important; }
}

@media (max-width: 760px) {
  .v2-brand__name { font-size: .82rem; }
  .v2-brand__address { font-size: .53rem; }
  .wp-block-group.v2-hero { grid-template-columns: 1fr !important; }
  .v2-hero__copy { order: 2; }
  .v2-hero__photo { order: 1; }
  .wp-block-group.v2-departments { padding-left: 1.2rem; padding-right: 1.2rem; }
  .v2-department-list article { grid-template-columns: 38px 1fr !important; }
  .v2-department-list article > .v2-department__photo,
  .v2-department-list article > .wp-block-group { grid-column: 2; }
  .v2-department-list article > p:last-child { grid-column: 2; }
  .wp-block-group.v2-support, .wp-block-group.v2-footer { padding-left: 1.2rem; padding-right: 1.2rem; }
  .wp-block-columns.v2-admin-links { display: grid; grid-template-columns: 1fr; gap: 0; }
  .wp-block-group.v2-simple-row { grid-template-columns: 1fr !important; }
}

/* v2.2 — unified type scale and layout rhythm. */
header.wp-block-template-part {
  position: sticky;
  top: 0;
  z-index: 100;
}

body.admin-bar header.wp-block-template-part {
  top: var(--wp-admin--admin-bar--height, 32px);
}

.v2-navigation a,
.wp-block-navigation.v2-navigation .wp-block-navigation-item__content {
  font-size: .76rem;
  line-height: 1.28;
  letter-spacing: .045em;
}

@media (min-width: 761px) {
  .wp-block-navigation.v2-navigation .wp-block-navigation__container {
    flex-wrap: nowrap;
    gap: clamp(.7rem, 1.2vw, 1rem);
  }

  .wp-block-navigation.v2-navigation .wp-block-navigation-item {
    flex: 0 0 auto;
  }

  .v2-navigation a,
  .wp-block-navigation.v2-navigation .wp-block-navigation-item__content {
    max-width: none;
    white-space: nowrap;
  }
}

/* v2.22 — galleries live under their relevant sections and load on demand. */
.v2-technique-galleries,
.v2-department > .v2-collapsible-gallery {
  grid-column: 2 / -1;
  width: 100%;
}

.v2-technique-galleries {
  margin-top: 1rem;
}

.v2-technique-galleries__label {
  margin: 0 0 .75rem;
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.v2-collapsible-gallery {
  border-top: 1px solid var(--v2-line);
}

.v2-collapsible-gallery:last-child {
  border-bottom: 1px solid var(--v2-line);
}

.v2-collapsible-gallery > summary {
  display: grid;
  min-height: 4.35rem;
  padding: 1rem 3.25rem 1rem 0;
  position: relative;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 1rem;
  color: var(--v2-ink);
  cursor: pointer;
  list-style: none;
}

.v2-collapsible-gallery > summary::-webkit-details-marker {
  display: none;
}

.v2-collapsible-gallery > summary::after {
  content: '+';
  position: absolute;
  right: .35rem;
  top: 50%;
  color: var(--v2-red);
  font-family: var(--v2-serif);
  font-size: 1.7rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.v2-collapsible-gallery[open] > summary::after {
  content: '−';
}

.v2-collapsible-gallery > summary span {
  font-family: var(--v2-serif);
  font-size: clamp(1.15rem,2vw,1.45rem);
}

.v2-collapsible-gallery > summary small {
  color: var(--v2-muted);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.v2-departments .v2-collapsible-gallery {
  border-color: rgba(255,255,255,.18);
}

.v2-departments .v2-collapsible-gallery > summary {
  color: white;
}

.v2-departments .v2-collapsible-gallery > summary small {
  color: rgba(255,255,255,.58);
}

.v2-collapsible-gallery .v2-department-strip {
  grid-column: auto;
  margin: 0 0 1.35rem;
  padding: .15rem 0 .75rem;
}

.v2-department-strip figcaption {
  position: absolute;
  right: .5rem;
  bottom: .5rem;
  left: .5rem;
  padding: .4rem .5rem;
  background: rgba(26,32,30,.78);
  color: white;
  font-size: .56rem;
  font-weight: 700;
  line-height: 1.35;
}

.v2-gallery-panel {
  margin: 0 0 1.3rem;
  padding: clamp(.8rem,2vw,1.2rem);
  background: var(--v2-white);
  color: var(--v2-ink);
}

.v2-gallery-panel:empty {
  display: none;
}

.v2-gallery-panel__status {
  margin: 0 0 .8rem;
  color: var(--v2-muted);
  font-size: .78rem;
  font-weight: 700;
}

.v2-life-gallery {
  width: min(calc(100% - 4rem), var(--v2-max));
  margin: 0 auto clamp(4.5rem,7vw,7rem);
  border: 1px solid var(--v2-line);
  background: var(--v2-white);
}

.v2-life-gallery > summary {
  padding-right: 4rem;
  padding-left: 1.4rem;
}

.v2-life-gallery > summary::after {
  right: 1.4rem;
}

.v2-life-gallery .v2-gallery-panel {
  margin: 0;
  padding: 1.25rem;
  border-top: 1px solid var(--v2-line);
}

.v2-video-placeholder {
  display: flex;
  margin: 0 1.25rem 1.25rem;
  padding: 1rem 1.15rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px dashed var(--v2-line);
  color: var(--v2-muted);
}

.v2-video-placeholder strong {
  color: var(--v2-ink);
}

.v2-school-videos {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
}

.v2-school-videos h3 {
  margin: 0 0 16px;
}

.v2-school-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.v2-school-videos figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #171717;
  box-shadow: 0 12px 32px rgb(0 0 0 / 12%);
}

.v2-managed-video {
  overflow: hidden;
  border-radius: 0;
  background: #171717;
}

.v2-managed-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.v2-ensemble-gallery figcaption:empty {
  display: none;
}

.v2-school-videos video {
  display: block;
  width: 100%;
  max-height: 70vh;
  background: #000;
}

.v2-school-videos figcaption {
  padding: 11px 14px 13px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 700px) {
  .v2-school-videos__grid {
    grid-template-columns: 1fr;
  }
}

.v2-ensemble-gallery {
  grid-column: 2 / -1;
  margin-top: 1rem;
}

@media (max-width: 760px) {
  .v2-technique-galleries,
  .v2-department > .v2-collapsible-gallery {
    grid-column: 2;
  }

  .v2-collapsible-gallery > summary {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .v2-life-gallery {
    width: calc(100% - 2.4rem);
    margin-bottom: 4.5rem;
  }

  .v2-ensemble-gallery {
    grid-column: auto;
  }

  .v2-video-placeholder {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Client photo sets: compact, horizontally browsable contact sheets. */
.v2-department-strip {
  grid-column: 2 / -1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 23%);
  gap: .8rem;
  width: 100%;
  margin-top: -.5rem;
  padding: 0 0 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-color: var(--v2-red) rgba(255,255,255,.1);
  scrollbar-width: thin;
}

.v2-department-strip:focus-visible {
  outline: 2px solid var(--v2-red);
  outline-offset: 5px;
}

.v2-department-strip figure {
  position: relative;
  height: 170px;
  margin: 0;
  overflow: hidden;
  background: var(--v2-ink);
  scroll-snap-align: start;
}

.v2-department-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.v2-department-strip figure:hover img {
  transform: scale(1.035);
}

.v2-document-list {
  display: grid;
  margin-top: 1.35rem;
  border-top: 1px solid var(--v2-line);
}

.v2-document-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .2rem 1rem;
  padding: 1rem 0;
  align-items: center;
  border-bottom: 1px solid var(--v2-line);
  color: var(--v2-ink);
  text-decoration: none;
}

.v2-document-list a:hover span,
.v2-document-list a:focus-visible span {
  color: var(--v2-red);
}

.v2-document-list span {
  font-family: var(--v2-sans);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
}

.v2-document-list small {
  grid-column: 1;
  color: var(--v2-muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v2-document-list b {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--v2-red);
  font-size: 1.1rem;
  font-weight: 400;
}

@media (max-width: 760px) {
  .v2-department-strip {
    grid-column: 2;
    grid-auto-columns: minmax(230px, 82%);
    margin-top: 0;
  }

  .v2-department-strip figure {
    height: 190px;
  }

  .v2-admin-links > .v2-admin-card {
    border-bottom: 0;
  }
}

/* v2.6 — clear desktop navigation feedback. */
@media (min-width: 761px) {
  .wp-block-navigation.v2-navigation .wp-block-navigation-item__content,
  .v2-navigation > a {
    position: relative;
    display: inline-block;
    padding: .45rem 0;
    transition: color .2s ease;
  }

  .wp-block-navigation.v2-navigation .wp-block-navigation-item__content::after,
  .v2-navigation > a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: .18rem;
    left: 0;
    height: 2px;
    background: var(--v2-red);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .24s cubic-bezier(.22,.61,.36,1);
  }

  .wp-block-navigation.v2-navigation .wp-block-navigation-item:hover > .wp-block-navigation-item__content,
  .wp-block-navigation.v2-navigation .wp-block-navigation-item__content:focus-visible,
  .v2-navigation > a:hover,
  .v2-navigation > a:focus-visible {
    color: var(--v2-red);
  }

  .wp-block-navigation.v2-navigation .wp-block-navigation-item:hover > .wp-block-navigation-item__content::after,
  .wp-block-navigation.v2-navigation .wp-block-navigation-item__content:focus-visible::after,
  .wp-block-navigation.v2-navigation .is-accent > .wp-block-navigation-item__content::after,
  .v2-navigation > a:hover::after,
  .v2-navigation > a:focus-visible::after,
  .v2-navigation > a.is-accent::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

  .wp-block-navigation.v2-navigation .wp-block-navigation-item__content:focus-visible,
  .v2-navigation > a:focus-visible {
    outline: 2px solid rgba(189,36,41,.45);
    outline-offset: 4px;
  }
}

/* v2.4 — refined art direction, typography and subtle creative details. */
:root {
  --v2-serif: Baskerville, 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --v2-sans: 'Avenir Next', Avenir, 'Segoe UI', Helvetica, Arial, sans-serif;
}

body {
  letter-spacing: .004em;
  background-color: var(--v2-paper);
  background-image:
    radial-gradient(circle at 18% 24%, rgba(189,36,41,.026) 0 1px, transparent 1.4px),
    radial-gradient(circle at 72% 68%, rgba(72,104,115,.025) 0 1px, transparent 1.5px);
  background-size: 13px 13px, 17px 17px;
}

.v2-main h1,
.v2-main h2,
.v2-main h3,
.v2-footer h2,
.v2-brand strong {
  font-family: var(--v2-serif);
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.v2-main h1,
.v2-main h2,
.v2-main h3 {
  font-weight: 500;
}

.v2-navigation,
.v2-kicker,
.v2-button,
.v2-gallery__badge,
.v2-footer {
  font-family: var(--v2-sans);
}

.v2-navigation a,
.wp-block-navigation.v2-navigation .wp-block-navigation-item__content {
  font-weight: 650;
}

.v2-main {
  overflow: clip;
}

.v2-section-label::after {
  content: '';
  width: clamp(48px, 7vw, 112px);
  height: 1px;
  background: currentColor;
  opacity: .2;
}

.v2-hero,
.v2-about,
.v2-study,
.v2-ensemble {
  position: relative;
  isolation: isolate;
}

.v2-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 15%;
  left: -9rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(189,36,41,.14);
  border-radius: 49% 51% 46% 54% / 57% 43% 57% 43%;
  transform: rotate(-11deg);
}

.v2-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 37%;
  bottom: 8%;
  width: 9rem;
  height: 3px;
  background: var(--v2-red);
  opacity: .55;
  transform: rotate(-5deg);
}

.v2-hero__photo::after,
.v2-about__photo::after,
.v2-ensemble__photo::after {
  content: '';
  position: absolute;
  z-index: 3;
  inset: .8rem;
  border: 1px solid rgba(255,255,255,.52);
  pointer-events: none;
}

.v2-about blockquote {
  position: relative;
  z-index: 1;
}

.v2-about blockquote::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: -3rem;
  right: -2rem;
  width: clamp(130px, 17vw, 230px);
  aspect-ratio: 1;
  border: 1px solid rgba(189,36,41,.2);
  border-radius: 53% 47% 51% 49% / 46% 56% 44% 54%;
  transform: rotate(12deg);
}

.v2-departments {
  position: relative;
  overflow: hidden;
}

.v2-departments::before {
  content: '';
  position: absolute;
  top: 5rem;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
}

.v2-departments::after {
  content: '';
  position: absolute;
  right: 7%;
  bottom: 9%;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(236,142,139,.16);
  border-radius: 52% 48% 44% 56% / 48% 56% 44% 52%;
  transform: rotate(-18deg);
}

.v2-departments__inner {
  position: relative;
  z-index: 1;
}

.v2-study::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: 2rem;
  bottom: 18%;
  width: min(24vw, 290px);
  height: 78px;
  opacity: .45;
  transform: rotate(-4deg);
  background: repeating-linear-gradient(to bottom, transparent 0 13px, rgba(72,104,115,.17) 13px 14px);
}

.v2-ensemble::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 3rem;
  left: 20%;
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  background: radial-gradient(ellipse at center, rgba(72,104,115,.105), rgba(72,104,115,0) 69%);
  transform: translateX(-30%);
}

.v2-button,
.wp-block-button__link,
.v2-admin-card,
.v2-department-list article > a {
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.v2-button:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
}

.v2-admin-card:hover {
  transform: translateY(-3px);
  border-color: rgba(189,36,41,.42);
  box-shadow: 0 16px 36px rgba(26,32,30,.07);
}

.v2-support {
  position: relative;
  overflow: hidden;
}

.v2-support::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 760px) {
  .v2-hero::before {
    top: 45%;
    left: -12rem;
    opacity: .7;
  }

  .v2-hero::after,
  .v2-study::before {
    display: none;
  }

  .v2-about blockquote::after {
    right: -5rem;
  }

  .v2-departments::before {
    right: -20rem;
  }

  .v2-hero__photo::after,
  .v2-about__photo::after,
  .v2-ensemble__photo::after {
    inset: .55rem;
  }
}

/* v2.3 — client-supplied homepage photography. */
.v2-about__photo {
  position: relative;
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8.5;
  margin: 2rem 0 0;
  overflow: hidden;
  background: var(--v2-mist);
}

.v2-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.v2-about__photo figcaption,
.v2-ensemble__photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: .55rem .7rem;
  background: rgba(26,32,30,.82);
  color: white;
  font-size: .56rem;
  font-weight: 750;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.v2-ensemble__photo {
  aspect-ratio: 3 / 2;
}

.v2-ensemble__photo img {
  object-position: center 45%;
}

.v2-main > [id] {
  scroll-margin-top: 108px;
}

@media (max-width: 760px) {
  .v2-about__photo {
    aspect-ratio: 4 / 3;
    margin-top: 1rem;
  }

  .v2-ensemble__photo {
    aspect-ratio: 4 / 3;
  }
}

.v2-hero,
.wp-block-group.v2-hero {
  min-height: min(900px, calc(100vh - 104px));
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(2.5rem, 4vw, 4.5rem);
}

.v2-hero__copy h1,
.v2-main .v2-hero__copy h1.has-hero-font-size {
  max-width: 760px;
  font-size: clamp(3rem, 4.35vw, 4.9rem) !important;
  line-height: .98;
  letter-spacing: -.042em;
}

.v2-section {
  padding-top: clamp(5rem, 7.5vw, 7.5rem);
  padding-bottom: clamp(5rem, 7.5vw, 7.5rem);
}

.v2-departments {
  padding-top: clamp(5rem, 7.5vw, 7.5rem);
  padding-bottom: clamp(5rem, 7.5vw, 7.5rem);
}

.v2-about__headline p {
  font-size: clamp(2.8rem, 4.1vw, 4.25rem);
  line-height: 1.02;
}

.v2-departments h2,
.v2-study h2,
.v2-gallery__content h2,
.v2-ensemble h2,
.v2-support h2,
.v2-footer__lead h2,
.v2-main h2.has-x-large-font-size {
  font-size: clamp(3rem, 4.5vw, 4.7rem) !important;
  line-height: .98;
  letter-spacing: -.04em;
}

.v2-department-list h3 {
  font-size: clamp(2rem, 2.7vw, 2.8rem) !important;
  line-height: 1.02;
}

.v2-study,
.v2-ensemble {
  grid-template-columns: minmax(140px, .38fr) minmax(0, 1.08fr) minmax(250px, .82fr);
  gap: 3rem clamp(3rem, 5vw, 5rem);
}

.v2-study .is-lead,
.v2-ensemble__title > p {
  font-size: 1.18rem;
  line-height: 1.55;
}

.v2-gallery__content h2 {
  max-width: 820px;
}

.wp-block-cover.v2-hero__photo .wp-block-cover__inner-container {
  position: absolute;
  inset: 0;
  width: 100%;
}

.wp-block-cover.v2-hero__photo .v2-photo-note {
  top: auto;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  margin: 0;
}

.v2-simple-row h2,
.wp-block-group.v2-simple-row h2 {
  font-size: clamp(2.7rem, 4vw, 4.1rem) !important;
  line-height: 1;
}

@media (max-width: 1100px) {
  .v2-hero,
  .wp-block-group.v2-hero {
    grid-template-columns: 1fr .9fr;
  }

  .v2-study,
  .v2-ensemble {
    grid-template-columns: minmax(110px, .3fr) 1fr;
  }
}

@media (max-width: 760px) {
  .v2-hero,
  .wp-block-group.v2-hero {
    min-height: auto;
    grid-template-columns: 1fr !important;
    gap: 2.6rem;
  }

  .v2-hero__photo {
    min-height: 390px !important;
  }

  .v2-hero__copy h1,
  .v2-main .v2-hero__copy h1.has-hero-font-size {
    font-size: clamp(2.55rem, 10.5vw, 3.35rem) !important;
    line-height: 1;
  }

  .v2-section,
  .v2-departments {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .v2-about__headline p {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .v2-departments h2,
  .v2-study h2,
  .v2-gallery__content h2,
  .v2-ensemble h2,
  .v2-support h2,
  .v2-footer__lead h2,
  .v2-main h2.has-x-large-font-size {
    font-size: clamp(2.45rem, 10vw, 3.2rem) !important;
    line-height: 1;
  }

  .v2-department-list h3 {
    font-size: clamp(2rem, 8vw, 2.5rem) !important;
  }

  .v2-study,
  .v2-ensemble {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .v2-photo-note,
  .wp-block-cover.v2-hero__photo .v2-photo-note {
    right: .7rem;
    bottom: .7rem;
    max-width: calc(100% - 1.4rem);
    font-size: .52rem;
  }
}

/* v2.5 — disciplined contact and footer hierarchy. */
.v2-footer {
  padding-top: clamp(4rem, 6vw, 5.5rem);
  scroll-margin-top: 108px;
}

.v2-footer__lead,
.v2-footer__lead.wp-block-group {
  display: block;
  padding-bottom: 3rem;
}

.v2-footer__lead > .wp-block-group {
  width: 100%;
  margin: 0 !important;
}

.v2-footer__lead > .wp-block-group > *,
.v2-footer__lead .v2-kicker,
.v2-footer__lead h2,
.v2-footer__email {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.v2-footer__lead h2,
.v2-footer__lead h2.has-x-large-font-size,
.v2-main + footer .v2-footer__lead h2 {
  max-width: 680px;
  margin-top: .65rem;
  font-size: clamp(1.75rem, 2.5vw, 2.35rem) !important;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-transform: none;
}

.v2-footer__email,
.v2-footer__email.has-large-font-size {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 1.05rem !important;
  line-height: 1.5;
}

.v2-footer__grid {
  grid-template-columns: 1.15fr 1.15fr 1.15fr .65fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding: 3rem 0;
}

.v2-footer__grid > .wp-block-column {
  min-width: 0;
}

.v2-footer__grid > .wp-block-column:first-child h3 {
  font-size: 0;
  line-height: 1;
}

.v2-footer__grid > .wp-block-column:first-child h3::after {
  content: 'SZUŠ';
  font-family: var(--v2-sans);
  font-size: .7rem;
  line-height: 1.2;
  letter-spacing: .14em;
}

.v2-footer__bottom > p:first-child {
  font-size: 0;
}

.v2-footer__bottom > p:first-child::after {
  content: '© SZUŠ Červeník';
  font-size: .7rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .v2-footer {
    padding-top: 3.5rem;
  }

  .v2-footer__lead,
  .v2-footer__lead.wp-block-group {
    padding-bottom: 2.5rem;
  }

  .v2-footer__lead h2,
  .v2-footer__lead h2.has-x-large-font-size {
    font-size: 1.8rem !important;
  }

  .v2-footer__grid {
    gap: 2.3rem;
    padding: 2.5rem 0;
  }
}

/* v2.8 — let the WordPress mobile navigation use the full viewport. */
@media (max-width: 760px) {
  .v2-header .wp-block-navigation__responsive-container.is-menu-open {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .v2-header .wp-block-navigation__responsive-container-content {
    min-height: 100%;
    padding: 5rem 1.25rem 2rem !important;
    align-items: stretch;
    justify-content: flex-start;
  }

  .v2-header .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
    width: 100%;
    align-items: stretch;
    gap: 0;
  }

  .v2-header .wp-block-navigation__responsive-container-content .wp-block-navigation-item {
    width: 100%;
    border-bottom: 1px solid rgba(26, 32, 30, .12);
  }

  .v2-header .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content {
    display: block;
    width: 100%;
    padding: .9rem 0;
  }
}

/* v2.9 — locked two-family typography and a clear tuition information panel. */
.v2-tuition,
.wp-block-group.v2-tuition {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 1rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-top: 3px solid var(--v2-red);
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 20px 55px rgba(26, 32, 30, .07);
}

.v2-tuition__price .v2-kicker {
  margin-bottom: 1rem;
}

.v2-tuition__price h3,
.v2-main .v2-tuition__price h3 {
  margin: 0 0 .45rem;
  font-size: clamp(2.7rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.v2-tuition__price h3 small {
  font-family: var(--v2-sans);
  font-size: .9rem;
  font-weight: 650;
  letter-spacing: .02em;
}

.v2-tuition__price > p:last-child {
  margin-bottom: 0;
  color: var(--v2-muted);
}

.v2-tuition__details > p:first-child {
  max-width: 650px;
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.v2-tuition__iban {
  display: flex;
  margin: 0 0 1.8rem;
  padding: 1rem 0;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .45rem 1rem;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}

.v2-tuition__iban span {
  color: var(--v2-red);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.v2-tuition__iban strong {
  font-size: .95rem;
  letter-spacing: .055em;
  overflow-wrap: anywhere;
}

.v2-tuition__details h4 {
  margin: 0 0 .7rem;
  font-family: var(--v2-sans);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.v2-tuition__details ul {
  margin: 0;
  padding-left: 1.15rem;
}

.v2-tuition__details li + li {
  margin-top: .35rem;
}

@media (max-width: 1100px) {
  .v2-tuition,
  .wp-block-group.v2-tuition {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .v2-tuition,
  .wp-block-group.v2-tuition {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-top: .5rem;
    padding: 1.6rem 1.35rem 1.8rem;
  }

  .v2-tuition__price h3,
  .v2-main .v2-tuition__price h3 {
    font-size: 2.8rem;
  }
}

/* v2.10 — hero treatment, expandable tuition details and accessible photo lightbox. */
.v2-hero::before,
.wp-block-group.v2-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  height: auto;
  border: 0;
  border-radius: 0;
  opacity: 1;
  transform: translateX(-50%);
  background: var(--v2-mist);
}

.v2-hero__copy {
  padding: clamp(1.7rem, 3vw, 3rem);
  border-left: 3px solid var(--v2-red);
  background: rgba(246,243,235,.88);
  box-shadow: 0 24px 60px rgba(26,32,30,.1);
  backdrop-filter: blur(8px);
}

.v2-hero__photo {
  box-shadow: 0 26px 70px rgba(26,32,30,.2);
}

.v2-gallery.v2-gallery--intro {
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(189,36,41,.055), transparent 48%),
    var(--v2-paper);
  color: var(--v2-ink);
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}

.v2-gallery--intro .v2-gallery__content {
  padding-top: clamp(4.5rem, 7vw, 7rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
}

.v2-gallery--intro .v2-kicker {
  color: var(--v2-red);
}

.v2-gallery--intro .v2-gallery__content > p:not(.v2-kicker) {
  color: var(--v2-muted);
}

.v2-gallery--intro .v2-gallery__badge {
  border-color: var(--v2-line);
  color: var(--v2-ink);
}

.v2-department-strip figure {
  cursor: zoom-in;
  background: var(--v2-mist);
}

.v2-department-strip figure:focus-visible,
.v2-department__photo:focus-visible {
  outline: 2px solid var(--v2-red);
  outline-offset: -2px;
}

.v2-department-strip img {
  object-fit: contain;
}

.v2-department__photo {
  cursor: zoom-in;
}

.v2-lightbox__nav[hidden] {
  display: none;
}

.v2-tuition__saving {
  margin-top: 1.2rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--v2-line);
  color: var(--v2-red) !important;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.v2-tuition__more {
  align-self: center;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}

.v2-tuition__more summary {
  display: flex;
  padding: 1.15rem 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--v2-ink);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  list-style: none;
  text-transform: uppercase;
}

.v2-tuition__more summary::-webkit-details-marker {
  display: none;
}

.v2-tuition__more summary span {
  color: var(--v2-red);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform .2s ease;
}

.v2-tuition__more[open] summary span {
  transform: rotate(45deg);
}

.v2-tuition__more .v2-tuition__details {
  padding: .2rem 0 1.35rem;
}

.v2-tuition__more .v2-tuition__iban {
  margin: 1.35rem 0 0;
}

.v2-lightbox {
  box-sizing: border-box;
  width: min(calc(100vw - 1rem), 1180px);
  max-width: none;
  max-height: 92vh;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: white;
}

.v2-lightbox::backdrop {
  background: rgba(10,14,13,.9);
  backdrop-filter: blur(5px);
}

.v2-lightbox figure {
  display: grid;
  margin: 0;
  justify-items: center;
  gap: .8rem;
}

.v2-lightbox img {
  display: block;
  max-width: calc(100vw - 1.5rem);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: var(--v2-ink);
  box-shadow: 0 28px 90px rgba(0,0,0,.5);
}

.v2-lightbox figcaption {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
}

.v2-lightbox__close {
  position: absolute;
  z-index: 2;
  top: -2.6rem;
  right: 0;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(10,14,13,.65);
  color: white;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.v2-lightbox__nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: rgba(10,14,13,.7);
  color: white;
  cursor: pointer;
  font-size: 1.45rem;
  transform: translateY(-50%);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.v2-lightbox__nav:hover,
.v2-lightbox__nav:focus-visible {
  border-color: white;
  background: var(--v2-red);
  transform: translateY(-50%) scale(1.05);
}

.v2-lightbox__prev {
  left: .8rem;
}

.v2-lightbox__next {
  right: .8rem;
}

.v2-lightbox__count {
  margin: .45rem 0 0;
  color: rgba(255,255,255,.72);
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-align: center;
}

.v2-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.v2-social svg .is-dot {
  fill: currentColor;
  stroke: none;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .v2-footer__grid,
  .wp-block-columns.v2-footer__grid {
    grid-template-columns: 1fr;
  }

  .v2-hero::before,
  .wp-block-group.v2-hero::before {
    background: var(--v2-mist);
  }

  .v2-hero__copy {
    padding: 1.45rem;
    background: rgba(246,243,235,.94);
  }

  .v2-tuition__more {
    align-self: stretch;
  }

  .v2-lightbox__close {
    top: -2.4rem;
  }

  .v2-lightbox__nav {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(10,14,13,.78);
    font-size: 1.2rem;
  }

  .v2-lightbox__prev {
    left: .35rem;
  }

  .v2-lightbox__next {
    right: .35rem;
  }
}

/* v2.13 — calm art direction, school news and future visual-art structure. */
.v2-hero::before,
.wp-block-group.v2-hero::before {
  background:
    radial-gradient(circle at 78% 20%, rgba(255,253,248,.78), transparent 30%),
    var(--v2-mist);
}

.v2-hero__copy {
  background: rgba(255,253,248,.92);
}

.v2-gallery.v2-gallery--intro {
  background:
    radial-gradient(circle at 82% 22%, rgba(255,253,248,.8), transparent 26%),
    var(--v2-mist);
}

.v2-visual-plan {
  grid-column: 2 / -1;
  padding: 1.4rem 0 .35rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.v2-visual-plan > p {
  margin: 0 0 .9rem;
  color: rgba(255,255,255,.62);
  font-size: .72rem;
}

.v2-visual-plan > div {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.v2-visual-plan span {
  padding: .5rem .68rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .05em;
}

.v2-news {
  width: 100%;
  padding: clamp(5rem, 7.5vw, 7.5rem) 1.25rem;
  background:
    radial-gradient(circle at 84% 16%, rgba(255,253,248,.76), transparent 28%),
    var(--v2-mist);
  color: var(--v2-ink);
}

.v2-news__inner {
  width: min(100%, var(--wp--style--global--wide-size, 1240px));
  margin: 0 auto;
}

.v2-news__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
  gap: 2rem;
  margin: clamp(2.3rem, 4vw, 4rem) 0 2.2rem;
  align-items: end;
}

.v2-news__heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--v2-serif);
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .98;
}

.v2-news__heading > p {
  max-width: 420px;
  margin: 0 0 .35rem;
  color: var(--v2-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.v2-news__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr .92fr;
  gap: 1rem;
}

.v2-news-card {
  min-height: 340px;
  padding: clamp(1.5rem, 2.5vw, 2.3rem);
  border: 1px solid var(--v2-line);
  background: var(--v2-white);
  box-shadow: 0 18px 46px rgba(26,32,30,.055);
}

.v2-news-card .v2-kicker {
  margin: 0 0 2.4rem;
  color: var(--v2-red);
}

.v2-news-card h3 {
  margin: 0 0 .8rem;
  font-family: var(--v2-serif);
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.05;
}

.v2-news-card > p:not(.v2-kicker) {
  margin: 0;
  color: var(--v2-muted);
  line-height: 1.6;
}

.v2-news-card hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid var(--v2-line);
}

.v2-news-card--notice {
  background: var(--v2-ink);
  color: white;
  box-shadow: 0 22px 54px rgba(26,32,30,.15);
}

.v2-poster {
  margin: 0;
  cursor: zoom-in;
}

.v2-poster img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border: 1px solid rgba(255,255,255,.2);
  object-fit: contain;
}

.v2-lightbox.is-poster img {
  width: auto;
  height: auto;
  max-width: min(86vw, 620px);
  max-height: 72vh;
  object-fit: contain;
}

.v2-poster figcaption {
  margin-top: .8rem;
  color: rgba(255,255,255,.62);
  font-size: .66rem;
  line-height: 1.45;
}

.v2-social svg.is-facebook {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 900px) {
  .v2-news__grid {
    grid-template-columns: 1fr 1fr;
  }

  .v2-news-card--notice {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .v2-hero::before,
  .wp-block-group.v2-hero::before {
    background:
      radial-gradient(circle at 75% 14%, rgba(255,253,248,.8), transparent 34%),
      var(--v2-mist);
  }

  .v2-visual-plan {
    grid-column: 1 / -1;
  }

  .v2-news {
    padding: 4.5rem 1rem;
  }

  .v2-news__heading,
  .v2-news__grid {
    grid-template-columns: 1fr;
  }

  .v2-news__heading {
    gap: 1.1rem;
  }

  .v2-news__heading h2 {
    font-size: clamp(2.45rem, 10vw, 3.2rem);
  }

  .v2-news-card,
  .v2-news-card--notice {
    grid-column: auto;
    min-height: 0;
  }
}

/* v2.19 — disciplined image-documentation hierarchy. */
.v2-gallery--intro .v2-gallery__content,
.wp-block-group.v2-gallery__content {
  display: grid;
  width: min(100%, var(--v2-max));
  max-width: var(--v2-max);
  margin-right: auto !important;
  margin-left: auto !important;
  padding: clamp(5rem, 7.5vw, 7.5rem) 2rem;
  grid-template-columns: minmax(140px, .38fr) minmax(0, 1.08fr) minmax(250px, .82fr);
  gap: 1.35rem clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.v2-gallery--intro .v2-gallery__content .v2-kicker {
  grid-column: 1;
  grid-row: 1;
  max-width: none !important;
  margin: .35rem 0 0 !important;
}

.v2-gallery--intro .v2-gallery__content h2 {
  grid-column: 2 / -1;
  grid-row: 1;
  max-width: 820px !important;
  margin: 0 !important;
  font-size: clamp(3rem, 4.5vw, 4.7rem) !important;
  line-height: .98;
}

.v2-gallery--intro .v2-gallery__content > p.has-large-font-size {
  grid-column: 2 / 3;
  max-width: 620px !important;
  margin: 0 !important;
  font-size: 1.18rem !important;
  line-height: 1.55;
}

.v2-gallery--intro .v2-gallery__content .v2-gallery__badge {
  grid-column: 2;
  width: auto !important;
  max-width: none !important;
  margin: .5rem 0 0 !important;
  padding: .55rem .75rem;
  justify-self: start;
  font-size: .67rem !important;
  line-height: 1.3;
}

@media (max-width: 760px) {
  .v2-gallery--intro .v2-gallery__content,
  .wp-block-group.v2-gallery__content {
    display: block;
    padding: 4.5rem 1.2rem;
  }

  .v2-gallery--intro .v2-gallery__content .v2-kicker {
    margin: 0 0 1.1rem !important;
  }

  .v2-gallery--intro .v2-gallery__content h2 {
    margin: 0 0 1.3rem !important;
    font-size: clamp(2.45rem, 10vw, 3.2rem) !important;
    line-height: 1;
  }

  .v2-gallery--intro .v2-gallery__content > p.has-large-font-size {
    max-width: 30rem !important;
    font-size: 1.05rem !important;
    line-height: 1.55;
  }

  .v2-gallery--intro .v2-gallery__content .v2-gallery__badge {
    margin-top: 1.4rem !important;
  }
}

/* v2.26 — balanced single notice and easier-to-scan long-form sections. */
.v2-news--single {
  padding-top: clamp(4.5rem, 6vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 6vw, 6.5rem);
}

.v2-news--single .v2-news__heading {
  grid-template-columns: 1fr;
  margin-top: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1.8rem;
}

.v2-news--single .v2-news__grid {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.v2-news--single .v2-news-card {
  min-height: 0;
}

.v2-ensemble > .v2-section-label {
  grid-column: 1 / -1;
  align-self: start;
  margin-bottom: 0;
}

.v2-ensemble__title {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(560px, 1.3fr);
  align-items: start;
  gap: 2rem clamp(3rem, 6vw, 6rem);
}

.v2-ensemble__title > h2,
.v2-ensemble__title > p {
  width: auto !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.v2-ensemble__title > p {
  columns: 2;
  column-gap: clamp(2rem, 4vw, 3.5rem);
  column-rule: 1px solid var(--v2-line);
}

.v2-ensemble__photo,
.v2-ensemble-gallery {
  grid-column: 1 / -1;
}

.v2-study > .v2-section-label {
  align-self: start;
}

@media (max-width: 900px) {
  .v2-ensemble__title {
    grid-template-columns: 1fr;
  }

  .v2-ensemble__title > p {
    columns: 1;
    column-rule: 0;
  }
}

@media (max-width: 760px) {
  .v2-news--single {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .v2-news--single .v2-news__grid {
    grid-template-columns: 1fr;
  }

  .v2-ensemble > .v2-section-label {
    grid-column: auto;
  }

  .v2-ensemble__title {
    grid-column: auto;
    gap: 1.25rem;
  }
}
