.document-embed {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 32px 0;
}

.document-embed--attachments {
    padding: 24px;
    background: #f7fafc;
    border: 1px solid #c1cddb;
    border-radius: 12px;
}

.document-embed--single {
    margin: 12px 0;
}

.document-embed .document-files {
    width: 100%;
    margin: 0;
    padding: 24px;
    border-color: #c1cddb;
    box-shadow: none;
}

.document-embed--attachments .document-files {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.document-embed--attachments .document-files + .document-files {
    margin-top: 12px;
}

.document-embed .document-files__title {
    color: #002d5a;
    font-size: 20px;
}

.document-embed .document-files__content {
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.document-embed .document-files__file {
    padding: 6px 0 12px;
}

.document-embed .document-files__file-name {
    white-space: normal;
}

.document-embed .document-files__file-download {
    gap: 0;
}

.document-embed .document-files__file-download > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.document-embed .document-files__file-icon {
    width: 28px;
    height: 28px;
}

.document-embed .document-files__toggle {
    min-height: 28px;
}

@media (max-width: 800px) {
    .document-embed {
        margin: 24px 0;
    }

    .document-embed .document-files {
        padding: 20px;
    }
}

@media (max-width: 560px) {
    .document-embed {
        margin: 16px 0;
    }

    .document-embed .document-files {
        padding: 16px;
    }

    .document-embed .document-files__file {
        align-items: flex-start;
    }

    .document-embed .document-files__file-details {
        flex-wrap: wrap;
        gap: 8px 12px;
    }
}
