.club-history {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 88% 10%, rgba(224, 165, 28, .15), transparent 25rem),
    linear-gradient(180deg, #f8f5ed 0%, #fff 48%, #f4f6f0 100%);
}

.club-history-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.club-history-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 3rem;
}

.club-history-head h2 {
  max-width: 760px;
  margin: .5rem 0 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.club-history-lead {
  color: #4d554d;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.club-history-lead strong {
  color: #123b2b;
}

.club-history-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 4rem;
}

.club-history-fact {
  min-height: 170px;
  padding: 1.75rem;
  border: 1px solid rgba(18, 59, 43, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 50px rgba(25, 42, 33, .07);
}

.club-history-fact strong {
  display: block;
  margin-bottom: .55rem;
  color: #c88a00;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.club-history-fact span {
  display: block;
  color: #173d2e;
  font-size: 1.02rem;
  line-height: 1.45;
}

.club-history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 5rem;
}

.club-history-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border-radius: 28px;
  color: #eaf4ed;
  background: #103d2c;
}

.club-history-card:nth-child(2),
.club-history-card:nth-child(3) {
  color: #26372e;
  background: #e5eadb;
}

.club-history-card .history-year {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: #e6a619;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.club-history-card:nth-child(2) .history-year,
.club-history-card:nth-child(3) .history-year {
  color: #7a690b;
}

.club-history-card h3 {
  margin: 0 0 .8rem;
  color: inherit;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.club-history-card p {
  margin: 0;
  color: inherit;
  line-height: 1.7;
  opacity: .9;
}

.club-archive-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.club-archive-head h2 {
  margin: .5rem 0 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.club-archive-hint {
  max-width: 320px;
  margin: 0;
  color: #5d655f;
  line-height: 1.55;
}

.club-archive-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.archive-document {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(18, 59, 43, .13);
  border-radius: 20px;
  color: #173d2e;
  background: #fff;
  box-shadow: 0 16px 45px rgba(25, 42, 33, .08);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.archive-document figure {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 0;
}

.archive-document:hover,
.archive-document:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(25, 42, 33, .15);
}

.archive-document-image {
  position: relative;
  flex: 1;
  min-height: 300px;
  padding: 1rem;
  background: #ebe9df;
}

.archive-document-image img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  display: block;
  filter: saturate(.92);
}

.archive-document-image::after {
  content: "Vergrößern";
  position: absolute;
  right: 1.7rem;
  bottom: 1.7rem;
  padding: .65rem .85rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(13, 50, 36, .9);
  font-size: .8rem;
  font-weight: 700;
}

.archive-document figcaption {
  padding: 1rem 1.15rem 1.2rem;
  line-height: 1.4;
}

.archive-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.archive-lightbox::backdrop {
  background: rgba(5, 16, 12, .94);
  backdrop-filter: blur(7px);
}

.archive-lightbox[open] {
  display: grid;
  place-items: center;
}

.archive-lightbox-body {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: .9rem;
  width: min(94vw, 1500px);
  height: min(92vh, 1100px);
  padding: 1rem;
}

.archive-lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.archive-lightbox-caption {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 1rem;
}

.archive-lightbox-close {
  position: fixed;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: #fff;
  background: rgba(10, 30, 22, .82);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .club-history-head,
  .club-history-grid {
    grid-template-columns: 1fr;
  }

  .club-history-facts,
  .club-archive-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .club-history {
    padding-inline: 1rem;
  }

  .club-history-facts,
  .club-archive-gallery {
    grid-template-columns: 1fr;
  }

  .club-archive-head {
    display: block;
  }

  .club-archive-hint {
    margin-top: 1rem;
  }

  .archive-document {
    min-height: 330px;
  }
}

.club-units {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 92% 22%, rgba(226, 166, 24, .18), transparent 23rem),
    #0d3929;
}

.club-units-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.club-units-oak {
  position: absolute;
  top: -7rem;
  right: -3rem;
  width: min(38vw, 470px);
  opacity: .09;
  transform: rotate(8deg);
  pointer-events: none;
}

.club-units-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 2.5rem;
}

.club-units .eyebrow {
  color: #e6aa25;
}

.club-units h2 {
  max-width: 760px;
  margin: .5rem 0 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.club-units-intro {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.club-units-crest-frame {
  overflow-x: auto;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 26px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  scrollbar-color: #d79a16 #e8e9e4;
  scrollbar-width: thin;
}

.club-units-crest-frame img {
  display: block;
  width: 100%;
  min-width: 980px;
  height: auto;
}

.club-units-scroll-hint {
  display: none;
  margin: .8rem 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: .85rem;
}

.club-units-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.club-unit-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .065);
}

.club-unit-card strong {
  display: block;
  margin-bottom: .45rem;
  color: #fff;
  font-size: 1.05rem;
}

.club-unit-card span {
  color: rgba(255, 255, 255, .7);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .club-units-head {
    grid-template-columns: 1fr;
  }

  .club-units-copy {
    grid-template-columns: 1fr;
  }

  .club-units-crest-frame img {
    width: 980px;
  }

  .club-units-scroll-hint {
    display: block;
  }

  .club-units-oak {
    width: 420px;
    right: -12rem;
  }
}
