/* ═══════════════════════════════════════
   DOCUMENTS PAGE STYLES
   ═══════════════════════════════════════ */

/* Page Title */
.page-title {
    text-align: center;
    padding: 60px 0 40px;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 2px;
}

/* Documents Section */
.documents-section {
    padding: 0 0 60px;
}

.doc-category {
    margin-bottom: 30px;
}

.doc-category-title {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Document Card */
.doc-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s;
}

.doc-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.doc-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.doc-meta {
    font-size: 12px;
    color: #888;
}

.doc-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.doc-link {
    color: #c41e3a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.doc-link:hover {
    text-decoration: underline;
}

.doc-changes {
    font-size: 12px;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 32px;
    }

    .doc-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}