.trennlinie
{
    border-bottom: 5px solid #e8e8e8;
}

.card-inner{
    margin-left: 3rem;
    margin-top: 10px;
}

.votes {
  font-size: 1.3rem;
}

.shoutbox_hidden {
  display: none;
}

.shoutbox_umbruch {
   white-space: pre-wrap;
}

/* Zeitungsticker-Panel */
.ticker-panel {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}
.ticker-panel-header {
    background: #61883c;
    color: #fff;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ticker-panel-label {
    font-weight: 700;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ticker-panel-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: ticker-blink 1.2s ease-in-out infinite;
    margin-left: auto;
}
.ticker-panel-live {
    font-size: 0.8em;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
}
@keyframes ticker-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}
.ticker-panel-body {
    background: #fff;
}
.ticker-entry {
    display: flex;
    align-items: baseline;
    padding: 7px 14px;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.3;
}
.ticker-entry:last-child {
    border-bottom: none;
}
.ticker-entry-dot {
    color: #c0392b;
    font-size: 1.1em;
    margin-right: 8px;
    flex-shrink: 0;
}
.ticker-entry:nth-child(even) {
    background-color: #f7f7f7;
}
.ticker-entry-text {
    font-weight: 300;
    font-size: 1em;
    flex: 1;
    color: #1a1a2e;
}
.ticker-entry-text:hover {
    color: #c0392b;
    text-decoration: none;
}
.ticker-entry-liga {
    font-size: 0.75em;
    white-space: nowrap;
    margin-left: 8px;
    flex-shrink: 0;
}
.ticker-entry-time {
    font-size: 0.85em;
    color: #aaa;
    white-space: nowrap;
    margin-left: 10px;
    flex-shrink: 0;
}
