/* =============================================
   Subpages – Aggressive Shared Styles
   Gleicher Stil wie die Landingpage
   ============================================= */

/* --- Main Content Section --- */
.section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 161, 77, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(0, 75, 43, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #f0f1f3 0%, #ffffff 40%, #f0f1f3 100%);
  padding: 48px 0 60px;
  position: relative;
}

/* Diagonal stripes on main section */
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(0, 0, 0, 0.015) 80px,
    rgba(0, 0, 0, 0.015) 82px
  );
  pointer-events: none;
  z-index: 0;
}

.section > * {
  position: relative;
  z-index: 1;
}

/* --- Dark Section Variant (like hallen-info) --- */
.section-dark {
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
    linear-gradient(160deg, var(--clr-cta) 0%, #003a20 100%);
  color: var(--clr-white);
  padding: 60px 0;
  position: relative;
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.02) 60px,
    rgba(255, 255, 255, 0.02) 62px
  );
  pointer-events: none;
  z-index: 0;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.section-dark h2,
.section-dark h3 {
  color: var(--clr-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

/* --- Orange Section Variant (like index hero gradient) --- */
.section-orange {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.15) 0%, transparent 40%),
    linear-gradient(160deg, rgb(232, 161, 77) 0%, rgb(200, 120, 40) 50%, rgb(170, 95, 25) 100%);
  color: var(--clr-white);
  padding: 60px 0;
  position: relative;
}

.section-orange::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(0, 0, 0, 0.03) 60px,
    rgba(0, 0, 0, 0.03) 62px
  );
  pointer-events: none;
  z-index: 0;
}

.section-orange > * {
  position: relative;
  z-index: 1;
}

.section-orange h2,
.section-orange h3 {
  color: var(--clr-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.section-orange p {
  color: rgba(255, 255, 255, 0.9);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Aggressive Card Base --- */
.card,
[class*="-card"] {
  border-top: 3px solid var(--clr-primary);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              border-top-color 0.3s ease;
}

.card:hover,
[class*="-card"]:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* --- Aggressive Typography Overrides --- */
.section h2,
.section-dark h2,
.section-orange h2 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section h3,
.section-dark h3,
.section-orange h3 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Back Links --- */
.back-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
  transition: padding-left 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-link:hover {
  padding-left: 8px;
}

/* --- Tables aggressive --- */
table th {
  background: var(--clr-cta);
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  font-size: 12px;
}

/* --- CTA Sections --- */
.cta-section {
  text-align: center;
  padding: 48px 16px;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-section p {
  margin-bottom: 20px;
  font-size: 16px;
}

/* --- Filter / Pill Buttons --- */
.filter-bar a,
.filter-bar button,
.news-sub-link {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Form Inputs aggressive --- */
input:focus,
textarea:focus,
select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(232, 161, 77, 0.2);
}

/* --- Diagonal Divider between page-hero and section --- */
.page-hero + .section::before,
.page-hero + .section-dark::before,
.page-hero + .section-orange::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

/* --- Sponsor Cards --- */
.sponsor-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border-top: 3px solid var(--clr-primary);
  box-shadow: var(--shadow);
}

.sponsor-card img {
  max-height: 80px;
  margin-bottom: 16px;
}

.sponsor-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

/* --- Info/Stat Cards --- */
.stat-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border-top: 3px solid var(--clr-primary);
  box-shadow: var(--shadow);
}

.stat-card .stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--clr-cta);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 13px;
  color: var(--clr-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* --- Buttons more aggressive --- */
.btn-primary {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 900;
  font-size: 14px;
  padding: 14px 28px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 75, 43, 0.3);
}

/* --- Presse Page --- */
.intro-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.intro-highlight { background: var(--clr-light); padding: 1.5rem; border-radius: var(--radius-sm); }
.intro-highlight ul { list-style: none; padding: 0; }
.intro-highlight li { padding: .4rem 0; border-bottom: 1px solid #e5e7eb; }
.intro-highlight li:last-child { border-bottom: none; }
.press-controls { margin-bottom: 1.5rem; }
.press-controls input { padding: 8px 12px; border: 1px solid #d1d5db; border-radius: var(--radius-sm); width: 100%; max-width: 400px; }
.press-list { display: flex; flex-direction: column; gap: 1.5rem; }
.press-meta { color: #6b7280; font-size: .9rem; margin-top: .25rem; }
.press-more { display: none; }
.press-item.open .press-more { display: block; }
.press-footer { margin-top: 1rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.facts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.facts-column { background: #fff; padding: 1.5rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.facts-downloads { list-style: none; padding: 0; }
.facts-downloads li { padding: .4rem 0; }
.facts-note { font-size: .85rem; color: #6b7280; margin-top: .5rem; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.media-card { background: #fff; padding: 1.5rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.media-note { font-size: .85rem; color: #6b7280; margin-top: .5rem; }
.media-legal { font-size: .85rem; color: #6b7280; margin-top: 1.5rem; }
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.contact-aside { background: var(--clr-light); padding: 1.5rem; border-radius: var(--radius-sm); }
.contact-note { font-size: .85rem; color: #6b7280; margin-top: .5rem; }
@media (max-width: 700px) {
    .intro-grid, .contact-grid { grid-template-columns: 1fr; }
}


