/* ========================================================
   7. FILAMENT TABLE & INFO SECTIONS (Article-Style)
======================================================== */


.content-single {
  display: grid;
  grid-template-columns: minmax(1fr) 320px;
  gap: 24px;
  padding: 15px;
  align-items: start;
}

.main-area {
  width: 100%;
}


/* Titel-Bereich analog zur Content-Box / Article-Header */
.filament-titel {
    padding: 20px;
    margin-bottom: 24px;
    background: var(--weiss);
    color:black;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--rot);
    border-radius: 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.03);
}

.filament-titel h2 {
    margin: 0 0 15px 0;
    color: var(--schwarz);
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.2;
}

.filament-titel p {
    margin: 0;
    color: var(--text);
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

/* Tabellen-Container analog zu .article-content */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
      color:black;
    background: var(--weiss);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.03);
}

/* Haupttabelle */
.filament-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
    color: var(--grau);
}

.filament-table thead tr {
    background-color: var(--flaeche-hell, #f4f6f8);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.filament-table th {
    padding: 14px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--schwarz);
}

.filament-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text);
    font-family: Arial, sans-serif;
}

.filament-table tbody tr:last-child td {
    border-bottom: none;
}

.filament-table tbody tr:hover {
    background-color: var(--flaeche-hell, #fafafa);
}

/* Infobereich Container */
.filament-info-section {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Infoboxen analog zu .article-box / .article-content */
.filament-info-box {
    padding: 25px;
      color:black;
    background: var(--weiss);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--rot);
    border-radius: 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.03);
}

.filament-info-section h3 {
    margin: 0 0 15px 0;
    color: var(--schwarz);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Listen-Styling analog zu .article-content ul/li */
.filament-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.filament-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text);
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

.filament-list li:last-child {
    margin-bottom: 0;
}

/* Aufzählungspunkte als dezente Blöcke/Zeichen */
.filament-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--rot);
    font-size: 12px;
}

.warning-list li::before {
    content: '▲';
    color: var(--rot);
}

.storage-list li::before {
    content: '■';
    color: var(--schwarz);
}

/* Voting Box Abstand */
.card-vote {
    margin-top: 30px;
    padding: 20px;
    background: var(--weiss);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}