/* ===== ARTICLE BODY ===== */
.article-body { padding: 35px 0; }
.article-body h2 { font-family: 'Roboto Slab', serif; font-size: 1.55em; font-weight: 700; color: #111; margin: 40px 0 18px; padding-bottom: 10px; border-bottom: 2px solid #f1f3f4; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.15em; font-weight: 700; color: #2e3246; margin: 28px 0 12px; }
.article-body p { margin-bottom: 16px; color: #2c3e50; }
.article-body strong { color: #111; }
.article-body ul { padding-left: 0; list-style: none; margin-bottom: 16px; }
.article-body ul li { padding: 4px 0 4px 22px; position: relative; }
.article-body ul li::before { content: '\f111'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #ff2453; font-size: 7px; position: absolute; left: 2px; top: 9px; }
.article-body ol { padding-left: 0; list-style: none; margin-bottom: 16px; counter-reset: ol-cnt; }
.article-body ol li { padding: 5px 0 5px 30px; position: relative; counter-increment: ol-cnt; }
.article-body ol li::before { content: counter(ol-cnt); position: absolute; left: 0; top: 4px; width: 22px; height: 22px; background: #2e3246; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.article-body hr { border: none; border-top: 1px solid #f1f3f4; margin: 35px 0; }
.article-body em { color: #7f8c8d; font-style: italic; font-size: 0.9em; }


/* ===== ORGANIZATIONS WIDGET 3 ===== */
.topliste-wrap { margin: 20px 0 30px; }
.org3-list { display: flex; flex-direction: column; gap: 12px; margin-top: 15px; }
.org3-item { position: relative; }
.org3-card {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(109,141,173,0.25);
  transition: box-shadow 0.4s ease;
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  overflow: visible;
  padding: 12px 0;
}
.org3-card:hover { box-shadow: 0 15px 40px rgba(109,141,173,0.5); }

/* rank badge */
.org3-rank {
  position: absolute;
  top: -14px;
  left: 30px;
  width: 30px;
  height: 42px;
  background: #be2edd;
  border-radius: 5px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.org3-rank::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background: rgba(0,0,0,0.1);
  border-radius: 5px 5px 0 0;
}
.org3-item:first-child .org3-rank { background: #ff2453; }
.org3-rank span { color: #fff; font-weight: 700; font-size: 1em; position: relative; z-index: 1; }

/* logo col */
.org3-logo {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 10px 30px;
  border-right: 1px solid #d6d7db;
  height: 80px;
}
.org3-logo img { width: 120px; height: 55px; object-fit: contain; border-radius: 5px; background: #f8f9fa; }

/* terms col */
.org3-terms {
  grid-column: 2;
  grid-row: 1;
  padding: 10px 20px;
  border-right: 1px solid #d6d7db;
}
.org3-terms-label { font-size: 12px; color: #7f8c8d; font-weight: 400; margin-bottom: 3px; }
.org3-terms-value { font-size: 26px; font-weight: 700; color: #111; line-height: 1.1; margin-bottom: 4px; }
.org3-terms-meta { font-size: 12px; color: #7f8c8d; }
.org3-terms-meta strong { color: #2e3246; font-size: 13px; }

/* rating col */
.org3-rating {
  grid-column: 3;
  grid-row: 1;
  padding: 10px 20px;
  border-right: 1px solid #d6d7db;
  text-align: center;
  min-width: 140px;
}
.org3-rating-label { font-size: 11px; color: #7f8c8d; margin-bottom: 5px; }
.org3-stars { display: flex; justify-content: center; gap: 2px; margin-bottom: 4px; }
.org3-stars i { color: #ff2453; font-size: 14px; }
.org3-rating-num {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff; border: 1px solid #d6d7db;
  border-radius: 20px; padding: 4px 12px;
  font-weight: 700; font-size: 0.95em; color: #111;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.org3-rating-num i { color: #ff2453; font-size: 12px; }

/* button col */
.org3-buttons {
  grid-column: 4;
  grid-row: 1;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}
.btn-green {
  display: block; text-align: center;
  padding: 10px 20px;
  background: #2ecc71; color: #fff;
  border-radius: 23px; font-weight: 700; font-size: 0.9em;
  box-shadow: 0 0 15px rgba(45,221,108,0.4);
  transition: box-shadow 0.4s;
}
.btn-green:hover { box-shadow: 0 0 15px rgba(45,221,108,0.7); text-decoration: none; color: #fff; }
.btn-grey {
  display: block; text-align: center;
  padding: 9px 20px;
  background: #7f8c8d; color: #fff;
  border-radius: 23px; font-weight: 400; font-size: 0.85em;
  transition: box-shadow 0.4s;
}
.btn-grey:hover { box-shadow: 0 0 12px rgba(127,140,141,0.5); text-decoration: none; color: #fff; }

/* tc row */
.org3-tc {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 11px; color: #b2bec3;
  padding: 6px 30px 4px;
  border-top: 1px solid #f1f3f4;
}

/* badges */
.badge { display: inline-block; padding: 2px 9px; border-radius: 10px; font-size: 11px; font-weight: 700; margin-left: 5px; vertical-align: middle; }
.badge-fs  { background: #e8f4fd; color: #2980b9; }
.badge-new { background: #eafaf1; color: #27ae60; }
.badge-hot { background: #fdedee; color: #e74c3c; }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; margin: 20px 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.92em; }
thead th { background: #2e3246; color: #fff; padding: 12px 15px; text-align: left; font-weight: 700; }
tbody tr:nth-child(even) { background: #f8f9fa; }
tbody tr:hover { background: #f1f3f4; }
tbody td { padding: 11px 15px; border-bottom: 1px solid #ecf0f1; color: #2c3e50; vertical-align: middle; }
.dot-green { color: #2ecc71; }
.dot-yellow { color: #f39c12; }
.dot-red { color: #e74c3c; }

/* ===== INFO BOXES ===== */
.info-box  { background: #eaf6fb; border-left: 4px solid #3498db; border-radius: 5px; padding: 16px 20px; margin: 18px 0; font-size: 0.95em; }
.info-box i { color: #3498db; margin-right: 8px; }
.warn-box  { background: #fef9e7; border-left: 4px solid #f39c12; border-radius: 5px; padding: 16px 20px; margin: 18px 0; font-size: 0.95em; }
.warn-box i { color: #f39c12; margin-right: 8px; }
.ok-box    { background: #eafaf1; border-left: 4px solid #2ecc71; border-radius: 5px; padding: 16px 20px; margin: 18px 0; font-size: 0.95em; }
.ok-box i  { color: #2ecc71; margin-right: 8px; }

/* ===== PRO TIP ===== */
.pro-tip { background: #eafaf1; border-radius: 5px; padding: 16px 20px; margin: 18px 0; display: flex; gap: 14px; align-items: flex-start; }
.pro-tip-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.pro-tip-text { font-size: 0.95em; }
.pro-tip-text strong { color: #27ae60; display: block; margin-bottom: 4px; font-size: 1em; }

/* ===== WAGERING AMPEL ===== */
.ampel-bar { display: flex; border-radius: 5px; overflow: hidden; margin: 18px 0; height: 48px; }
.ampel-seg { display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85em; color: #fff; flex: 1; gap: 6px; }
.ampel-green  { background: #27ae60; }
.ampel-lime   { background: #2ecc71; }
.ampel-yellow { background: #f39c12; }
.ampel-orange { background: #e67e22; }
.ampel-red    { background: #e74c3c; }

/* ===== STICKY / NON-STICKY ===== */
.sticky-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0; }
.sticky-box { border-radius: 5px; padding: 20px; }
.sticky-bad  { background: #fdedee; border-top: 3px solid #e74c3c; }
.sticky-good { background: #eafaf1; border-top: 3px solid #2ecc71; }
.sticky-box h4 { margin-bottom: 10px; font-size: 1em; }
.sticky-bad  h4 { color: #e74c3c; }
.sticky-good h4 { color: #27ae60; }
.sticky-box p  { font-size: 0.9em; color: #2c3e50; margin-bottom: 8px; }
.sticky-box .result { font-size: 1em; font-weight: 700; padding: 8px 12px; border-radius: 5px; margin-top: 8px; }
.sticky-bad  .result { background: rgba(231,76,60,0.1);  color: #c0392b; }
.sticky-good .result { background: rgba(46,204,113,0.1); color: #27ae60; }

/* ===== PROGRESS BARS (Spielgewichtung) ===== */
.progress-bars { margin: 18px 0; }
.progress-item { margin-bottom: 12px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.88em; color: #2c3e50; margin-bottom: 4px; }
.progress-label span { font-weight: 700; }
.progress-track { background: #f1f3f4; border-radius: 20px; height: 14px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 20px; transition: width 1s ease; }
.fill-100 { background: #2ecc71; width: 100%; }
.fill-15  { background: #f39c12; width: 15%; }
.fill-5   { background: #e74c3c; width: 5%; }
.fill-10  { background: #e67e22; width: 10%; }

/* ===== STEP CARDS (Experten-Tipps) ===== */
.step-cards { display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.step-card { display: flex; gap: 16px; align-items: flex-start; background: #f1f3f4; border-radius: 5px; padding: 16px 18px; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: #2e3246; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1em; flex-shrink: 0; }
.step-card p { font-size: 0.93em; color: #2c3e50; margin: 0; }
.step-card strong { color: #111; }

/* ===== SCHRITT-FÜR-SCHRITT ===== */
.step-chain { display: flex; flex-direction: column; gap: 0; margin: 18px 0; }
.step-chain-item { display: flex; gap: 16px; }
.step-chain-left { display: flex; flex-direction: column; align-items: center; }
.step-chain-circle { width: 40px; height: 40px; border-radius: 50%; background: #ff2453; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1em; flex-shrink: 0; }
.step-chain-line { width: 2px; flex: 1; background: #f1f3f4; min-height: 20px; }
.step-chain-item:last-child .step-chain-line { display: none; }
.step-chain-content { padding: 6px 0 20px; }
.step-chain-content h4 { font-size: 1em; font-weight: 700; color: #111; margin-bottom: 5px; }
.step-chain-content p { font-size: 0.9em; color: #7f8c8d; margin: 0; }

/* ===== GGL BLOCK ===== */
.ggl-block { background: #f1f3f4; border-radius: 5px; padding: 22px 25px; margin: 20px 0; }
.ggl-block h3 { color: #111; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.ggl-shield { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: #2ecc71; border-radius: 50%; color: #fff; font-size: 14px; }
.ggl-list { list-style: none; padding: 0; margin: 12px 0; }
.ggl-list li { padding: 5px 0 5px 26px; position: relative; font-size: 0.93em; color: #2c3e50; }
.ggl-list li::before { content: '\f058'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #2ecc71; position: absolute; left: 0; top: 6px; font-size: 14px; }
.helpline { background: #fff; border-radius: 5px; padding: 12px 16px; margin-top: 14px; border: 1px solid #dfe6e9; font-size: 0.88em; color: #7f8c8d; }
.helpline a { color: #ff2453; text-decoration: underline; }

/* ===== FLOAT BAR ===== */
.float-bar { position: fixed; bottom: -80px; left: 0; right: 0; background: #2e3246; padding: 12px 20px; z-index: 999; transition: bottom 0.4s ease; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.float-bar.visible { bottom: 0; }
.float-bar-text { color: #fff; font-size: 0.9em; }
.float-bar-text span { color: #2ecc71; font-weight: 700; }
.float-bar-btn { display: inline-block; padding: 10px 28px; background: #2ecc71; color: #fff; border-radius: 23px; font-weight: 700; font-size: 0.9em; box-shadow: 0 0 15px rgba(45,221,108,0.5); transition: all 0.3s; }
.float-bar-btn:hover { box-shadow: none; text-decoration: none; color: #fff; }

/* ===== DISCLAIMER ===== */
.disclaimer { background: #f1f3f4; border-radius: 5px; padding: 12px 18px; font-size: 0.78em; color: #7f8c8d; margin: 20px 0; text-align: center; }
.disclaimer a { color: #ff2453; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .org3-card { grid-template-columns: 160px 1fr; grid-template-rows: auto auto auto; }
  .org3-rating { grid-column: 1; grid-row: 2; border-right: none; border-top: 1px solid #f1f3f4; }
  .org3-buttons { grid-column: 2; grid-row: 2; border-top: 1px solid #f1f3f4; }
  .org3-tc { grid-row: 3; }
}
@media (max-width: 640px) {
  .article-hero h1 { font-size: 1.5em; }
  .org3-card { grid-template-columns: 1fr; }
  .org3-logo { border-right: none; border-bottom: 1px solid #f1f3f4; height: auto; padding: 16px 20px; }
  .org3-terms { border-right: none; border-bottom: 1px solid #f1f3f4; }
  .org3-rating { grid-column: 1; grid-row: auto; border-right: none; border-bottom: 1px solid #f1f3f4; }
  .org3-buttons { grid-column: 1; grid-row: auto; }
  .toc-list { columns: 1; }
  .sticky-grid { grid-template-columns: 1fr; }
  .float-bar { flex-direction: column; text-align: center; }
  .ampel-bar { font-size: 0.75em; }
}
