/* MDB Dokumente Widget v2 — pixo.dev for Mitteldeutsche Baustoffe GmbH */

/* Grid: auto-fill, responsive */
.mdb-dok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    width: 100%;
}

/* Kategorie-Box */
.mdb-dok-box {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 16px;
}

.mdb-dok-box-heading {
    margin: 0 0 10px 0;
    line-height: 1.3;
}

/* Liste */
.mdb-dok-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mdb-dok-item {
    margin: 0;
    padding: 0;
}

.mdb-dok-item a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.mdb-dok-item a:hover {
    text-decoration: none;
    opacity: 0.85;
}

/* Icon */
.mdb-dok-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.mdb-dok-icon i,
.mdb-dok-icon svg {
    display: block;
    font-size: 18px;
    color: #6D7220;
    transition: color 0.2s ease;
}

/* Label */
.mdb-dok-label {
    flex: 1;
    line-height: 1.4;
}

/* Badge */
.mdb-dok-badge {
    display: inline-block;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 3px;
    background-color: #6D7220;
    color: #ffffff;
    flex-shrink: 0;
    align-self: center;
    line-height: 1.5;
}

/* Empty */
.mdb-dok-empty {
    color: #999;
    font-style: italic;
    font-size: 0.9em;
}

/* Responsive: auf kleinen Screens eine Spalte */
@media (max-width: 600px) {
    .mdb-dok-grid {
        grid-template-columns: 1fr;
    }
}
