.dfl-1349-list {
    display: flex;
    flex-direction: column;
}

.dfl-1349-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 15px;
}

.dfl-1349-title {
    flex: 1 1 0%;
    min-width: 200px;
    word-break: break-word;
}

.dfl-1349-button {
    display: inline-flex;
    align-items: center;
    background-color: #FF5A30;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dfl-1349-button:hover {
    background-color: #e04520;
    color: #ffffff;
}

.dfl-1349-button-icon {
    display: flex;
}

@media (max-width: 767px) {
    .dfl-1349-list-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .dfl-1349-button {
        width: 100%;
        justify-content: center;
    }
}
