.rk-dokumente-wrap {
    width: 100%;
    max-width: none;
    font-family: inherit;
}

.rk-dokumente-kategorie__title {
    margin: 0 0 12px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rk-dokumente-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.rk-dokument-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.rk-dokument-card:hover {
    border-color: #ea5e20;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.rk-dokument-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ea5e20;
    border-radius: 999px;
    color: #fff;
    flex-shrink: 0;
}

.rk-dokument-card__icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.rk-dokument-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rk-dokument-card__title {
    margin: 0;
    color: #1c2539;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.rk-dokument-card__desc {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.rk-dokument-card__btn {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding: 9px 16px;
    background: #ea5e20;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background 0.2s ease;
}

.rk-dokument-card__btn:hover {
    background: #d14e12;
    color: #fff;
}

@media (max-width: 600px) {
    .rk-dokumente-grid {
        grid-template-columns: 1fr;
    }
}
