/* --------------------------
     HERO SECTION
--------------------------- */
.page-hero {
    background: linear-gradient(135deg, #0b2c3d, #14597a);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}
.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
}
.page-hero p {
    font-size: 18px;
    opacity: .85;
}


/* --------------------------
     DOCUMENT LIST
--------------------------- */
.docs-section {
    padding: 60px 20px;
    background: #f5f7fa;
}

.docs-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doc-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    transition: .25s ease;
}

.doc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.doc-icon {
    font-size: 42px;
    color: #e40000;
    min-width: 50px;
}

.doc-info h3 {
    font-size: 20px;
    font-weight: 700;
}
.doc-date {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 14px;
}
.doc-date i {
    margin-right: 4px;
}


/* --------------------------
     ACTION BUTTONS
--------------------------- */
.doc-actions {
    display: flex;
    gap: 12px;
}

.btn-view,
.btn-download {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s;
}

.btn-view {
    background: #14597a;
    color: #fff;
}
.btn-view:hover {
    background: #0b2c3d;
}

.btn-download {
    background: #f3c22c;
    color: #000;
}
.btn-download:hover {
    background: #d9aa1c;
}


/* --------------------------
     MOBILE FIXES
--------------------------- */
@media (max-width: 700px) {
    .doc-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .doc-actions {
        width: 100%;
        justify-content: center;
    }
}
