/* werbung.html — Reine Werbebanner-Übersicht (Standard IAB-Formate) */

.page-head {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin: 12px 0 16px; font-size: clamp(48px, 6vw, 88px); }

.banners-section {
  padding: 60px 0 100px;
}

.banners-group {
  margin-bottom: 60px;
}
.banners-group:last-child { margin-bottom: 0; }

.banners-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.banners-group-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  margin: 0;
  letter-spacing: -.015em;
}
.banners-group-head h2 em { font-style: italic; }
.banners-group-head .meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.6;
}
.banners-group-head .meta .fmt { color: var(--red-2); }

.banners-group.premium .banners-group-head h2 em { color: var(--gold); }
.banners-group.standard .banners-group-head h2 em { color: var(--red-2); }

/* --- Premium: 300 × 250 (Medium Rectangle) --- */
.banners-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, 300px);
  justify-content: center;
  gap: 32px;
}
.werb-banner.premium-300x250 {
  width: 300px;
  height: 250px;
  position: relative;
  background: var(--ink-2);
  border: 1px solid rgba(212,168,106,.4);
  overflow: hidden;
  text-decoration: none;
  color: var(--ivory);
  display: block;
  transition: all .3s ease;
}
.werb-banner.premium-300x250:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(212,168,106,.15);
}
.werb-banner.premium-300x250 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.werb-banner.premium-300x250 .tag-corner {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--gold);
  color: var(--ink);
  z-index: 2;
}
.werb-banner.premium-300x250 .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(11,7,8,.85) 45%);
  color: #fff;
}
.werb-banner.premium-300x250 .cap small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 3px;
}
.werb-banner.premium-300x250 .cap .title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.005em;
  line-height: 1.15;
}

/* --- Standard: 468 × 60 (Full Banner) — 3 nebeneinander --- */
.banners-grid-standard {
  display: grid;
  grid-template-columns: repeat(3, 468px);
  justify-content: center;
  gap: 20px;
}
.werb-banner.standard-468x60 {
  width: 468px;
  height: 60px;
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: var(--ivory);
  display: flex;
  align-items: stretch;
  transition: all .3s ease;
}
.werb-banner.standard-468x60:hover {
  transform: translateY(-2px);
  border-color: var(--red-2);
}
.werb-banner.standard-468x60 .thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.werb-banner.standard-468x60 .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.werb-banner.standard-468x60 .info {
  flex: 1;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.werb-banner.standard-468x60 .info .title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: -.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.werb-banner.standard-468x60 .info .partner {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.werb-banner.standard-468x60 .cta-arrow {
  align-self: center;
  padding: 0 16px 0 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-2);
  border-left: 1px solid var(--line);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s, color .2s;
  flex-shrink: 0;
}
.werb-banner.standard-468x60:hover .cta-arrow { gap: 12px; color: var(--ivory); }
.werb-banner.standard-468x60 .tag-corner {
  position: absolute;
  top: 4px; right: 4px;
  padding: 2px 6px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(11,7,8,.8);
  border: 1px solid var(--line-2);
  color: var(--muted);
}

.no-banners {
  padding: 60px 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
}

.werb-cta {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.werb-cta h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 12px;
  letter-spacing: -.015em;
}
.werb-cta p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-dim);
  font-size: 18px;
  margin: 0 0 28px;
}

/* --- Responsive Anpassungen für IAB-Formate --- */
@media (max-width: 1500px) {
  .banners-grid-standard { grid-template-columns: repeat(2, 468px); }
}
@media (max-width: 1000px) {
  .banners-grid-standard { grid-template-columns: 468px; }
}
@media (max-width: 520px) {
  .banners-grid-premium { grid-template-columns: 1fr; }
  .banners-grid-premium .werb-banner.premium-300x250 {
    width: 100%; max-width: 300px; margin: 0 auto;
  }
  .banners-grid-standard { grid-template-columns: 1fr; }
  .werb-banner.standard-468x60 {
    width: 100%;
    max-width: 468px;
    margin: 0 auto;
  }
}
