.pdm-product-documents {
    margin: 0 0 28px;
}

.pdm-product-documents h2 {
    margin: 0 0 18px;
}

.pdm-documents-sections {
    display: grid;
    gap: 18px;
}

.pdm-documents-section {
    background: #fff;
    border: 1px solid #dedbd5;
    border-radius: 6px;
    overflow: hidden;
}

.pdm-documents-section h3 {
    background: #f7f5f1;
    border-bottom: 1px solid #dedbd5;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
    padding: 12px 16px;
    text-transform: uppercase;
}

.pdm-documents-table-wrap {
    max-width: 100%;
    overflow-x: auto;
}

.pdm-documents-table {
    border-collapse: collapse;
    margin: 0;
    width: 100%;
}

.pdm-documents-table th,
.pdm-documents-table td {
    border: 0;
    border-bottom: 1px solid #ede9e2;
    padding: 14px 16px;
    text-align: left;
    vertical-align: middle;
}

.pdm-documents-table tr:last-child th,
.pdm-documents-table tr:last-child td {
    border-bottom: 0;
}

.pdm-documents-table th {
    color: #1f1f1f;
    font-weight: 650;
    width: 70%;
}

.pdm-documents-table td {
    text-align: right;
    white-space: nowrap;
}

.pdm-document-download {
    align-items: center;
    background: #1f1f1f;
    border: 1px solid #1f1f1f;
    border-radius: 4px;
    color: #fff;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    line-height: 1.2;
    min-height: 38px;
    padding: 9px 16px;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.pdm-document-download:focus,
.pdm-document-download:hover {
    background: #fff;
    border-color: #1f1f1f;
    color: #1f1f1f;
    text-decoration: none;
}

@media (max-width: 640px) {
    .pdm-documents-table th,
    .pdm-documents-table td {
        display: block;
        padding: 12px 14px;
        text-align: left;
        width: 100%;
    }

    .pdm-documents-table th {
        border-bottom: 0;
        padding-bottom: 4px;
    }

    .pdm-documents-table td {
        padding-top: 4px;
        white-space: normal;
    }

    .pdm-document-download {
        width: 100%;
    }
}
