.fpd-documents {
    margin: 20px 0;
}

.fpd-list {
    display: grid;
    gap: 8px;
}

.fpd-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    background: #fff;
    text-decoration: none !important;
    line-height: 1.35;
    box-shadow: none;
}

.fpd-card:hover,
.fpd-card:focus {
    border-color: #cbd5e1;
    background: #fafafa;
    text-decoration: none !important;
}

.fpd-date {
    flex: 0 0 auto;
    min-width: 92px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.fpd-title {
    color: #111827;
    font-size: 15px;
}

.fpd-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.fpd-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    text-decoration: none !important;
}

.fpd-page.is-active {
    font-weight: 700;
    border-color: #111827;
}

.fpd-message {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

@media (max-width: 600px) {
    .fpd-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .fpd-date {
        min-width: 0;
    }
}
