/* ============================================================
   CHAIRMAN'S MESSAGE — Слово Председателя
   ============================================================ */

/* ===== HERO CAROUSEL ===== */

.cm-hero {
  position: relative;
  background: var(--navy-dark, #0F2440);
}

.cm-hero__splide .splide__track {
  overflow: hidden;
}

.cm-hero__splide .splide__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cm-hero__splide .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cm-hero__slide {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  max-height: 70vh;
  background: var(--navy-dark, #0F2440);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cm-hero__slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter:
    brightness(1.02) contrast(1.06)
    saturate(0.86) sepia(0.06) hue-rotate(-2deg);
}

@media (max-width: 768px) {
  .cm-hero__slide {
    aspect-ratio: 4 / 3;
    max-height: 60vh;
  }
}

/* Nav arrows + counter */
.cm-hero__nav {
  position: absolute;
  bottom: 20px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 36, 64, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 2px;
}

.cm-hero__nav button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(250, 247, 238, 0.8);
  transition: color 200ms ease;
}

.cm-hero__nav button:hover {
  color: var(--gold, #B8860B);
}

.cm-hero__counter {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(250, 247, 238, 0.6);
  letter-spacing: 0.06em;
  min-width: 36px;
  text-align: center;
}

/* ===== ARTICLE ===== */

.cm-article {
  background: var(--paper, #FAF7EE);
  padding: clamp(4rem, 8vh, 6rem) 0;
}

.cm-article__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.cm-article__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy, #7A1E2E);
  display: block;
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.cm-article__title {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy, #1B3A5C);
  margin: 0 0 clamp(1.5rem, 3vh, 2rem);
  max-width: 700px;
}

.cm-article__hairline {
  width: 80px;
  height: 1.5px;
  background: var(--gold, #B8860B);
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.cm-article__body {
  column-count: 2;
  column-gap: 48px;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.cm-article__body p {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: var(--ink-soft, #3D4454);
  margin: 0 0 1.5em;
  break-inside: avoid;
}

.cm-article__body p:first-of-type::first-letter {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 4.2em;
  float: left;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 6px;
  color: var(--gold, #B8860B);
}

@media (max-width: 768px) {
  .cm-article__body {
    column-count: 1;
  }
}

.cm-article__signature {
  display: flex;
  justify-content: flex-end;
}

.cm-article__signature-inner {
  border-left: 2px solid var(--gold, #B8860B);
  padding-left: 24px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cm-article__name {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--navy, #1B3A5C);
  line-height: 1.3;
}

.cm-article__role {
  font-family: 'Literata', Georgia, serif;
  font-size: 14px;
  color: var(--ink-muted, #6B7280);
  line-height: 1.45;
}

@media (max-width: 640px) {
  .cm-article__signature {
    justify-content: flex-start;
  }
  .cm-article__signature-inner {
    text-align: left;
  }
}
