/* =========================================
   PDF DOCUMENT SECTION
========================================= */

.pdf-section {
    padding: 60px 0;
}

.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pdf-item {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 20px 25px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 8px;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;
}

.pdf-item:hover {
    transform: translateY(-2px);

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}


/* PDF Icon */

.pdf-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #fff1f1;

    border-radius: 8px;
}

.pdf-icon i {
    font-size: 28px;

    color: #d32f2f;
}


/* Content */

.pdf-content {
    flex: 1;
}

.pdf-content h4 {
    margin: 0;

    font-size: 18px;

    font-weight: 600;

    color: #222;
}


/* Buttons */

.pdf-actions {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;
}

.pdf-actions .btn {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 10px 18px;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* View */

.pdf-actions .btn-view {
    background: #f1f1f1;

    color: #333;
}

.pdf-actions .btn-view:hover {
    background: #e3e3e3;

    color: #111;
}


/* Download */

.pdf-actions .btn-download {
    background: #22A652;

    color: #ffffff;
}

.pdf-actions .btn-download:hover {
    background: #22A652;

    color: #ffffff;
}


/* Empty */

.no-pdf {
    padding: 40px 20px;

    border: 1px dashed #ccc;

    border-radius: 8px;

    color: #777;
}


/* Mobile */

@media (max-width: 767px) {

    .pdf-section {
        padding: 40px 0;
    }

    .pdf-item {
        flex-wrap: wrap;

        padding: 18px;
    }

    .pdf-content {
        width: calc(100% - 75px);
        flex: none;
    }

    .pdf-actions {
        width: 100%;

        margin-top: 5px;
    }

    .pdf-actions .btn {
        flex: 1;

        justify-content: center;
    }

}