/* Bowhunter Core — Facebook-szerű forgó borítókép (téma-független).
   Középre helyezett, a tartalom szélességére korlátozott (nincs felskálázás). */

.bhm-cover {
  position: relative;
  width: min(1180px, calc(100% - 2.5rem));
  margin: clamp(1rem, 3vw, 2rem) auto clamp(1.5rem, 4vw, 3rem);
  aspect-ratio: 16 / 7;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px -22px rgba(30, 42, 27, 0.55);
  background-color: var(--bhm-contrast);
}
.bhm-cover__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}
.bhm-cover__layer.is-active { opacity: 1; }
.bhm-cover__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 24, 20, 0.28) 0%,
    rgba(20, 24, 20, 0.10) 38%,
    rgba(20, 24, 20, 0.78) 100%);
}
.bhm-cover__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 2.9rem;
  color: #f3eee3;
}
.bhm-cover__overline {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ece3ce;
  margin: 0 0 0.55rem;
}
.bhm-cover__title {
  font-family: var(--bhm-font-serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 0.6rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.bhm-cover__tagline {
  font-family: var(--bhm-font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.45;
  max-width: 48ch;
  margin: 0;
  color: #f1ebda;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
@media (max-width: 700px) {
  .bhm-cover { aspect-ratio: auto; min-height: 58vh; }
}
