.file-attachment {
    display: inline-flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 16px;
    width: 100%;
    margin: 5px 0;
}
.field-file .field__item:first-child{
    margin-top: 15px;
}
.file-attachment__link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333333;
}

.file-attachment__link:hover {
    color: #000000;
}

.file-attachment__icon {
    display: flex;
    align-items: center;
    color: #666666;
    flex-shrink: 0;
}

.file-attachment__name {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}